扫描报告
5 /100
wangwei-echo
echo ni shuo de hua
This skill is a trivial echo utility that only prints 'abc' to stdout — no network, filesystem write, credential access, or any hidden behavior detected.
可以安装
Approve for publication. The SKILL.md reference to 'Cron Backup' is misleading but benign since no cron/backup logic exists in scripts.
安全发现 1 项
| 严重性 | 安全发现 | 位置 |
|---|---|---|
| 低危 | SKILL.md title does not match implementation 文档欺骗 | SKILL.md:1 |
| 资源类型 | 声明权限 | 推断权限 | 状态 | 证据 |
|---|---|---|---|---|
| 文件系统 | NONE | NONE | — | Scripts perform no file read/write operations |
| 网络访问 | NONE | NONE | — | No curl, wget, or outbound network calls in any script |
| 命令执行 | NONE | NONE | — | Scripts use only builtin echo; no subprocess, no arbitrary command execution |
| 环境变量 | NONE | NONE | — | No environment variable access in scripts |
| 技能调用 | NONE | NONE | — | No nested skill invocation |
| 剪贴板 | NONE | NONE | — | No clipboard access |
| 浏览器 | NONE | NONE | — | No browser automation |
| 数据库 | NONE | NONE | — | No database operations |
目录结构
5 文件 · 1.7 KB · 146 行 Shell 3f · 111L
Markdown 1f · 29L
JSON 1f · 6L
├─
▾
scripts
│ ├─
echo.sh
Shell
│ ├─
echo1.sh
Shell
│ └─
echo2.sh
Shell
├─
_meta.json
JSON
└─
SKILL.md
Markdown
安全亮点
✓ No network connectivity — scripts make zero outbound connections
✓ No credential or sensitive file access (no ~/.ssh, ~/.aws, .env reads)
✓ No code obfuscation — all content is plain text
✓ No base64, eval, or shell trickery
✓ No dependency files (requirements.txt, package.json) — no supply chain risk
✓ Scripts are trivially auditable: only builtin echo command used
✓ set -e is present, providing basic error handling