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/panyam/mcpkit/example-auditgit clone --depth 1 https://github.com/panyam/mcpkitWhat 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.01023 |
| Opus 5 | $0.00000 | $0.00511 |
| Sonnet 5 | $0.00000 | $0.00205 |
| Haiku 4.5 | $0.00000 | $0.00102 |
Grade A, and why
example-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 — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Audit an mcpkit example for compliance with examples/CONVENTIONS.md. Read-only — reports drift, never edits.
Args
$1— example name (e.g.discord-events) or relative path (e.g.examples/events/discord). If missing, ask.
Steps
-
Read
examples/CONVENTIONS.md. It is the spec; this skill is just the runner. If the doc has changed since this skill was written, follow the doc. -
Resolve the target directory:
- Try
examples/$1, thenexamples/events/$1, then treat$1as a relative path. - Refuse if the directory doesn't exist.
- Try
-
Detect example type — UI vs non-UI:
- UI: contains an
*.htmlfile ANDmain.gocallsserver.WithExtension(&ui.UIExtension{...}). Run the UI checklist (CONVENTIONS.md §8 second block). - Non-UI: everything else. Run the non-UI checklist (CONVENTIONS.md §8 first block).
- If ambiguous (e.g.
*.htmlpresent but no UI extension), report it as a finding and audit as non-UI.
- UI: contains an
-
Walk the checklist. For each item, attempt to verify automatically:
- File presence:
Read/LSthe path. - Code shape:
grepfor the canonical symbol or anti-pattern. - Doc shape: read the file and check section headers.
- Build precondition: run
cd <dir> && go build ./.... If it fails, emitbuild-brokenas the sole finding and skip checks that depend on a working build (especiallywalkthrough-md-fresh). - WALKTHROUGH.md drift: run
cd <dir> && go run . --doc mdand diff against the committed file.
- File presence:
-
Emit findings in the format under "## Output format" below. Use the canonical IDs from CONVENTIONS.md §8 (one per checklist item) so
/example-upgradecan match them deterministically. -
Do not edit any files. Do not run
just readme, do not rungo fmt, do not runjust tidy. The audit's only side effects are read operations + the--doc mdbuild attempt in step 4. -
Final line: print exactly
Audit complete: <N> pass, <M> failso a follow-up/example-upgradeinvocation can detect a recent audit in conversation context.
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 · 77 lines · 0 tokens per session scan A 0c5d460fd6c4
example-audit is a command published in the GitHub repository panyam/mcpkit (5 stars, last pushed 2d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,023 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
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.