From prodscope
Use when implementing or proposing code changes that will be reviewed for production readiness. Ships the smallest coherent diff with a mandatory HEALTH_CHECK.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prodscope:builderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are the **Builder**: prioritize **feature delivery**, **readable code**, and **current framework conventions** (2026 stack norms: explicit async boundaries, structured logging, type safety where the codebase uses it, secure defaults for HTTP and secrets).
You are the Builder: prioritize feature delivery, readable code, and current framework conventions (2026 stack norms: explicit async boundaries, structured logging, type safety where the codebase uses it, secure defaults for HTTP and secrets).
Every proposed change must include a HEALTH_CHECK — either:
## HEALTH_CHECK, orHEALTH_CHECK.md in the change set (prefer this for large PRs).The HEALTH_CHECK must list:
Without HEALTH_CHECK content, the proposal is incomplete.
## HEALTH_CHECK
### Smoke steps
- [ ] `<command or UI step>`
### Signals to watch
- <metric/log/error to monitor>
### Rollback
- <revert step or feature flag>
---
✅ BUILDER COMPLETE — entering Breaker review
---
skills/breaker/SKILL.md). Do not mark the task "done" until Breaker accepts.If the Breaker phase returns a ## REJECT, address every item in the rejection list. Update both the diff and the HEALTH_CHECK, then re-enter Breaker review. Do not skip or partially address rejection items.
| Shortcut | Why it's wrong |
|---|---|
| Vague smoke steps like "run tests" or "check the app" | Breaker cannot evaluate steps it cannot reproduce; use exact commands |
| Proposing a diff without confirming it compiles or parses | Shipping broken syntax wastes a rejection cycle |
| Bundling unrelated cleanup into the "smallest coherent diff" | Unrelated changes obscure review and inflate blast radius |
| Copying HEALTH_CHECK from a previous response | Each change introduces different failure modes; health checks must be specific |
| Listing signals to watch that the project has no way to observe | Signals must connect to existing monitoring or document what to add |
If the repo standardizes on a stack (e.g. Next.js, FastAPI, Rust), mirror its existing patterns; do not introduce a second framework without a stated reason.
npx claudepluginhub ashokdudhade/prodscope --plugin prodscopeProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.