tocket CLAUDE.md

tocket CLAUDE.md is an instructions file for coding agents from pedrocivita/tocket. It costs 645 tokens per session, scanned C, original, MIT.

These project instructions describe Tocket, a command-line tool that organizes context and files for work shared across multiple AI coding sessions.

In plain words
What is it for?
They guide developers through building, testing, and extending the TypeScript CLI while following its strict code and command conventions.
Why use it?
They require the executor to read the project's memory before coding and follow the architect's plan, reducing lost context and inconsistent changes.

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/pedrocivita/tocket/claude-md
Clone the repo
git clone --depth 1 https://github.com/pedrocivita/tocket

Wrote 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.

agentmods badge for tocket CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/pedrocivita/tocket/claude-md.svg)](https://agentmods.dev/instructions/pedrocivita/tocket/claude-md)
Your own site
<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>
Per session 645 This file is loaded in full into every session.
When invoked 645 The same file — it is already loaded in full.
Security scan C 1 finding. 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.00645 $0.00645
Opus 5 $0.00322 $0.00322
Sonnet 5 $0.00129 $0.00129
Haiku 4.5 $0.00064 $0.00064

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

Security

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 -->
CLAUDE.md · 77 lines

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 tsc with strict: true
  • ESM only"type": "module" in package.json
  • Imports use .js extensionimport { foo } from "./bar.js" (not .ts, not bare)
  • Type-only importsimport type { Command } from "commander"
  • Node built-ins use node: prefiximport { 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

Read the full file on GitHub · 77 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. 5d ago First seen · 77 lines · 645 tokens per session scan C f78139f1ec34

Subscribe to this mod's changes

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.