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/derjochenmeyer/claude-code-craft-statusline/claude-mdgit clone --depth 1 https://github.com/derjochenmeyer/claude-code-craft-statuslineWrote 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/derjochenmeyer/claude-code-craft-statusline/claude-md)<a href="https://agentmods.dev/instructions/derjochenmeyer/claude-code-craft-statusline/claude-md"><img src="https://agentmods.dev/badge/instructions/derjochenmeyer/claude-code-craft-statusline/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.01426 | $0.01426 |
| Opus 5 | $0.00713 | $0.00713 |
| Sonnet 5 | $0.00285 | $0.00285 |
| Haiku 4.5 | $0.00143 | $0.00143 |
Grade B, and why
claude-code-craft-statusline CLAUDE.md scanned grade B 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 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
- **`.claude-plugin/plugin.json`**: the manifest. Declares the plugin name, version, author, repository URL, and a `userConfig` block that enumerates every tunable (SHOW_* booleans, thresholds). Values entered by the use How it starts
The opening of the file, as written. The whole thing — 73 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.
What this is
A bash statusline for Claude Code, shipped as an official Claude Code plugin. Zero Node, zero Python, no Nerd Fonts. The only hard runtime dependency is jq. Installation flows entirely through the plugin manager (/plugin marketplace add …, /plugin install craft-statusline). The renderer itself is a single bash script that consumes Claude Code's statusline JSON on stdin and prints an ANSI-colored line.
Commands
# Install the plugin locally for development (from a clone of this repo)
claude --plugin-dir ./
# Manual render test. Pipe fake Claude Code JSON into the renderer
echo '{"model":{"display_name":"Sonnet 4.6"},"context_window":{"used_percentage":42,"current_usage":{"input_tokens":1,"cache_creation_input_tokens":1000,"cache_read_input_tokens":150000}},"rate_limits":{"five_hour":{"used_percentage":15},"seven_day":{"used_percentage":30}},"cost":{"total_cost_usd":0.85}}' \
| bash scripts/craft-statusline.sh
# Environment diagnostic
bash scripts/craft-statusline.sh --doctor
# Version check
bash scripts/craft-statusline.sh --version
# Run the test suite (requires bats-core)
bats tests/
# Run shellcheck (CI runs this on every push + PR)
shellcheck scripts/craft-statusline.sh
Architecture
Plugin-shaped repository. Three functional areas:
-
.claude-plugin/plugin.json: the manifest. Declares the plugin name, version, author, repository URL, and auserConfigblock that enumerates every tunable (SHOW_* booleans, thresholds). Values entered by the user are exported to the renderer asCLAUDE_PLUGIN_OPTION_<KEY>environment variables and persisted in~/.claude/settings.jsonunderpluginConfigs."craft-statusline".options.*. -
.claude-plugin/marketplace.json: the repo's own plugin marketplace. Users install via/plugin marketplace add derjochenmeyer/claude-code-craft-statuslineand then/plugin install craft-statusline. No Anthropic approval required for this flow.
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 · 73 lines · 1,426 tokens per session scan B caaadb2d8a7d
claude-code-craft-statusline CLAUDE.md is an instructions file published in the GitHub repository derjochenmeyer/claude-code-craft-statusline (2 stars, last pushed 4mo ago), licensed MIT. It adds 1,426 tokens to every session, about $0.0071 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
senior-engineering-partner CLAUDE.md
Instructions for bjgreenberg/senior-engineering-partner, covering claude.md — senior-engineering-partner, model requirement (read before editing anything), repo shape, pr rules and gates & sharp edges.
vanguard-frontier-agentic copilot-instructions.md
Copilot instructions for VincentChuWaiChow/vanguard-frontier-agentic, covering vanguard frontier agentic repository instructions, what to optimize for, repo structure, rules for changes and cross-platform asset rule.
vanguard-frontier-agentic AGENTS.md
AGENTS.md instructions for VincentChuWaiChow/vanguard-frontier-agentic: The canonical operating guide for this repository is CLAUDE.md. Read it in full before making any change — purpose, layout, working rules, model policy, gates, and definition of done all live there.
vanguard-frontier-agentic GEMINI.md
Gemini CLI instructions for VincentChuWaiChow/vanguard-frontier-agentic: The canonical operating guide for this repository is CLAUDE.md. Read it in full before making any change — purpose, layout, working rules, gates, and definition of done all live there.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.