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 commands/handarbeit/fabrik/statusgit clone --depth 1 https://github.com/handarbeit/fabrikWrote 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/commands/handarbeit/fabrik/status)<a href="https://agentmods.dev/commands/handarbeit/fabrik/status"><img src="https://agentmods.dev/badge/commands/handarbeit/fabrik/status.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.00025 | $0.01956 |
| Opus 5 | $0.00013 | $0.00978 |
| Sonnet 5 | $0.00005 | $0.00391 |
| Haiku 4.5 | $0.00003 | $0.00196 |
Grade A, and why
status 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.
How it starts
The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Check the current state of the Fabrik project. Run these probes (in parallel where possible), then summarise.
1. Read the project config
Use the Read tool on .fabrik/config.yaml to extract:
owner(GitHub org or user)project(project number, integer)owner_typeif present (organizationoruser— defaults toorganizationwhen omitted)
You'll inline these values into the GraphQL query in step 3. Don't try to set shell variables from config.yaml in a heredoc — just substitute the values directly into the gh api graphql invocation.
2. Find running workers
Fabrik spawns every worker with --plugin-dir <abs-path-to-.fabrik/plugin> (runClaude appends this flag on every invocation). This is the only reliable detector.
--output-format stream-json must never be used as a detector, alone or in combination. It's the generic Claude Code headless flag — any headless claude process on the machine matches it, including other plugins' background daemons (e.g. claude-mem), other agent harnesses, or a user's own scripts. None of those processes carry --plugin-dir .fabrik/plugin. Matching on it (even as one arm of an "either/or") reintroduces false positives; don't reintroduce it here even for "redundancy."
Scope the match to this project's absolute plugin-dir path, not just the relative .fabrik/plugin suffix — Fabrik commonly runs as a fleet of concurrent per-repo instances on one host, and a relative match would also count a different repo's Fabrik workers as this project's:
FABRIK_PLUGIN_DIR="$(pwd)/.fabrik/plugin"
ps aux | grep -F -- "--plugin-dir $FABRIK_PLUGIN_DIR " | grep -v grep
Use $(pwd), not realpath/pwd -P — Fabrik itself derives this path from os.Getwd() without resolving symlinks, so a symlink-resolving form could produce a path that no longer textually matches what a running worker actually passed on its command line. Use grep -F (fixed string), not an interpolated regex, so the path's literal characters can't be misread as regex metacharacters. The trailing space in the pattern is required, not cosmetic: without it, a fixed-string match is a prefix match, and one project's plugin-dir path can be a literal prefix of another's (e.g. a dev --plugin-dir override of .fabrik/plugin vs .fabrik/plugin-workflows, both documented in docs/USER_GUIDE.md) — the trailing space anchors on the argument boundary that always follows --plugin-dir <value> in Fabrik's actual argv (--resume, --model, or --max-turns always come next; see buildClaudeArgs in engine/claude.go), so a same-prefix-different-suffix path can no longer false-match.
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.
- 4d ago First seen · 118 lines · 25 tokens per session scan A 263b45603a37
status is a command published in the GitHub repository handarbeit/fabrik (22 stars, last pushed today), licensed Apache-2.0. It adds 25 tokens to every session and 1,956 once invoked, about $0.0001 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 commands, from other repositories
MIGRATE_DESIGN
Design doc for the migration tool PR. Author: Sol ([email protected]). Co-authored-by: wakesync.
plan
Create a structured task-by-task implementation plan for a feature and write it to docs/superpowers/plans/.
diff-script
Compare an MDL script against the project's current state.
toh-help
Display all Toh Framework commands and quick usage guide.
doctor
Run procedural readiness checks for goal-flight.
pipeline-undo
Undo a pipeline run's result. With worktree isolation (the current engine), this is clean and low-risk: a run never touches your checkout — its result lives only on a pipeline/ branch (and, for a --push run, on the remote). "Undo" therefore means deleting that branch and its worktree, not reverting your working tree.