From silver-bullet
Performs SB-owned code review with severity classification, deployment risk scoring, and domain audits. Records findings in REVIEW.md and drives fix loop.
How this skill is triggered — by the user, by Claude, or both
Slash command
/silver-bullet:silver-review <review scope><review scope>The summary Claude sees in its skill listing — used to decide when to auto-load this skill
SB-owned code review records findings and drives the fix loop while preserving
SB-owned code review records findings and drives the fix loop while preserving SB's strict artifact and evidence requirements.
Write or update .planning/REVIEW.md.
SILVER BULLET > REVIEW.silver:domain-audit
for the affected packs and merge the normalized findings into REVIEW.md.After listing findings, assign a deployment risk tier to the overall change set. This score reflects how risky it is to deploy the change to production — independent of whether all review findings are resolved.
| Tier | Label | Criteria |
|---|---|---|
| 1 | LOW | Docs, config, copy, dependency bumps (non-breaking), test additions. No production data path changes. |
| 2 | MEDIUM | New features behind flags, additive API changes, non-critical bug fixes, schema changes with safe migrations. |
| 3 | HIGH | Auth/authz changes, breaking API changes, migrations that modify existing rows, performance-critical paths, payment/billing logic. |
| 4 | CRITICAL | Multi-tenant data isolation changes, security patches for active exploits, production data backfills, irreversible schema drops, changes to authentication secrets or encryption. |
Write in REVIEW.md:
## Deployment Risk
Tier: HIGH (example)
Rationale: <one sentence explaining the highest-risk change>
Recommended deploy steps:
- <e.g., "Deploy behind feature flag">
- <e.g., "Run migration in read-only first">
- <e.g., "Verify rollback plan before deploying">
The deployment risk tier is informational — it does not block ship on its own.
However, CRITICAL tier requires the user to explicitly acknowledge the risk
before silver:ship proceeds.
Follow docs/external-review-policy.md. External second-opinion reviewers may
be used when the user requests them or the change is architecturally significant,
but they feed into REVIEW.md and do not replace this SB review artifact.
Normalize imported findings with docs/evidence-schema.md.
Before completing review, run when available:
bash scripts/validate-evidence-findings.sh
Malformed finding tables surface as delivery warnings (or blocks when strict mode
is enabled). See hooks/lib/evidence-schema-gate.sh.
Review passes only when all BLOCK findings are fixed or explicitly accepted and REVIEW.md reflects the final state.
npx claudepluginhub alo-exp/silver-bullet --plugin silver-bulletGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.