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/hyperaiteam/clitrigger/claude-mdgit clone --depth 1 https://github.com/HyperAITeam/CLITriggerWhat 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.01216 | $0.01216 |
| Opus 5 | $0.00608 | $0.00608 |
| Sonnet 5 | $0.00243 | $0.00243 |
| Haiku 4.5 | $0.00122 | $0.00122 |
Grade A, and why
CLITrigger 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 — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
CLITrigger is a full-stack app that automates AI-powered task execution. Users write TODO items in a web UI, and the system spawns isolated git worktrees for each task, running Claude/Antigravity/Codex CLI tools in parallel. Built with Express + React + SQLite + WebSocket.
Commands
# Development (runs server + client concurrently)
npm run dev
# Build
npm run build # both client and server
npm run build:server # server only (→ dist/server/)
npm run build:client # client only (→ src/client/dist/)
# Tests
npm run test # all tests (server + client)
npm run test:server # server tests only (vitest, node env)
npm run test:client # client tests only (vitest, jsdom env)
npx vitest run src/server/path/to/file.test.ts # single server test
cd src/client && npx vitest run src/path/to/file.test.tsx # single client test
# Type checking
npm run typecheck # server + client
# Desktop (Windows)
scripts/build-win.bat # --skip-install/-s skips npm ci; --msix for appx target
Architecture
Monorepo Layout
src/server/— Express backend (TypeScript, ESM). Entry:src/server/index.ts. DB: SQLite (better-sqlite3, WAL) insrc/server/db/. Services insrc/server/services/, routes insrc/server/routes/, plugins insrc/server/plugins/.src/client/— React frontend (Vite + TailwindCSS). Separatepackage.json. Entry:src/client/src/main.tsx→App.tsx.bin/clitrigger.js— npm CLI entry.plugin/— Hecaton TUI plugin (CommonJS, Deno-compatible).
Key Patterns & Gotchas
These encode constraints that aren't obvious from the code. Apply when touching related areas.
- Sandbox Mode — Claude absolute path gotcha:
.claude/settings.jsonpatterns MUST use absolute paths (${workDir}/**) — Claude resolves relative paths internally and the match fails. Also normalizeworkDirto forward slashes (workDir.replace(/\\/g, '/')) on Windows — mixed separators silently reject every Edit/Write match. - Wiki naming convention: UI was renamed Memory→Wiki but DB tables, routes (
/api/projects/:id/memory/*), files (MemoryList.tsx,memory-injector.ts), and the<long_term_memory>prompt tag intentionally retain "memory" — don't rename them. The XML tag is a semantic hint to LLMs. - Floating Window state gating:
SessionWindowsHostpersistsOpenGroup[]tosessionGroups:{projectId}localStorage. Persist must be gated onsessionshaving loaded so empty-during-load doesn't nuke restored state. Hydrate inuseStateinitializer (synchronous), not a post-mount effect — a persist effect can race and write[]first. - Raw Binary Streaming: DB
session_raw_chunksare the single source of truth for replay —session:subscribeflushes the in-flight buffer then sends only DB chunks. Never replay from both ring buffer + DB (causes duplicate output). - Native Focus Handoff (Electron): React
element.focus()doesn't reclaim native HWND focus from xterm.js. Use the IPC bridge:electronAPI.imeReset()→mainWindow.webContents.focus()in main process, then RAF twice before focusing the target.
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 · 90 lines · 1,216 tokens per session scan A 432c4173c80a
CLITrigger CLAUDE.md is an instructions file published in the GitHub repository HyperAITeam/CLITrigger (13 stars, last pushed 8d ago), licensed MIT. It adds 1,216 tokens to every session, about $0.0061 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-30.
Other instructions, from other repositories
agentcrew-dev-skills AGENTS.md
AGENTS.md instructions for okqixiaobao727-design/agentcrew-dev-skills, covering agents.md and validating your work.
wiff AGENTS.md
Instructions for xxxoooxoxo/wiff, covering agents.md, orchestrating with wiff (driving it from a harness) and working on this codebase.
repo-foreman AGENTS.md
AGENTS.md instructions for sponyhub/repo-foreman, covering agents.md — repoforeman contributor contract, start here, product invariants, implementation rules and tests and verification.
soloe AGENTS.md
AGENTS.md instructions for mheraskin/soloe, covering repository instructions, commit messages, code discovery, agent skills and issue tracker.
revrem AGENTS.md
AGENTS.md instructions for GitCmurf/revrem, covering agentic coding rules, using meminit, project rules and rules.
shikigami AGENTS.md
AGENTS.md instructions for kei-prog/shikigami, covering repository guidelines, project structure & module organization, product scope & feature decisions, build, test, and development commands and coding style & naming conventions.