扫描报告
5 /100
skill-creator
Create new skills, modify and improve existing skills, and measure skill performance
The skill-creator is a legitimate meta-skill for creating and improving AI agent skills. All functionality (subprocess usage, file operations, subagent spawning) is properly documented and aligned with the skill's purpose.
可以安装
No action required. This is a safe, well-documented skill for skill development.
安全发现 2 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 提示 | Unversioned Python dependencies 供应链 | scripts/quick_validate.py:3 |
| 提示 | Broad documentation scope 文档欺骗 | SKILL.md:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | READ | READ | ✓ 一致 | SKILL.md declares file reading; scripts read/write workspace directories |
| 命令执行 | WRITE | WRITE | ✓ 一致 | subprocess used for claude -p CLI invocations, documented as required tool |
| 网络访问 | NONE | READ | ✓ 一致 | viewer.html fetches cdn.sheetjs.com for Excel rendering (legitimate library) |
| 技能调用 | WRITE | WRITE | ✓ 一致 | Spawns subagents for eval runs, documented in SKILL.md |
3 项发现
中危 外部 URL 外部 URL
http://www.apache.org/licenses/ LICENSE.txt:4 中危 外部 URL 外部 URL
http://www.apache.org/licenses/LICENSE-2.0 LICENSE.txt:196 中危 外部 URL 外部 URL
https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js eval-viewer/viewer.html:10 目录结构
24 文件 · 263.0 KB · 6954 行 Python 11f · 2926L
Markdown 9f · 2300L
HTML 2f · 1471L
Text 1f · 201L
JSON 1f · 56L
├─
▾
.codebuddy
│ └─
▾
memory
│ └─
2026-03-18.md
Markdown
├─
▾
agents
│ ├─
analyzer.md
Markdown
│ ├─
comparator.md
Markdown
│ └─
grader.md
Markdown
├─
▾
assets
│ └─
eval_review.html
HTML
├─
▾
daily-menu
│ ├─
▾
evals
│ │ └─
evals.json
JSON
│ ├─
▾
references
│ │ ├─
ingredients.md
Markdown
│ │ └─
recipes.md
Markdown
│ ├─
▾
scripts
│ │ └─
generate_menu.py
Python
│ └─
SKILL.md
Markdown
├─
▾
eval-viewer
│ ├─
generate_review.py
Python
│ └─
viewer.html
HTML
├─
▾
references
│ └─
schemas.md
Markdown
├─
▾
scripts
│ ├─
__init__.py
Python
│ ├─
aggregate_benchmark.py
Python
│ ├─
generate_report.py
Python
│ ├─
improve_description.py
Python
│ ├─
package_skill.py
Python
│ ├─
quick_validate.py
Python
│ ├─
run_eval.py
Python
│ ├─
run_loop.py
Python
│ └─
utils.py
Python
├─
LICENSE.txt
Text
└─
SKILL.md
Markdown
依赖分析 2 项
| 包名 | 版本 | 来源 | 已知漏洞 | 备注 |
|---|---|---|---|---|
yaml | unspecified | pip | 否 | Used for YAML frontmatter parsing in quick_validate.py; no vulnerable code paths |
sheetjs | 0.20.3 | CDN | 否 | Legitimate Excel/CSV library loaded from cdn.sheetjs.com |
安全亮点
✓ No credential harvesting or sensitive file access (no ~/.ssh, ~/.aws, .env access)
✓ No data exfiltration - all network activity is localhost for web server
✓ No obfuscation - all code is clear and readable Python
✓ No base64-encoded payloads or eval() patterns
✓ No reverse shell or C2 communication patterns
✓ No curl|bash or wget|sh remote script execution
✓ Temporary command files are properly cleaned up after eval runs
✓ Subprocess usage (claude -p) is documented and necessary for skill functionality
✓ Uses standard library concurrent.futures for parallelization (safe)
✓ External URLs are legitimate: SheetJS for Excel rendering, Apache license