Install
$ agentstack add skill-ray0907-security-scan-security-scan ✓ 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 Scan
Produce an evidence-backed security assessment without changing application code or dependencies.
Boundaries
- Treat scanning as read-only. Do not install tools, update advisory databases, build images,
run project scripts, or modify global client settings without explicit approval.
- Never report a clean scan when a tool failed, was missing, or could not cover the target.
- Never copy secret values into chat or reports. Follow
[the reporting and redaction contract](references/REPORTING.md).
- Scan every detected project in a monorepo, not only the repository root.
Interpret the Request
Default to dependency and code scanning. Apply these modes before running tools:
--deps-only: skip Semgrep.--code-only: skip dependency scanners.--owasp A01throughA10: retain only findings mapped to that 2025 category.--severity critical,high: filter after normalizing scanner output.--export-bypass: read the reporting reference and export reviewed false positives only.--auto-remind: explain that reminders are client-specific. Do not claim they are enabled or
write client configuration until the user chooses a supported hook or automation.
Reject incompatible --deps-only and --code-only requests instead of guessing.
Workflow
- Record the repository path, Git commit, requested modes, scope, and exclusions.
- Read [the scanner contract](references/SCANNERS.md). Build the dependency plan with:
``bash python3 /scripts/scan_plan.py --pretty ``
- For every
readyproject, run exactly its planned command from that project's directory.
Never chain package managers with ||. Capture stdout, stderr, exit code, and tool version separately; a non-zero exit may mean findings rather than execution failure.
- Mark
needs-lockfile,needs-export, and missing-tool entries asinconclusiveorskipped.
Offer installation or preparation instructions, but do not perform them without approval.
- Unless code scanning was disabled, run:
``bash semgrep scan --config p/owasp-top-ten --json --metrics=off ``
Parse the JSON even when the command exits non-zero. Treat Semgrep as pattern coverage, not proof that all OWASP risks were tested.
- Read [the OWASP 2025 mapping](references/OWASP.md). Do not trust legacy 2017 or 2021 labels
without translating them. Dependency findings map primarily to A03:2025.
- Enrich actual CVE identifiers only when useful. Batch up to 100 IDs with the NVD
cveIds
parameter, honor rate limits, and preserve the scanner result if enrichment fails. Do not invent CVEs for GHSA, RUSTSEC, PYSEC, or other advisory identifiers.
- Generate the result using [the reporting contract](references/REPORTING.md). Unless the user
requested files, summarize in chat. Never overwrite an existing report without confirmation.
Completion Gate
Report every scanner as clean, findings, failed, skipped, or inconclusive. Include tool versions and uncovered scope. A scan is complete only when all planned scanners have a recorded state and every displayed snippet has passed redaction.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Ray0907
- Source: Ray0907/security-scan
- 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.