From claude-commands
Standardizes br bead follow-ups for PR/code reviews with exact implementation instructions, API/function signatures, and acceptance criteria.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-commands:bead-followup-templatesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user asks to make or update beads for follow-ups, PR review findings, code-standard violations, blockers, safe fixes, `/nextsteps` handoff items, post-merge cleanup, evidence gaps, PR comments, or implementation handoff.
Use this skill when the user asks to make or update beads for follow-ups, PR review findings, code-standard violations, blockers, safe fixes, /nextsteps handoff items, post-merge cleanup, evidence gaps, PR comments, or implementation handoff.
Do not use this skill for ordinary bead listing or closing unless the bead body is being materially updated with implementation instructions.
A follow-up bead must be implementable without replaying the whole review. Include the concrete problem, exact evidence, exact intended code shape, and objective acceptance checks.
br --no-auto-flush.bd.--external-ref collisions: if multiple beads come from the same PR, put the PR URL in the description instead of using the PR URL as external_ref.Put these sections in the bead description/body:
Context:
- PR:
- Current head or commit URL:
- Review/comment/thread URL:
- Evidence path or log:
- Finding:
- File/line evidence:
- Why it matters:
- Staleness note: signatures and file lines verified at <sha>; re-read before implementation.
Implementation:
- Files:
- Current API/function signatures copied from live code:
```python
def public_function_name(
required_arg: Mapping[str, Any],
*,
option: str | None = None,
) -> bool:
"""One-sentence contract."""
result = module.public_function_name(source_state, option=selected_id)
Acceptance criteria:
## Review Follow-up Checklist
For each finding, record:
- Severity: blocker, important safe fix, risky design fix, or evidence-only.
- Source: PR URL, exact head SHA or commit URL, review/comment/thread URL, evidence path/log, and file/line references.
- Verified problem: one concrete paragraph describing the bug, gap, or standards violation.
- Ownership boundary: the module that should own the decision or invariant.
- Safe path: the smallest standards-compliant change that achieves the goal.
- Forbidden path: patterns to avoid, such as private helper calls, prompt prose in Python, keyword/regex semantic routing, or level/XP inference in the wrong layer.
- Verification: exact `rg`, test, lint, or evidence command expected to prove the fix.
- Staleness note: signatures and file lines were verified at a specific SHA and must be re-read before implementation.
## API Design Rules
- Read the current code before writing the bead. Do not invent function signatures from memory.
- Define public APIs in the owning module before telling future agents to call them.
- Include the actual function signature and a short docstring contract.
- Include at least one call-site example.
- For removals or replacements, include the exact `rg` check proving old usage is gone.
- For `/code-standards` work, name the violated rule and the compliant alternative.
- For level-up work, respect the ZFC level-up file boundaries and avoid deriving primary level-up availability from XP thresholds.
## Acceptance Criteria Rules
Acceptance criteria must be objective. Prefer checks like:
```bash
rg "old_private_helper|forbidden_pattern" $PROJECT_ROOT/
../vpython path/to/test.py
For production changes under $PROJECT_ROOT/**, require /es-appropriate evidence. Unit tests can support the bead but cannot be the only runtime proof when the behavior touches production LLM, persistence, rewards, streaming, API, or UI paths.
npx claudepluginhub jleechanorg/claude-commands --plugin claude-commandsImplements a single bead through phases 1-5: quick start, implementation, review, fix, and learning. Includes built-in review and fix loops.
Enforces PR descriptions to include a full GitHub URL to a governing roadmap/design doc and a `br` bead ID for production code changes under CI gates or ZFC/level-up behavior.
Creates fix/feature branches from upstream/main for beads/gastown forks: selects bead via bd, implements changes, submits upstream PR, cherry-picks to fork.