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/jeremysball/taskferry/claude-mdgit clone --depth 1 https://github.com/jeremysball/taskferryWrote 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.
[](https://agentmods.dev/instructions/jeremysball/taskferry/claude-md)<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>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.
| Model | Per session | Once 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 |
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`). 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.
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.
- today Changed · +10 tokens per session 712e182bea52
- 3d ago First seen · 158 lines · 2,274 tokens per session scan C 5700f28ef5a5
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.
Other instructions, from other repositories
plannotator AGENTS.md
AGENTS.md instructions for backnotprop/plannotator, covering plannotator, project structure, server runtimes, installation and environment variables.
solo AGENTS.md
AGENTS.md instructions for solo-agent/solo, covering project testing rules and project service lifecycle rules.
superset AGENTS.md
AGENTS.md instructions for superset-sh/superset, covering superset monorepo, project structure, exception: shadcn/ui components, database and releases.
untether GEMINI.md
Gemini CLI instructions for littlebearapps/untether, covering untether — gemini instructions, stack & conventions, architecture, key rules and testing.
agent-tools AGENTS.md
AGENTS.md instructions for kairyou/agent-tools, covering agent instructions, build and test, layout, settled decisions and docs.
superset CLAUDE.md
Claude Code instructions for superset-sh/superset, a project described as: Superset is an agentic IDE to orchestrate 100+ coding agents in parallel. Run any agent with your own subscription.