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 commands/hermeticormus/libresecops-claude-code/api-sec-auditgit clone --depth 1 https://github.com/HermeticOrmus/LibreSecOps-Claude-CodeWhat 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.00000 | $0.01070 |
| Opus 5 | $0.00000 | $0.00535 |
| Sonnet 5 | $0.00000 | $0.00214 |
| Haiku 4.5 | $0.00000 | $0.00107 |
Grade A, and why
api-sec-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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/api-sec-audit
Audit API endpoints for security vulnerabilities against the OWASP API Security Top 10.
Trigger
Use this command when you need to assess the security of an API-exposing application. Appropriate for:
- New API development before deployment
- Security review of existing API services
- Evaluating third-party API integrations
- Compliance requirements for API security (PCI-DSS, SOC 2, HIPAA)
Input
Operates on the current project. Optionally accepts:
- API type:
rest,graphql,grpc,websocket(auto-detected if not specified) - Spec file: Path to OpenAPI/Swagger spec, GraphQL schema, or protobuf definitions
- Focus area:
auth,authorization,injection,data-exposure,all(defaults toall)
Process
Phase 1: API Discovery
- Identify the API framework (Express, FastAPI, Django REST Framework, Spring Boot, Rails API, NestJS, Gin, Echo, Fiber)
- Parse route definitions to enumerate all endpoints with their HTTP methods
- If OpenAPI/Swagger spec exists, cross-reference with code to find undocumented endpoints
- For GraphQL, parse the schema (SDL or introspection query) to enumerate all queries, mutations, and subscriptions
- Map middleware chains for each endpoint (authentication, authorization, validation, rate limiting)
Phase 2: OWASP API Security Top 10 Assessment
API1:2023 - Broken Object Level Authorization (BOLA)
- For every endpoint accepting a resource identifier (path param, query param, body field), verify the handler checks that the authenticated user owns or has access to that resource
- Look for patterns where object IDs from the URL are used directly in database queries without ownership filtering
- Check batch endpoints that accept arrays of IDs
API2:2023 - Broken Authentication
- Analyze credential validation logic for timing attacks, enumeration, and brute force susceptibility
- Check token generation for sufficient entropy
- Verify token validation checks signature, expiration, issuer, and audience
- Test password reset and account recovery flows
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.
- 3d ago First seen · 116 lines · 0 tokens per session scan A 335cea1d0ee1
api-sec-audit is a command published in the GitHub repository HermeticOrmus/LibreSecOps-Claude-Code (4 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,070 tokens. 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.
Other commands, from other repositories
token-scan
Meme coin and token security scan — checks for rug pull vectors (hidden mint, honeypot, fee manipulation, LP lock bypass, authority retention, bonding curve exploits, fake renounce, sandwich amplification). Manual 8-class grep audit (with an optional automated scanner if present). Usage: /token-scan [--chain solana].
scope
Mandatory pre-flight scope check — verify an asset is in scope BEFORE any HTTP touch. Deterministic (deny-wins, default-deny) via engine/scope.py against the engagement's scope.md. Blocks out-of-scope testing. Usage: /scope [ ...].
aod.project-plan
Create implementation plan with dual sign-off (PM + Architect) - Streamlined v2.
aod.roadmap
Scaffold a quarterly roadmap document from completed PRDs with PM sign-off.
aod.score
Re-score an existing idea's ICE rating when circumstances change.
aod.blueprint
Unified project setup & story generation — auto-detects new vs existing projects.