taskferry CLAUDE.md

taskferry CLAUDE.md is an instructions file for coding agents from jeremysball/taskferry. It costs 2,284 tokens per session, scanned C, original, MIT.

Project instructions for developing Taskferry, including documentation practices, testing isolation, issue checks, contributor credit, and commit naming.

In plain words
What is it for?
Use them when changing Taskferry, especially when documenting intentional behavior, testing its own services, merging work, or recording contributions.
Why use it?
They capture project-specific decisions and maintenance rules that are easy to miss when working on Taskferry.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jeremysball/taskferry/claude-md.svg)](https://agentmods.dev/instructions/jeremysball/taskferry/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/jeremysball/taskferry/claude-md"><img src="https://agentmods.dev/badge/instructions/jeremysball/taskferry/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,284 This file is loaded in full into every session.
When invoked 2,284 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.02284 $0.02284
Opus 5 $0.01142 $0.01142
Sonnet 5 $0.00457 $0.00457
Haiku 4.5 $0.00228 $0.00228

Measured today against content hash 712e182bea52, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

taskferry 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 today.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

few (`ls -1t | tail -n +10 | xargs rm -rf`).
CLAUDE.md · 158 lines

How it starts

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

taskferry

Record behavior that looks like a bug but isn't

When a change introduces behavior a future reader would reasonably file as a bug — a deliberate non-obvious default, a race the design tolerates on purpose, a "why doesn't this take effect immediately" — add it to docs/things-that-look-like-bugs.md in the same PR. That file exists so the same thing doesn't get re-diagnosed from scratch every time; it is the one piece of orientation documentation worth maintaining by hand, because nothing about it can be derived by reading the code. It lived in docs/daemon.md until the entries outgrew the daemon.

Do not reintroduce a file-by-file index of the codebase (line counts, per-file responsibility summaries). The previous docs/sourcemap.md went stale on essentially every commit that touched src/, generated repeated review findings about its own staleness, and answered questions that rg and wc -l answer correctly on demand.

Isolate your own taskferry runs when testing or developing taskferry itself

taskferry's own daemon, task state (tasks.json), file lock, and socket are resolved purely from env vars (TASKFERRY_STATE_DIR, TASKFERRY_RUNTIME_DIR, TASKFERRY_CACHE_DIR, TASKFERRY_SOCKET_PATH, falling back to XDG_STATE_HOME/XDG_RUNTIME_DIR/XDG_CACHE_HOME) — see src/paths.js. None of that resolution looks at cwd, --directory, or which git worktree you're in, so by default every worktree of this repo (and every concurrent session working in one) shares one daemon process, one tasks.json, and one lock file. This includes the "stale lock" reclaim logic in state-lock.js — it is not worktree-scoped either, it reclaims a lock in that one shared file regardless of which worktree wrote it.

Whenever a session is testing or developing taskferry itself (dispatching ferries to exercise its own dispatch/daemon/overlay code, not just using it as a tool to work on something else), export a unique TASKFERRY_STATE_DIR/TASKFERRY_RUNTIME_DIR/TASKFERRY_CACHE_DIR (e.g. under /tmp/taskferry-dev-<worktree-or-session-slug>) before dispatching, so your own dev/test daemon and task state are fully separate from the daemon and in-flight ferries any other concurrent session (or your own regular non-dev usage) is relying on. Never let a taskferry-testing session dispatch against the shared default state dir — a crash, a stale-lock reclaim, or a daemon restart triggered by your own test run can otherwise kill or corrupt another session's live ferries with no indication of what happened from that other session's point of view.

Read the full file on GitHub · 158 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. today Changed · +10 tokens per session 712e182bea52
  2. 3d ago First seen · 158 lines · 2,274 tokens per session scan C 5700f28ef5a5

Subscribe to this mod's changes

taskferry CLAUDE.md is an instructions file published in the GitHub repository jeremysball/taskferry (0 stars, last pushed today), licensed MIT. It adds 2,284 tokens to every session, about $0.0114 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.