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/transparent-pegasus/herdrpowers/claude-mdgit clone --depth 1 https://github.com/transparent-pegasus/herdrpowersWrote 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/transparent-pegasus/herdrpowers/claude-md)<a href="https://agentmods.dev/instructions/transparent-pegasus/herdrpowers/claude-md"><img src="https://agentmods.dev/badge/instructions/transparent-pegasus/herdrpowers/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.1 | $0.01456 | $0.01456 |
| Opus 5 | $0.00728 | $0.00728 |
| Sonnet 5 | $0.00291 | $0.00291 |
| Haiku 4.5 | $0.00146 | $0.00146 |
Grade A, and why
herdrpowers 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 6d 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 — 28 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Code Guide
This repository IS the herdrpowers plugin: the payload lives directly at the repo root in skills/ and commands/, discovered by the Claude Code, Codex, and Cursor plugin conventions (manifests in .claude-plugin/, .codex-plugin/, .cursor-plugin/, plus the Codex marketplace file at .agents/plugins/marketplace.json).
When editing pack behavior, edit skills/ or commands/ directly. docs/ holds the human-facing framework docs. This file and AGENTS.md are maintainer instructions only — they are not part of the payload.
Pack Invariants
- No in-process subagents in the payload. Every dispatch in a skill or command goes through
orchestration→using-herdr-sibling-panes. If a payload file tells an agent to use the Agent tool or a named subagent type for development work, that is a bug. Two exceptions:writing-skills, where a fresh-context sample may come from a raw API call, and a review task whose resolvedmodeisorchestrator, which the orchestrator runs in a spawned in-process subagent rather than inline — both say so explicitly. - Roles and task names, not tool names. Skills speak in roles (Orchestrator, Reviewer, Coder, Generalist) and delegation-task names (
complex-coding,test-authoring,chores,task-review, …). Routing resolves at runtime from the target repo's.herdrpowers/config.yamlover the shipped defaults inskills/orchestration/roles.yaml: aroles:list, afallbacks:map, adelegation:block (pane_scope,execution), and anassignments:table giving every delegation task aroleand amode. No skill or command may hard-code a route.roles.yamlis the default layer only — never the customization point, because plugin installs are read-only. - The YAML is the source of truth for defaults; prose points at it. No skill, command, or doc restates a shipped
role/modevalue — they name what a task covers and say "read the resolved assignment". A| Default |column in a payload table is a bug: it goes stale silently and gives agents a second, wrong answer. Adding a role, a delegation task, or adelegation:key means updatingroles.yamlplus the tables inskills/orchestration/SKILL.md,commands/init.md, anddocs/roles.md— the tables, not defaults inside them. - Delegation never crosses the orchestrator's tab unless the repo says so.
delegation.pane_scopedefaults totab; an out-of-scope pane is not a candidate, not a fallback target, and not counted toward an agent type's availability. A payload file that selects panes without filtering ontab_idis a bug. Scope is never widened mid-run — that is a configuration change, and configuration is read-only inside a run. - A role that binds to
agents:(a list) runs one delegation per entry. That is what makes a review a double review — a property of the role, not of the task — so it applies to any task assigned to such a role, and the different-agent-types, degrade-don't-block, and name-it-in-the-report rules come with it. - Independence is structural, and not configurable. Every reset-backed delegation (
composer-submit.sh) starts a fresh session — that is the independence property, not pane identity. The same physical pane may later review work it previously wrote after a reset. Routing follows the resolved assignment only:agent:→ one idle pane of that type;agents:→ one delegation per listed type. There is no "prefer a different agent type than the implementer" heuristic. A disabled review removes a review; it never converts one into an in-session self-review (unreset continuing work such asmode: implementermust not review itself inside that same session). The test half is amode, not a loophole:test-authoring/fix-round-test-authoringindelegateput tests in a pane that never sees the implementation; inimplementerthey leave the reviewers as the only check on that test code. Both are legitimate, and the report always names which pane wrote the tests. Do not weaken either half silently. Every assignment a repo changed and every disabled review is named in the workflow's final report. <KEY>placeholders are intentional. They resolve at runtime from each target repo'sHerdrpowers Configurationsection (written by theinitworkflow). When adding a new placeholder, add it to the key table incommands/init.md.- Keep skill cross-references as bare skill names (
writing-plans, notherdrpowers:writing-plans); Claude Code namespaces them automatically at install time (herdrpowers:<name>).
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.
- 6d ago First seen · 28 lines · 1,456 tokens per session scan A 4b3de53e4908
herdrpowers CLAUDE.md is an instructions file published in the GitHub repository transparent-pegasus/herdrpowers (11 stars, last pushed 9d ago), licensed Apache-2.0. It adds 1,456 tokens to every session, about $0.0073 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 instructions, from other repositories
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
Browser4 CLAUDE.md
Claude Code instructions for platonai/Browser4, covering browser4 — project context for claude, architecture, key dispatch chain (cli → browser), batch commands and e2e test structure.
autopus-adk GEMINI.md
Gemini CLI instructions for Insajin/autopus-adk, covering autopus-adk harness, 스킬 디렉터리, core guidelines, subagent delegation and file size limit.
agent-ship CLAUDE.md
Claude Code instructions for Agent-Ship/agent-ship, covering claude.md, project overview, commands, docker development (recommended) and local development (no docker).
clawock AGENTS.md
AGENTS.md instructions for KCNyu/clawock, covering agents.md - your workspace, every session, kcn 偏好, git hook (one-time setup per clone) and git auto-commit rules.
agent-rules child-process.instructions.md
Instructions for lirantal/agent-rules, covering system processes secure coding guidelines, your mission and spawning system processes.