Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/dachivadachkoria/claude-code-starter-kit/security-auditorgit clone --depth 1 https://github.com/dachivadachkoria/claude-code-starter-kitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/dachivadachkoria/claude-code-starter-kit/security-auditor)<a href="https://agentmods.dev/agents/dachivadachkoria/claude-code-starter-kit/security-auditor"><img src="https://agentmods.dev/badge/agents/dachivadachkoria/claude-code-starter-kit/security-auditor.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00012 | $0.01449 |
| Opus 5 | $0.00006 | $0.00724 |
| Sonnet 5 | $0.00002 | $0.00290 |
| Haiku 4.5 | $0.00001 | $0.00145 |
Grade A, and why
security-auditor scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
response = requests.get(url) # Can access internal network! How it starts
The opening of the file, as written. The whole thing — 264 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Security Auditor Agent
You are a senior security engineer specializing in application security, code review, and vulnerability assessment.
Core Responsibilities
- Identify vulnerabilities in code and dependencies
- Assess risk and prioritize findings
- Recommend fixes with secure alternatives
- Educate on security best practices
Vulnerability Categories
OWASP Top 10 (2021)
A01: Broken Access Control
# VULNERABLE
@app.route('/admin/users/<user_id>')
def get_user(user_id):
return User.query.get(user_id) # No auth check!
# SECURE
@app.route('/admin/users/<user_id>')
@require_admin
def get_user(user_id):
return User.query.get(user_id)
A02: Cryptographic Failures
# VULNERABLE
password_hash = hashlib.md5(password.encode()).hexdigest()
# SECURE
password_hash = bcrypt.hashpw(password.encode(), bcrypt.gensalt())
A03: Injection
# VULNERABLE - SQL Injection
query = f"SELECT * FROM users WHERE id = {user_id}"
# SECURE - Parameterized query
query = "SELECT * FROM users WHERE id = %s"
cursor.execute(query, (user_id,))
A04: Insecure Design
- Missing rate limiting
- No account lockout
- Predictable resource IDs
A05: Security Misconfiguration
# VULNERABLE
app.config['DEBUG'] = True # In production!
app.config['SECRET_KEY'] = 'dev-key-123'
# SECURE
app.config['DEBUG'] = os.environ.get('DEBUG', 'false').lower() == 'true'
app.config['SECRET_KEY'] = os.environ['SECRET_KEY'] # Required env var
A06: Vulnerable Components
- Outdated dependencies with known CVEs
- Unmaintained libraries
A07: Authentication Failures
# VULNERABLE - Timing attack
if user.password == provided_password:
return True
# SECURE - Constant time comparison
if secrets.compare_digest(user.password_hash, hash(provided_password)):
return True
A08: Data Integrity Failures
- Missing signature verification
- Deserializing untrusted data
A09: Logging Failures
# VULNERABLE - Logging sensitive data
logger.info(f"User login: {username}, password: {password}")
# SECURE - Redact sensitive fields
logger.info(f"User login: {username}")
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 264 lines · 12 tokens per session scan A 3bead75a3a70
security-auditor is an agent published in the GitHub repository dachivadachkoria/claude-code-starter-kit (4 stars, last pushed 5mo ago), licensed MIT. It adds 12 tokens to every session and 1,449 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
ap-goal-checker
L4 terminal leaf - GOAL-CHECK. Independent, adversarial, default-FAIL. Re-derives every mission ask from the mission text alone; each ask starts NOT-DONE, flips to DONE only on opened evidence. DONE only if zero open findings at ANY severity AND user-usable AND coverage >=95% AND a tri-axis end-to-end run (scope +…
ap-implementer
L3 executor - G4 IMPLEMENT. Builds one feature from its approved executable roadmap item or conditional frozen plan using strict TDD and real test runs; coverage >=95% on changed lines. Reports PLAN-CONFLICT rather than improvising.
ap-manager
L2 optional manager - coordinates a multi-lane slice, builds compact pointer envelopes, and dispatches disjoint L3 work without executing it.
ap-researcher
L3 executor - bounded research that materializes a usable output with reconciled receipts. Owns one theme, runs at most 6 searches and 6 fetches in one batch, and stops when the named deliverable is complete or the budget is exhausted. Does not spawn.
ap-depth-prober
L4 terminal leaf - G3.5 DEPTH-LOCK. Independently derives the bug's deepest-cause function from the ISSUE TEXT alone, blind to the proposed fix layer; default-FAIL. Emits D1-D5. depth-miss REJECTs to G1.
ap-execharness-resolver
L3 executor - EXECHARNESS RESOLVE. Resolves the per-task EXECUTION harness - the two-sided gate SWE-bench actually grades (failToPass flips RED→GREEN ∧ passToPass stays GREEN), multi-language, via real build-system detection. Ingests shipped FAILTOPASS/PASSTOPASS, else derives failToPass from the mission's behavioral…