Scan Report
5 /100
cligen
CLI tool scaffolding generator for Bash/Python
Legitimate CLI tool scaffolding generator with no malicious indicators. Code generation is correctly scoped and documented.
Safe to install
This skill is safe to use. No security concerns identified.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | No dependency version pinning Supply Chain | package.json:1 |
| Info | File structure mismatch Doc Mismatch | SKILL.md:46 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | WRITE | WRITE | ✓ Aligned | SKILL.md declares file generation; code creates tool skeletons in specified outp… |
| Shell | READ | READ | ✓ Aligned | Uses command -v for dependency checks, mkdir/cp/chmod for file operations |
| Network | NONE | NONE | — | No network requests observed |
| Environment | NONE | NONE | — | No environment variable access beyond CONFIG_FILE |
| Skill Invoke | NONE | NONE | — | No skill invocation patterns found |
| Clipboard | NONE | NONE | — | No clipboard access |
| Browser | NONE | NONE | — | No browser access |
| Database | NONE | NONE | — | No database access |
1 findings
Medium External URL 外部 URL
https://clawhub.com README.md:135 File Tree
7 files · 36.8 KB · 1345 lines Shell 4f · 1083L
Markdown 2f · 250L
JSON 1f · 12L
├─
▾
src
│ ├─
generator.sh
Shell
│ ├─
preflight.sh
Shell
│ └─
validator.sh
Shell
├─
▾
tests
│ └─
test_all.sh
Shell
├─
package.json
JSON
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 4 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
bash | >=4.0 | system | No | Declared in preflight.sh checks |
git | any | system | No | Optional, used for doctor command |
sed | any | system | No | Used for template variable substitution |
awk | any | system | No | Optional utility |
Security Positives
✓ Uses set -euo pipefail for bash safety in all scripts
✓ All functionality is documented in SKILL.md
✓ No credential harvesting or environment variable enumeration
✓ No network requests or data exfiltration
✓ No obfuscation (base64, eval) or suspicious encoding
✓ No sensitive path access (~/.ssh, ~/.aws, .env)
✓ Generated tools use proper error handling and argument parsing
✓ MIT License with clear copyright attribution
✓ Test suite covers core functionality