Install
$ agentstack add skill-rationaleyes-claude-skills-security-guide-security-monitor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Security Monitor Skill
This skill scans all installed Claude Skills for indicators of compromise and injection attack patterns. It provides automated static analysis to detect malicious patterns before untrusted skills are executed.
What This Skill Does
When invoked, this skill runs scripts/scan_skills.py against all skill directories discoverable from standard install locations:
~/.claude/skills/(personal skills).claude/skills/(project skills in current working directory)
The scanner checks each SKILL.md and any associated scripts for:
- External URL references — C2 callbacks, data exfiltration endpoints
- Credential access patterns — environment variable reads of sensitive keys
- Persistence indicators — crontab edits, shell RC file writes, skill replication
- Trigger hijacking patterns — overly broad or authority-impersonating descriptions
- Suspicious tool grants — unrestricted Bash in
allowed-toolswithout audit trail - Hidden content — HTML comments, zero-width characters, base64-encoded blobs
Invocation
To run a full security audit of all installed skills:
Please run the security monitor skill to audit my installed skills.
The skill will execute the scanner and return a structured report. Each skill receives a risk rating: LOW, MEDIUM, HIGH, or CRITICAL.
Scanning a Specific Directory
To scan a skill pack or directory before installing:
Please scan the skills in ./downloaded-skills/ for security issues.
Interpreting Results
- LOW: No significant indicators found. Normal use.
- MEDIUM: Patterns present that warrant review (e.g., external URLs in a skill
that shouldn't need network access).
- HIGH: Multiple indicators or a single high-confidence indicator. Do not execute
until manually reviewed.
- CRITICAL: Strong evidence of malicious intent (credential exfiltration,
persistence, C2 patterns). Quarantine immediately.
Important Notes
- This skill itself requires Bash access to run the Python scanner.
- The scanner is read-only and does not modify any skill files.
- False positives are possible — a legitimate skill may reference URLs for
documentation purposes. Use the report as a starting point for human review, not as a definitive verdict.
- This skill does NOT prevent execution of other skills — it only reports findings.
Enforcement requires a human decision to remove or quarantine flagged skills.
Running the Scanner Manually
python3 ~/.claude/skills/security-monitor/scripts/scan_skills.py \
--paths ~/.claude/skills .claude/skills \
--report-format text
Part of the Claude Skills Defense Suite.
Execution
Run the security scanner now against all discoverable skill locations:
python3 "$(dirname "$0")/scripts/scan_skills.py" \
--paths ~/.claude/skills ./.claude/skills \
--report-format text
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: RationalEyes
- Source: RationalEyes/claude-skills-security-guide
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.