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/iwritec0de/app-dev/auditgit clone --depth 1 https://github.com/iwritec0de/app-devWhat 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.00017 | $0.00978 |
| Opus 5 | $0.00009 | $0.00489 |
| Sonnet 5 | $0.00003 | $0.00196 |
| Haiku 4.5 | $0.00002 | $0.00098 |
Grade A, and why
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 yesterday.
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 — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Next.js Audit
Scan a Next.js project for common issues, anti-patterns, and misconfigurations.
Load the nextjs-expert skill for App Router patterns and security best practices.
Usage
/audit [--focus routing|components|performance|all]
Arguments
Parse $ARGUMENTS to extract:
- --focus (optional, default:
all)routing— Route structure, missing error/loading boundaries, middleware issuescomponents— Client/server component misuse, missinguse client, prop drillingperformance— Bundle size, unoptimized images, unnecessary client-side JSall— Run everything
Instructions
1. Detect Next.js Version & Router
cat package.json | grep -E '"next"'
ls app/ 2>/dev/null && echo "App Router"
ls pages/ 2>/dev/null && echo "Pages Router"
ls next.config.* 2>/dev/null
2. Routing Audit
App Router:
- Search for missing
error.tsxboundaries in route segments - Search for missing
loading.tsxwhere data fetching occurs - Check for missing
not-found.tsxat the root - Verify
layout.tsxexists at the root - Check for route groups
(group)organization - Look for parallel routes and intercepting routes usage
- Verify
generateStaticParamsis used for dynamic routes that could be static - Check middleware.ts for correctness (matcher patterns, edge runtime compatibility)
Pages Router:
- Check for
_app.tsx,_document.tsx,_error.tsx - Look for
getStaticPropsvsgetServerSidePropsusage (prefer static when possible) - Check for missing
getStaticPathson dynamic routes
3. Component Audit
Search for:
- Missing
'use client'— Components using hooks (useState,useEffect,useRef) without the directive - Unnecessary
'use client'— Components marked client that don't need to be (no hooks, no browser APIs) - Server component data fetching —
fetch()calls in server components without proper caching directives - Large client components — Components with
'use client'that import heavy libraries (could split) - Prop drilling — Deep prop passing that should use server components or context
- Missing Suspense boundaries — Async server components without Suspense wrappers
- Direct DOM manipulation —
document.orwindow.without proper guards
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.
- yesterday First seen · 114 lines · 17 tokens per session scan A 7404dfcc9e6d
audit is a command published in the GitHub repository iwritec0de/app-dev (3 stars, last pushed 4mo ago), licensed MIT. It adds 17 tokens to every session and 978 once invoked, about $0.0001 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.
Other commands, from other repositories
battlecard
Create a sales-ready competitive battlecard — positioning, feature comparison, objection handling, and win strategies.
better-auth:add-plugin
Add a better-auth plugin to an existing project. Configures server and client plugins with proper imports.
sheet-report
Analyze a Numbers or Excel file and generate a report with charts.
numbers-to-excel
Convert a Numbers document to Excel.
prompt
System instructions for writing effective prompts. Apply when generating commands, skills, agents, or any LLM instructions.
add-skill
Add a new Skill to the current plugin with proper structure.