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/pedrocivita/tocket/claude-mdgit clone --depth 1 https://github.com/pedrocivita/tocketWrote 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/pedrocivita/tocket/claude-md)<a href="https://agentmods.dev/instructions/pedrocivita/tocket/claude-md"><img src="https://agentmods.dev/badge/instructions/pedrocivita/tocket/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.00645 | $0.00645 |
| Opus 5 | $0.00322 | $0.00322 |
| Sonnet 5 | $0.00129 | $0.00129 |
| Haiku 4.5 | $0.00064 | $0.00064 |
Grade C, and why
tocket CLAUDE.md scanned grade C with 1 finding 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.
Hidden instructionshighPrompt injection
Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.
<!-- LLM_CONTEXT: Executor instructions for Claude Code --> How it starts
The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md - Tocket
Role
You are the Executor for the Tocket CLI — a context scaffold and file convention for multi-agent workspaces.
Your job is to implement precisely, following the Architect's plans. Read the Memory Bank before every session.
Build & Run
npm install # Install dependencies
npm run build # Compile TypeScript (tsc → dist/)
npm test # Run test suite (node:test, 248 tests, 60 suites)
node dist/index.js # Run CLI locally
Code Style
- TypeScript strict mode — all code must pass
tscwithstrict: true - ESM only —
"type": "module"in package.json - Imports use
.jsextension —import { foo } from "./bar.js"(not.ts, not bare) - Type-only imports —
import type { Command } from "commander" - Node built-ins use
node:prefix —import { join } from "node:path" - Named exports only — no default exports
- Semicolons — yes
- Code in English — variables, functions, comments, commits
Architecture
Commands follow the registration pattern:
src/index.ts # Entry: registers commands + dashboard detection
src/commands/<name>.cmd.ts # One file per command (init, generate, sync, validate, config, focus, status, diff, handoff, doctor, lint, eject)
src/commands/dashboard.ts # Interactive menu (no-args entry point)
src/templates/memory-bank.ts # Template generators for tocket init
src/utils/theme.ts # Purple theme, banner, semantic helpers (chalk)
src/utils/git.ts # Git wrappers (staged, modified, commits, branch, diff, recently modified)
src/utils/config.ts # Global config read/write (~/.tocketrc.json)
src/utils/xml.ts # Payload XML parser (for tocket diff)
src/utils/context.ts # Shared constants and helpers
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 · 77 lines · 645 tokens per session scan C f78139f1ec34
tocket CLAUDE.md is an instructions file published in the GitHub repository pedrocivita/tocket (38 stars, last pushed 3mo ago), licensed MIT. It adds 645 tokens to every session, about $0.0032 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
x-harness AGENTS.md
Instructions for BrianNguyen29/x-harness, covering x-harness agent contract, canonical tiers, completion rule, verifier rule and pgv rule.
imagine-mcp CLAUDE.md
Claude Code instructions for n24q02m/imagine-mcp, covering imagine-mcp, architecture, tool signatures, model selection and transport modes.
imagine-mcp AGENTS.md
AGENTS.md instructions for n24q02m/imagine-mcp, covering imagine-mcp, architecture, tool signatures, model selection and transport modes.
Atomic-Spec AGENTS.md
Instructions for Chappygo-OS/Atomic-Spec, covering agents.md — adding a new ai agent to atomic spec, about atomic spec and the atomicspec cli, general practices, adding new agent support and current supported agents.
context-engineering-protocol AGENTS.md
AGENTS.md instructions for linkpranay-ai/context-engineering-protocol: Instructions for AI coding agents (e.g. OpenAI Codex) working in this repository.
SkillEngine CLAUDE.md
Claude Code instructions for borhen68/SkillEngine, covering skillengine, project structure, skills by phase, conventions and commands.