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/ninthwave-io/ninthwave/claude-mdgit clone --depth 1 https://github.com/ninthwave-io/ninthwaveWrote 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/ninthwave-io/ninthwave/claude-md)<a href="https://agentmods.dev/instructions/ninthwave-io/ninthwave/claude-md"><img src="https://agentmods.dev/badge/instructions/ninthwave-io/ninthwave/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.01812 | $0.01812 |
| Opus 5 | $0.00906 | $0.00906 |
| Sonnet 5 | $0.00362 | $0.00362 |
| Haiku 4.5 | $0.00181 | $0.00181 |
Grade A, and why
ninthwave 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.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ninthwave
Parallel AI coding orchestration. TypeScript + Bun CLI.
Required reading: ETHOS.md -- core principles and hard boundaries.
Development
task setup # install git hooks (run once after cloning)
bun run test # run the full CI-equivalent suite (unit + system)
bun run test:unit # run unit/contract/scenario/smoke tests only (fast, excludes test/system/)
bun run test:system # run system integration tests only (test/system/, slow)
bun run test:pre-commit # run the hook-equivalent safety gate
bun run core/cli.ts # run CLI directly
No build step -- Bun executes TypeScript directly. Changes take effect immediately.
Architecture
core/cli.ts-- CLI entry point and command dispatchercore/commands/-- one file per command (list, launch, clean, watch, init, etc.)core/commands/orchestrate.ts--nworchestration event loop with TUI mode (interactive) and JSON mode (--jsonfor piping/CI)core/parser.ts-- reads.ninthwave/work/directory and domain normalizationcore/status-render.ts-- shared status table rendering forninthwave status --watchand the daemon TUIskills/-- SKILL.md files for AI tool integration (/decompose, etc.)agents/implementer.md-- implementation agent prompt (copied to all tool directories by init)core/commands/init.ts-- project setup command (seeds config and managed tool copies)
Conventions
- Filesystem boundary: ninthwave operates within the project directory and
~/.ninthwave/only. It does not write to~/.copilot/,~/.claude/,~/.config/, or any other tool-specific user config. If a tool requires external setup, document it -- don't automate it. - Name casing: use
Ninthwavewhen referring to the product in prose. Use lowercase only for commands, package names, repo names, and filesystem paths such asnw,ninthwave status,ninthwave-io/tap/ninthwave, and.ninthwave/. - External project privacy: do not name external projects in durable artifacts such as work items, commit messages, PR titles, PR bodies, friction logs, or decision logs unless the project is public. For private projects, describe them generically.
- Comments and test names describe behavior, not the work that produced them. Default to no comment; only add one when the WHY is non-obvious (a hidden constraint, a workaround for a specific bug, behavior that would surprise a reader). Comments must not reference the current task, work item, round of review, fix, caller, or ticket -- those rot the moment the work item closes and belong in the PR description, commit message, or
.ninthwave/logs instead. Test names (describe,it,testtitles, and test filenames) describe the behavior under test, not the work item that introduced the test. Work item IDs (M-MCX-12,H-MCX-345,round-3,[CHML]-<feature_code>-<seq>) belong in PR title/body, commit subject/body, branch name, and.ninthwave/files -- never in source code, code comments, or test names. - Conventional commits:
feat:,fix:,refactor:,test:,docs:,chore: - Tests live in
test/using bun's native test runner (vitest-compatible API viaimport { describe, it, expect, vi } from "vitest") - Mock isolation:
bun testdoes not isolatevi.mockbetween test files -- mocks leak across files and break unrelated tests. Prefer dependency injection (pass collaborators as function arguments) overvi.mock. Only usevi.mockwhen the mocked module is not imported by any other test file. When in doubt, inject. - Always run
bun run testfor the full suite. If you invoke Bun directly, usebun test test/(scoped totest/) to avoid picking up tests from.ninthwave/.worktrees/during orchestration. - Convention over configuration -- sensible defaults, minimal config files
- VISION.md is forward-looking only. Do not add completion markers (
*(complete)*, strikethrough~~done~~,(Shipped.),Decomposed →) to VISION.md. Completed work belongs in CHANGELOG.md. Vision workers should remove or collapse shipped sections, not annotate them.
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 · 85 lines · 1,812 tokens per session scan A 78f5db1efd33
ninthwave CLAUDE.md is an instructions file published in the GitHub repository ninthwave-io/ninthwave (8 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 1,812 tokens to every session, about $0.0091 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
agent-of-empires AGENTS.md
AGENTS.md instructions for agent-of-empires/agent-of-empires, covering repository guidelines, where to look, commands, code rules and tests.
opencode-claude-memory AGENTS.md
Instructions for kuitos/opencode-claude-memory, covering agents.md, structure, where to look, critical coupling and conventions.
armada AGENTS.md
Instructions for rafmacalaba/armada, covering armada — build rules, the job, the team, repository conventions and adaptive delivery.
Formic AGENTS.md
Instructions for rickywo/Formic, covering formic task manager assistant, your capabilities, what you can do, what you cannot do and core behavioral rules.
total-recall AGENTS.md
AGENTS.md instructions for strvmarv/total-recall, covering agent & contributor guide, quick reference, project overview, layer diagram and where to look.
opm AGENTS.md
Instructions for tbcrawford/opm, covering project, command api, constraints, technology stack and conventions.