herdrpowers CLAUDE.md

herdrpowers CLAUDE.md is an instructions file for Claude Code from transparent-pegasus/herdrpowers. It costs 1,456 tokens per session, scanned A, original, Apache-2.0.

Maintainer instructions for a plugin containing skills and commands used by Claude Code, Codex, and Cursor.

In plain words
What is it for?
Editing plugin behavior, preserving its orchestration rules, and maintaining its manifests and human-facing documentation.
Why use it?
They explain where the working files live and set constraints for dispatching work, licensing, and maintenance.

Instructions file for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions subagents; mentions Claude Code; mentions AGENTS.md.

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

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/transparent-pegasus/herdrpowers/claude-md.svg)](https://agentmods.dev/instructions/transparent-pegasus/herdrpowers/claude-md)
Your own site
<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>
Per session 1,456 This file is loaded in full into every session.
When invoked 1,456 The same file — it is already loaded in full.
Security scan A 0 findings. 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.1 $0.01456 $0.01456
Opus 5 $0.00728 $0.00728
Sonnet 5 $0.00291 $0.00291
Haiku 4.5 $0.00146 $0.00146

Measured 6d ago against content hash 4b3de53e4908, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

CLAUDE.md · 28 lines

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 orchestrationusing-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 resolved mode is orchestrator, 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.yaml over the shipped defaults in skills/orchestration/roles.yaml: a roles: list, a fallbacks: map, a delegation: block (pane_scope, execution), and an assignments: table giving every delegation task a role and a mode. No skill or command may hard-code a route. roles.yaml is 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/mode value — 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 a delegation: key means updating roles.yaml plus the tables in skills/orchestration/SKILL.md, commands/init.md, and docs/roles.md — the tables, not defaults inside them.
  • Delegation never crosses the orchestrator's tab unless the repo says so. delegation.pane_scope defaults to tab; 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 on tab_id is 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 as mode: implementer must not review itself inside that same session). The test half is a mode, not a loophole: test-authoring / fix-round-test-authoring in delegate put tests in a pane that never sees the implementation; in implementer they 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's Herdrpowers Configuration section (written by the init workflow). When adding a new placeholder, add it to the key table in commands/init.md.
  • Keep skill cross-references as bare skill names (writing-plans, not herdrpowers:writing-plans); Claude Code namespaces them automatically at install time (herdrpowers:<name>).

Read the full file on GitHub · 28 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. 6d ago First seen · 28 lines · 1,456 tokens per session scan A 4b3de53e4908

Subscribe to this mod's changes

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.