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/drbaher/supstack-cli/claude-mdgit clone --depth 1 https://github.com/DrBaher/supstack-cliWhat 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.00977 | $0.00977 |
| Opus 5 | $0.00489 | $0.00489 |
| Sonnet 5 | $0.00195 | $0.00195 |
| Haiku 4.5 | $0.00098 | $0.00098 |
Grade A, and why
supstack-cli 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 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 — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SupStack CLI — conventions
@supstack/cli is a thin, public-API client that ships as both a terminal CLI
and an MCP server, from one capability registry. Phase 1 is read-only, no auth
required (the API is soft-gated; anonymous calls are rate-limited to 60/min/IP).
The capability pattern (the one rule that matters)
Every command is a Capability (src/capability.ts) defined once and exposed
through every surface. Never write a command handler directly against commander or
the MCP SDK — define a capability and register it.
inputSchema (zod) → handler(input) → format.{ text, json }
│ │ │
CLI arg parsing hits public API CLI output + MCP result
+ MCP JSON Schema
src/registry.ts— the array of capabilities. Add one line → it appears in the CLI (src/cli.tsiterates it) and the MCP server (src/mcp.tsiterates it). The two surfaces are generated from the same list, so they cannot drift.src/capabilities/define.ts— the reference implementation. Copy its shape forresearch,search,compare,studies,stack,interactions,export.
To add a capability
- Create
src/capabilities/<name>.tsexporting adefineCapability({ ... }). - Validate input with a zod object schema (positional args + options both map into it).
- Fetch via
apiGet()(src/http.ts) — never callfetchdirectly. It handles the 60/min rate limit: retry + backoff on 429/5xx, respectsRetry-After, and attachesX-API-Keywhen a key is configured. - Write
format.text(human) andformat.json(machine / MCP). - Add it to
src/registry.ts. - Add a
*.test.tsnext to it (mockfetch; do not hit the network in unit tests).
Architectural decisions
- CLI hits the public API at
https://supstack.me/api/v1, never Supabase directly. Keeps the CLI a true API client (the platform thesis) and lets API changes propagate to all clients. Override the base URL withSUPSTACK_API_URL. - Response schemas live in the CLI as zod, not imported from the app's
src/. This is a deliberate deviation from the original handoff's "reuse types from src/". The API's JSON contract ({ data: ... }envelopes) is the source of truth for a publishable client; importing the Next.js app's internal types into a standalone npm package would couple the package to app internals and complicate its build. Each capability owns a small zod schema for the response shape it consumes. The same schema feeds the MCP tool's JSON Schema, so there's still one definition. - Auth grammar is reserved and wired (
supstack auth set-key,SUPSTACK_API_KEY,X-API-Keyheader). Anonymous works today; Phase 2 personalization flips to keys without a client rewrite. - MCP is first-class.
@modelcontextprotocol/sdkis a regular dependency.src/mcp.tsuses the low-levelServerand generates each tool's JSON Schema from the capability's zod schema via zod v4's nativez.toJSONSchema(schema, { io: 'input' })— so MCP tools never drift from the CLI and we don't couple to the SDK's own zod version.buildMcpServer()is unit-tested with an in-memory transport;cli.tslazy-importsmcp.tsso non-mcpcommands don't pay its startup cost.
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 · 73 lines · 977 tokens per session scan A f85e0a441dc0
supstack-cli CLAUDE.md is an instructions file published in the GitHub repository DrBaher/supstack-cli (0 stars, last pushed 1mo ago), licensed MIT. It adds 977 tokens to every session, about $0.0049 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
oura_mcp AGENTS.md
AGENTS.md instructions for AntVsl/oura_mcp, covering agent guide, mission and boundaries, repository map, standard workflow and cross-client compatibility.
aihw-mcp CLAUDE.md
Claude Code instructions for Bigred97/aihw-mcp, covering aihw-mcp, source, curated datasets (8), repo-specific module set and repo-specific gotchas.
macro-engine CLAUDE.md
Claude Code instructions for rockitdev/macro-engine, covering claude.md, commands and rules.
vitamind CLAUDE.md
Claude Code instructions for JaviMaligno/vitamind, covering claude.md, project overview, development commands, architecture and next.js app router (app/).
llm-context.py CLAUDE.md
Instructions for cyberchitta/llm-context.py, covering claude.md, working notes (gitignored) and draining the field notes.
openrouter-mcp-multimodal AGENTS.md
Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).