flt CLAUDE.md

flt CLAUDE.md is an instructions file for coding agents from twaldin/flt. It costs 2,367 tokens per session, scanned A, original, MIT.

Project instructions for flt, a tool that lets several different AI coding command-line tools work through one controller. They describe its architecture, commands, workflows, and coding conventions.

In plain words
What is it for?
Working on flt features, commands, workflows, agent sessions, worktrees, or its controller and terminal interface.
Why use it?
They give coding agents the project context they need before making changes, reducing misunderstandings about how the tools and repository 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/twaldin/flt/claude-md
Clone the repo
git clone --depth 1 https://github.com/twaldin/flt

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 flt CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/twaldin/flt/claude-md.svg)](https://agentmods.dev/instructions/twaldin/flt/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/twaldin/flt/claude-md"><img src="https://agentmods.dev/badge/instructions/twaldin/flt/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,367 This file is loaded in full into every session.
When invoked 2,367 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.02367 $0.02367
Opus 5 $0.01184 $0.01184
Sonnet 5 $0.00473 $0.00473
Haiku 4.5 $0.00237 $0.00237

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

Security

Grade A, and why

flt 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 4d 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 · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

flt

flt is a multi-CLI agent orchestrator: it makes Claude Code, Codex, Gemini CLI, OpenCode, SWE-agent, and ~7 other AI coding CLIs feel like one tool. A single controller daemon manages tmux-hosted agents across CLIs, normalizes per-CLI quirks behind a CliAdapter interface, and routes messaging, status, worktrees, presets, and YAML workflows through one Unix-socket RPC.

The soul of the project: primitives, not a monolith

flt is a set of primitives a user can compose however they want. spawn, kill, send, list, logs are the primitives. Everything else — presets, workflows, the dynamic DAG, parallel candidates with treatment matrices, the TUI itself — is a composition over those primitives. When designing a new feature, ask first: "is this just a new way to compose spawn/send/kill?" If yes, build it as a composition (a YAML workflow step, a preset field, a TUI command). Only carve out a new primitive when no composition can express it. This is the lens for every non-trivial change here.

Architecture

  • Single-writer controller. A daemon (src/controller/server.ts) is the only writer to ~/.flt/state.json. Every CLI command (flt spawn, flt send, …) and the TUI talk to it over a Unix socket at ~/.flt/controller.sock. The TUI is a pure reader; closing/reopening it never affects running agents.
  • tmux as the agent host. Each agent runs in its own detached tmux session. src/tmux.ts wraps new-session, pipe-pane logging, key delivery, and pane capture. ANSI output from agents is captured raw and re-parsed in the TUI.
  • Worktree-per-agent isolation. src/worktree.ts creates a flt/<name> branch and worktree under tmpdir() so concurrent agents don't trample each other's git state. --no-worktree opts out.
  • Per-CLI adapters. src/adapters/ defines CliAdapter (spawn args, instruction filename, ready-state detection, dialog auto-approval, status detection). Most adapters delegate to @twaldin/harness-ts for shared detection logic; flt adds the spawn/lifecycle/dialog-bypass on top.
  • Status by polling pane content. No agent SDKs are wired up. src/controller/poller.ts runs tmux capture-pane, feeds the buffer to adapter.detectStatus, and writes status transitions back to state. Workflow advancement, ephemeral cleanup, and TUI status colors all hang off this single transition signal.
  • Instructions are projected, not owned. src/instructions.ts (delegating to @twaldin/harness-ts) prepends an `` block to the project's native instruction file (CLAUDE.md, AGENTS.md, GEMINI.md, etc.) and restores the original on kill. flt never owns the file outside its markers.

Read the full file on GitHub · 92 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. 4d ago First seen · 92 lines · 2,367 tokens per session scan A 6d7efff63d4c

Subscribe to this mod's changes

flt CLAUDE.md is an instructions file published in the GitHub repository twaldin/flt (5 stars, last pushed 1mo ago), licensed MIT. It adds 2,367 tokens to every session, about $0.0118 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.