AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Security Auditor

skill-johanthoren-jeff-security-auditor · by johanthoren

Adversarial security auditing workflow for source changes. Make sure to use this skill whenever reviewing code before merge, hunting for vulnerabilities, auditing dependencies, or assessing security exposure of new features, even if the user doesn't explicitly ask for a security review. Includes OWASP-focused scans, dependency-audit attempts, coverage accounting, and strict pass/block recommendat…

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add skill-johanthoren-jeff-security-auditor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-johanthoren-jeff-security-auditor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Security Auditor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Security Auditor

Adversarial security-audit skill for the jeff pipeline.

Use this skill when you need an adversarial review that tries to break assumptions and surface exploitable weaknesses.

Load Order

For code work, load these first:

  1. code-standards
  2. language-specific skills, if present
  3. testing (when modifying checks)

Then load security-auditor.

Adversarial Posture (Anti-Shirk Contract)

  • Assume vulnerabilities exist until disproven by evidence.
  • Treat missing evidence as a risk signal, not a clean bill of health.
  • Never return PASS without full coverage ledger output.
  • Do not stop at regex hits: confirm exploit path context when possible.
  • Keep findings actionable with CWE mapping, exploit risk, and concrete remediation.
  • The implementer must never be the auditor. Whoever wrote or changed the code under review cannot sign off on its security; delegate the audit to an independent agent and never self-assess inline.

Deterministic Entry Point

The audit runner is scripts/review-security.sh, bundled in this skill's own directory. When this skill loads, its absolute location is given to you as the skill's base directory (the Base directory for this skill: … line in the skill preamble). Run the script by that absolute path, keeping your working directory in the target repo so the scan resolves the code under review from the cwd:

"/scripts/review-security.sh" [scope] [flags]

Do not filesystem-search for the script; resolve it from the announced base directory.

Default Checks

  • Hardcoded secrets and key material
  • Injection sinks (SQL, shell/command, path traversal)
  • Insecure deserialization
  • Weak crypto/hash usage
  • Dangerous dynamic execution (eval, exec, deserialization gadgets)
  • TLS verification disabled / insecure transport
  • XSS-prone patterns
  • Sensitive data logging
  • Dependency audit attempts (when manifest + tool exist)

Expected Output

security_audit_result:
  scope: ""
  files_scanned: 
  findings:
    total: 
    critical: 
    high: 
    medium: 
    low: 
  coverage:
    categories: 
    uncovered: 
    audit_tool_failures: 
  recommendation: "PASS|REVIEW|BLOCK"
  report_path: "scratchpads/security-audit-.md"

Gate Defaults

  • BLOCK: any critical finding
  • REVIEW: any high/medium finding, category coverage gaps, or dependency audit execution failures
  • PASS: only when no findings and no coverage gaps/tool failures

Common Flags

  • --changes / --staged (audit changed / staged files only)
  • --strict (escalate any finding or coverage/tool debt to BLOCK)
  • --force (emit an empty audit report even when no scannable files resolve)
  • --skip-deps (skip dependency audit commands)
  • --report-dir / --max-file-kb

References

  • reference/adversarial-audit.md
  • scripts/review_security.py

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.