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 instructions/christianb93/wikispec/claude-mdgit clone --depth 1 https://github.com/christianb93/WikiSpecWrote 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/instructions/christianb93/wikispec/claude-md)<a href="https://agentmods.dev/instructions/christianb93/wikispec/claude-md"><img src="https://agentmods.dev/badge/instructions/christianb93/wikispec/claude-md.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.00431 | $0.00431 |
| Opus 5 | $0.00216 | $0.00216 |
| Sonnet 5 | $0.00086 | $0.00086 |
| Haiku 4.5 | $0.00043 | $0.00043 |
Grade A, and why
WikiSpec CLAUDE.md 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 5d 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.
What it actually says
WikiSpec — Project Guide
Tech stack
Javascript and Node.js, using npm as package manager. For unit tests, we use Node's built in test runner, for the CLI implementation we use commander. Use JsDoc 3 comments on JS functions and types.
Project Structure
wikispec/ ← repo root, also npm package root
├── package.json ← name: "wikispec", bin: wikispec → bin/wikispec
├── .npmignore ← excludes dev tooling from published package
│
├── bin/
│ └── wikispec ← executable stub (#!/usr/bin/env node)
│
├── src/ ← CLI source
│ ├── main.js ← entry point (required by bin/wikispec)
│ ├── commands/ ← one file per subcommand (thin arg-parsing layer)
│ └── core/ ← business logic (artifact mgmt, stage transitions)
│
├── assets/ ← product: YAML/JSON and other data files
│
├── skills/ ← product: canonical skill definitions
│ └── <name>/
│ ├── skill.md ← agent-neutral definition
│ └── claude.md ← optional Claude-specific adapter
│
├── agents/ ← product: custom agent definitions
│ └── <name>/
│ └── agent.md
│
├── docs/ ← product: human-facing documentation
│
├── openspec/ ← dev tooling: spec artifacts (npmignored)
├── .claude/ ← dev tooling: Claude Code integration (npmignored)
├── .gemini/ ← dev tooling: Gemini integration (npmignored)
└── .github/ ← dev tooling: Copilot integration (npmignored)
Build & Install
npm install
npm link
After npm link, the wikispec command is available globally on your local machine.
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.
- 5d ago First seen · 49 lines · 431 tokens per session scan A 506ee0094540
WikiSpec CLAUDE.md is an instructions file published in the GitHub repository christianb93/WikiSpec (4 stars, last pushed 3mo ago), licensed MIT. It adds 431 tokens to every session, about $0.0022 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 instructions, from other repositories
Claude-Code-Agent-Monitor CLAUDE.md
Claude Code instructions for hoangsonww/Claude-Code-Agent-Monitor, covering claude code working guide, project mission, repo map, non-negotiable engineering rules and commands you should know.
Claude-Code-Agent-Monitor AGENTS.md
AGENTS.md instructions for hoangsonww/Claude-Code-Agent-Monitor, covering codex project instructions, project intent, priorities, where to work and validation expectations.
AI-Rig CLAUDE.md
Claude Code instructions for Borda/AI-Rig, covering instruction layering, edit scope — hard constraint, lint/format — use pre-commit hooks, not direct tools, test workflow and python documentation style.
ADD AGENTS.md
AGENTS.md instructions for pilotspace/ADD: ADD (AI-Driven Development) — you, the AI, drive the build; the human owns direction and verification. Works for any agent (Claude · Cursor · Copilot · Codex) through the CLI alone. Before you touch code, orient.
claude CLAUDE.md
Claude Code instructions for Caseous-kerrcell366/claude, covering @aiai-go/claude — project handbook, project identity, brand rules, tech stack and architecture.
.agents AGENTS.md
AGENTS.md instructions for Weaverse/.agents, covering agent guidelines for .agents, repository structure, build, lint & test commands, validation commands and validate json configuration.