security-audit

security-audit is a skill for Claude Code from ArtemioPadilla/agent-triforce. It costs 41 tokens per session (857 once invoked), scanned A, original, MIT.

A detailed review of application code, third-party libraries, and infrastructure for common security weaknesses.

In plain words
What is it for?
Use it before a release or after major changes to review the OWASP Top 10 risks, authentication, authorisation, data protection, secrets, dependencies, logs, and server-side request forgery.
Why use it?
It checks whether attackers could bypass access controls, inject commands or data, expose secrets, misuse settings, or exploit known dependency flaws.

Skill for Claude Code

Written for Claude Code: context: fork in frontmatter. Also seen: agent in frontmatter.

Good fit Use it before a release or after major changes to review the OWASP Top 10 risks, authentication, authorisation, data protection, secrets, dependencies, logs, and server-side request forgery.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/artemiopadilla/agent-triforce/security-audit
Install

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.

Any agent
npx skills add ArtemioPadilla/agent-triforce --skill security-audit
Clone the repo
git clone --depth 1 https://github.com/ArtemioPadilla/agent-triforce

Made for: Claude Code.

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

agentmods badge for security-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/artemiopadilla/agent-triforce/security-audit/github.svg)](https://agentmods.dev/skills/artemiopadilla/agent-triforce/security-audit)
Your own site
<a href="https://agentmods.dev/skills/artemiopadilla/agent-triforce/security-audit"><img src="https://agentmods.dev/badge/skills/artemiopadilla/agent-triforce/security-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for security-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/artemiopadilla/agent-triforce/security-audit"><img src="https://agentmods.dev/badge/skills/artemiopadilla/agent-triforce/security-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 857 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.00857
Opus 5 $0.00020 $0.00428
Sonnet 5 $0.00008 $0.00171
Haiku 4.5 $0.00004 $0.00086

Measured 11d ago against content hash a3fe5116f132, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

security-audit scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/security-audit/SKILL.md · 65 lines

What it actually says

Perform a security audit on: $ARGUMENTS

If no specific scope is provided, audit the entire src/ directory.

Follow these steps:

SIGN IN:

  • Run the SIGN IN checklist from your agent file
  • Note areas of concern based on the scope and past findings

AUDIT:

  1. OWASP Top 10 systematic check:
    • A01: Broken Access Control — check auth/authz on all endpoints
    • A02: Cryptographic Failures — check encryption, key management, hashing
    • A03: Injection — SQL, NoSQL, OS command, LDAP injection vectors
    • A04: Insecure Design — business logic flaws, missing rate limits
    • A05: Security Misconfiguration — default configs, verbose errors, CORS
    • A06: Vulnerable Components — npm audit / pip audit
    • A07: Auth Failures — weak passwords, missing MFA, session management
    • A08: Data Integrity — deserialization, unsigned updates
    • A09: Logging Failures — sensitive data in logs, missing audit trail
    • A10: SSRF — server-side request forgery vectors
  2. Secrets scan: grep for API keys, tokens, passwords, connection strings
  3. Dependency audit: check all deps for known CVEs
  4. Smart contracts (if Solidity): reentrancy, integer overflow, access control, front-running
  5. Architecture review: Check dependency direction (business logic must not depend on frameworks), verify layer separation (no auth bypass through adapter shortcuts, no direct DB access from use cases)
  6. Test strategy review: Verify security-critical paths have tests, authentication/authorization flows are integration-tested, input validation has unit tests

License Compliance Scan

Scan all project dependencies for license compatibility with the project license (MIT):

  1. Detect dependency manifest: requirements.txt, pyproject.toml (Python) or package.json (Node)
  2. Check each dependency's license using pip-licenses --format=markdown (Python) or npx license-checker --json (Node). If tools unavailable, inspect manifests manually
  3. Classify by compatibility:
    • Pass (permissive): MIT, BSD-2-Clause, BSD-3-Clause, Apache-2.0, ISC, Unlicense, CC0-1.0, 0BSD
    • Warning (weak copyleft): LGPL-2.1, LGPL-3.0, MPL-2.0, EPL-1.0, EPL-2.0 -- flag with explanation of linking implications
    • Critical (strong copyleft): GPL-2.0, GPL-3.0, AGPL-3.0 -- incompatible with MIT distribution
    • Critical (no license): Dependency has no detectable license -- cannot legally redistribute
  4. Output: License compatibility table in the security audit report with columns: Dependency, Version, License, Compatibility (Pass/Warning/Critical)

References: Skaife (2021), EPAM SolutionsHub (2023), Leroux (2025)

If any Critical finding: invoke the NON-NORMAL: Critical Vulnerability Response checklist from your agent file.

⏸️ TIME OUT — Run Verification Checklists (DO-CONFIRM): 7. Run through the Security Verification checklist from your agent file 8. Run through the Quality Verification checklist from your agent file 9. Issue verdict based on findings

SIGN OUT: 10. Write report to docs/reviews/security-audit-{date}.md 11. Write the Findings Handoff-to-Forja using the communication checklist 12. Run the SIGN OUT checklist from your agent file

Changes

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.

  1. 11d ago First seen · 65 lines · 41 tokens per session scan A a3fe5116f132

Subscribe to this mod's changes

security-audit is a skill published in the GitHub repository ArtemioPadilla/agent-triforce (3 stars, last pushed 4mo ago), licensed MIT. It adds 41 tokens to every session and 857 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

fellowship

Multi-task orchestrator. Coordinates agent teammates (led by Gandalf) running /quest (code) or /scout (research) workflows. Use when you have multiple independent tasks to run in parallel.

justinjdev/fellowship · 45 tokens

quest

Use for multi-file or multi-step changes that need research and a plan — not single-file fixes under 50 lines that follow an existing pattern (see Escape Hatch below). Runs the Research → Plan → Implement → Review lifecycle with a hard gate leaving each of the first three phases and context compaction between them.

justinjdev/fellowship · 64 tokens

retro

Invoke after a fellowship disbands, or when the user explicitly asks for a retrospective. Collects gate history, palantir alerts, and quest metrics to surface patterns and interactively recommend configuration improvements.

justinjdev/fellowship · 42 tokens

council

Invoke when the user runs /council or from /scout. Quest inlines this orientation as its Research step 2 and does not call it. Loads focused, task-relevant context by reading CLAUDE.md, scanning for related files, and producing a structured Session Context block.

justinjdev/fellowship · 63 tokens

lembas

Use between workflow phases or when context feels bloated. Writes a structured checkpoint capturing task, findings, files, state, and next steps, then continues from that summary instead of the full history. Invoke standalone or automatically between quest phases.

justinjdev/fellowship · 51 tokens

missive

Invoke only when spawning a quest from a GitHub issue reference. Fetches GitHub issue context for quest spawning. Parses issue references, retrieves structured data via gh, and produces branch suggestions and PR keywords. Used standalone or as input to quest orchestration.

justinjdev/fellowship · 54 tokens