supstack-cli CLAUDE.md

A set of project instructions for developing SupStack CLI, a tool exposed both as a terminal command and an MCP server. It explains the project’s conventions, architecture, commands, and capability pattern.

In plain words
What is it for?
Use it when adding or changing SupStack CLI capabilities, working with its registry, schemas, handlers, output formatting, or supported research commands.
Why use it?
It gives contributors the rules needed to add features consistently across both interfaces. A capability is defined once and then registered for reuse by the CLI and MCP server.

Instructions file

Install

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.

agentmods
npx agentmods add instructions/drbaher/supstack-cli/claude-md
Clone the repo
git clone --depth 1 https://github.com/DrBaher/supstack-cli
Per session 977 This file is loaded in full into every session.
When invoked 977 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash f85e0a441dc0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

CLAUDE.md · 73 lines

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.ts iterates it) and the MCP server (src/mcp.ts iterates it). The two surfaces are generated from the same list, so they cannot drift.
  • src/capabilities/define.ts — the reference implementation. Copy its shape for research, search, compare, studies, stack, interactions, export.

To add a capability

  1. Create src/capabilities/<name>.ts exporting a defineCapability({ ... }).
  2. Validate input with a zod object schema (positional args + options both map into it).
  3. Fetch via apiGet() (src/http.ts) — never call fetch directly. It handles the 60/min rate limit: retry + backoff on 429/5xx, respects Retry-After, and attaches X-API-Key when a key is configured.
  4. Write format.text (human) and format.json (machine / MCP).
  5. Add it to src/registry.ts.
  6. Add a *.test.ts next to it (mock fetch; 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 with SUPSTACK_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-Key header). Anonymous works today; Phase 2 personalization flips to keys without a client rewrite.
  • MCP is first-class. @modelcontextprotocol/sdk is a regular dependency. src/mcp.ts uses the low-level Server and generates each tool's JSON Schema from the capability's zod schema via zod v4's native z.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.ts lazy-imports mcp.ts so non-mcp commands don't pay its startup cost.

Read the full file on GitHub · 73 lines

Changes

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.

  1. yesterday First seen · 73 lines · 977 tokens per session scan A f85e0a441dc0

Subscribe to this mod's changes

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.