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/smith-network-solutions/threadknot/claude-mdgit clone --depth 1 https://github.com/smith-network-solutions/threadknotWhat 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.02067 | $0.02067 |
| Opus 5 | $0.01033 | $0.01033 |
| Sonnet 5 | $0.00413 | $0.00413 |
| Haiku 4.5 | $0.00207 | $0.00207 |
Grade A, and why
threadknot 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 2d 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 — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Threadknot — every coding agent on one thread
A Tauri (Rust) desktop app that drives Claude Code, OpenAI Codex, Kimi Code, and remote hermes-agent gateways natively over their wire protocols — no terminal wrapping, no Node server — and serves the same UI to any browser on the LAN, so the app is usable from a phone.
Shipped as Armada until the 2026-08 rename. See "Rename compatibility" below before touching anything that reads from disk.
Owner: Spencer Smith (Smith Network Solutions).
Layout
- Rust backend (
src-tauri/src/):server.rs(axum :42800, token-gated/ws, servesdist/on LAN),agents/claude.rs(claude CLI stream-json + control_request permission protocol),agents/codex.rs(codex app-server JSON-RPC),agents/kimi.rs,agents/hermes.rs(remote gateways: Runs API over HTTP/SSE),agents/mod.rs(hub: event persistence + fanout),library.rs/catalog.rs(the Library: skills written into each CLI's own skills dir + an MCP-server registry injected into every driver at spawn),store.rs(the data dir),protocol.rs(normalized event schema). Contract:docs/PROTOCOL.md. - Frontend: React/TS in
src/, plain CSS, no state libs. Works in the Tauri webview and any phone browser (LAN URL + token in Settings popover). For the whole-screen flash — what re-rendered, what remounted, and which action caused it, readable from a headless browser — arm?tktrace=1and readdocs/RENDER-FORENSICS.md. - Mobile app (
mobile/): Expo SDK 57 companion — biometric-locked WebView shell with multi-server switching + push notifications. Readdocs/MOBILE.mdfirst. - Dispatch (
dispatch.rs,exec.rs,mcp_fleet.rs): one thread hands a brief to another agent — a different harness, a different machine — and gets a report back. Readdocs/USING-DISPATCH.mdbefore changing any of it. - Auth: uses the installed
claude/codex/kimiCLIs' own subscription logins.
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.
- 2d ago First seen · 141 lines · 2,067 tokens per session scan A 87a964588ba9
threadknot CLAUDE.md is an instructions file published in the GitHub repository smith-network-solutions/threadknot (5 stars, last pushed 8d ago), licensed Apache-2.0. It adds 2,067 tokens to every session, about $0.0103 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
ai-maestro CLAUDE.md
Instructions for 23blocks-OS/ai-maestro, covering claude.md, ⚠️ the claude code hook has one source of truth, 1. edit the canonical hook, 2. propagate to the plugin copies and project overview.
vibepod-cli AGENTS.md
Instructions for VibePod/vibepod-cli, covering project agent memory, adding a supported agent, tests and maintaining this file.
token-saver CLAUDE.md
Instructions for ppgranger/token-saver, covering token-saver plugin, how it works and important rules.
Agent-Context CLAUDE.md
Instructions for lx-wnk/Agent-Context, covering claude.md, project overview, commands, format all files and check formatting (ci-style).
claude-react-kit CLAUDE.md
Instructions for wahmoh/claude-react-kit, covering claude.md, commands, replace these with your project's actual commands, architecture — mandatory and component rules.
adeptability AGENTS.md
Instructions for itaywol/adeptability, a project described as: Cross-harness AI skill portability CLI. Author an agent skill once, sync it into Claude Code, Cursor, Copilot, Codex, OpenCode & 45+ AI coding agents. Safety scanner, content-hash drift detection. A package manager / dotfiles for AI coding agent skills.