CLITrigger CLAUDE.md

Project instructions for CLITrigger, a full-stack application that runs AI coding tasks in separate Git worktrees, which are isolated working copies of a repository.

In plain words
What is it for?
Use them when developing CLITrigger, running its server or client, building releases, checking types, or running targeted tests.
Why use it?
They tell an agent how the server, web client, database, tests, builds, and desktop packaging fit together.

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/hyperaiteam/clitrigger/claude-md
Clone the repo
git clone --depth 1 https://github.com/HyperAITeam/CLITrigger
Per session 1,216 This file is loaded in full into every session.
When invoked 1,216 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.01216 $0.01216
Opus 5 $0.00608 $0.00608
Sonnet 5 $0.00243 $0.00243
Haiku 4.5 $0.00122 $0.00122

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

Security

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.

CLAUDE.md · 90 lines

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) in src/server/db/. Services in src/server/services/, routes in src/server/routes/, plugins in src/server/plugins/.
  • src/client/ — React frontend (Vite + TailwindCSS). Separate package.json. Entry: src/client/src/main.tsxApp.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.json patterns MUST use absolute paths (${workDir}/**) — Claude resolves relative paths internally and the match fails. Also normalize workDir to 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: SessionWindowsHost persists OpenGroup[] to sessionGroups:{projectId} localStorage. Persist must be gated on sessions having loaded so empty-during-load doesn't nuke restored state. Hydrate in useState initializer (synchronous), not a post-mount effect — a persist effect can race and write [] first.
  • Raw Binary Streaming: DB session_raw_chunks are the single source of truth for replaysession:subscribe flushes 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.

Read the full file on GitHub · 90 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. 2d ago First seen · 90 lines · 1,216 tokens per session scan A 432c4173c80a

Subscribe to this mod's changes

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.