Scan Report
12 /100
skill-safety-auditor
Perform comprehensive security audits on skills to identify vulnerabilities, unsafe patterns, and compliance issues
This is a legitimate security audit tool that performs static analysis via grep-based pattern matching with no malicious functionality found. The two 'critical' findings in the included audit report are false positives where the tool detects its own defensive regex patterns as hardcoded secrets.
Safe to install
No action needed. The skill performs documented static security analysis on target skills using pattern matching. The flagged 'secrets' are the tool's own detection patterns (e.g., "password.*=.*'") which are false positives - a known limitation of signature-based scanners. Consider improving the self-skip logic to prevent false positives when auditing the tool itself.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Info | False positive secrets detection Doc Mismatch | scripts/audit-skill.sh:137 |
| Info | quick-scan.sh lacks self-skip check Doc Mismatch | scripts/quick-scan.sh:36 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Filesystem | READ | READ | ✓ Aligned | Reads target skill files for scanning (grep -rn) |
File Tree
7 files · 21.2 KB · 775 lines Shell 4f · 476L
Markdown 2f · 280L
JSON 1f · 19L
├─
▾
data
│ └─
AUDIT-20260313-001.json
JSON
├─
▾
scripts
│ ├─
audit-skill.sh
Shell
│ ├─
list-audits.sh
Shell
│ ├─
quick-scan.sh
Shell
│ └─
test.sh
Shell
├─
README.md
Markdown
└─
SKILL.md
Markdown
Security Positives
✓ No credential harvesting or exfiltration detected
✓ No reverse shells, C2, or data theft mechanisms
✓ No base64-encoded payloads or obfuscation
✓ No malicious network connections
✓ No supply chain attacks or unpinned dependencies
✓ Documentation accurately describes tool capabilities
✓ Capability declarations match actual behavior
✓ Appropriate use of shell:WRITE for security scanning (documented and necessary)