扫描报告
5 /100
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Logs to markdown files and promotes valuable learnings to project memory.
A legitimate self-improvement logging skill with benign shell scripts for reminders and error detection. No malicious behavior, credential access, network calls, or data exfiltration observed.
可以安装
No action needed. The skill is safe to use. Consider documenting permission requirements in SKILL.md for completeness.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | Missing permission declarations 文档欺骗 | SKILL.md:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | READ | ✓ 一致 | Scripts read CLAUDE_TOOL_OUTPUT env var only |
| 命令执行 | NONE | READ | ✓ 一致 | Scripts use pattern matching, no dangerous commands |
| 网络访问 | NONE | NONE | — | No network calls in any scripts |
| 环境变量 | NONE | READ | ✓ 一致 | error-detector.sh reads CLAUDE_TOOL_OUTPUT for error detection |
| 凭证访问 | NONE | NONE | — | No credential harvesting |
1 项发现
中危 外部 URL 外部 URL
https://agentskills.io/specification SKILL.md:557 目录结构
16 文件 · 53.5 KB · 2171 行 Markdown 10f · 1752L
Shell 3f · 296L
TypeScript 1f · 62L
JavaScript 1f · 56L
JSON 1f · 5L
├─
▾
.learnings
│ ├─
ERRORS.md
Markdown
│ ├─
FEATURE_REQUESTS.md
Markdown
│ └─
LEARNINGS.md
Markdown
├─
▾
assets
│ ├─
LEARNINGS.md
Markdown
│ └─
SKILL-TEMPLATE.md
Markdown
├─
▾
hooks
│ └─
▾
openclaw
│ ├─
handler.js
JavaScript
│ ├─
handler.ts
TypeScript
│ └─
HOOK.md
Markdown
├─
▾
references
│ ├─
examples.md
Markdown
│ ├─
hooks-setup.md
Markdown
│ └─
openclaw-integration.md
Markdown
├─
▾
scripts
│ ├─
activator.sh
Shell
│ ├─
error-detector.sh
Shell
│ └─
extract-skill.sh
Shell
├─
_meta.json
JSON
└─
SKILL.md
Markdown
安全亮点
✓ No network requests or external communications
✓ No credential harvesting or environment variable enumeration
✓ No file writes to sensitive paths (~/.ssh, ~/.aws, etc.)
✓ extract-skill.sh has path validation (no absolute paths, no '..' traversal)
✓ Shell scripts are simple and readable with no obfuscation
✓ No base64 encoding or shell evasion techniques
✓ Hook handlers have proper event structure validation
✓ error-detector.sh only reads tool output, doesn't exfiltrate it
✓ GitHub URLs in SKILL.md are well-known legitimate repositories