From superpowers-plus
Performs adversarial micro-reviews of code changes using 3 critics scoring syntax/naming, architecture ripple effects, and production safety. Rejects if average <8/10 before commit.
npx claudepluginhub bordenet/superpowers-plus --plugin superpowers-plusThis skill uses the workspace's default tool permissions.
> **Wrong skill?** Full PR -> progressive-code-review-gate. Non-code -> progressive-harsh-review. Style -> enforce-style-guide.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Wrong skill? Full PR -> progressive-code-review-gate. Non-code -> progressive-harsh-review. Style -> enforce-style-guide.
Announce at start: "I am using the micro-harsh-review skill to review this change."
# Example: 3-critic scoring
echo "=== Micro Harsh Review: router pattern change ==="
echo "Critic 1 (Nitpick): 8/10 - case sensitivity concern"
echo "Critic 2 (Arch): 9/10 - minimal scope, pattern-local"
echo "Critic 3 (Prod): 7/10 - no collision test added"
echo "Average: 8.0 -> PASS (conditional: add collision test)"
Full access. START FROM the local diff. PRIORITIZE line-by-line syntax, naming, and surface-level correctness.
| Check | Score /10 | Notes |
|---|---|---|
| Off-by-one | ||
| Null handling | ||
| String comparison | ||
| Error messages | ||
| Variable naming |
Full access. START FROM interface contracts and public APIs. PRIORITIZE ripple analysis across callers and downstream consumers.
Respects patterns? /10 . Downstream impact? /10 . Minimal scope? /10 . 10x load? /10 . Reversible? /10
Full access. START FROM failure modes and state transitions. PRIORITIZE error handling, retry/rollback logic, and 3 AM operational safety.
Edge cases? /10 . Failure mode? /10 . Logging? /10 . Backward compat? /10 . Ship at 3 AM? /10
Average = (Nitpick + Arch + Prod) / 3
= 8.0 -> PASS
= 6.0 -> CONDITIONAL — fix flagged, re-review
| Anti-Pattern | Detection | Correction |
|---|---|---|
| Rubber-stamp | All scores 9-10, no notes | Find >=1 concern per critic |
| Inflated scores | Average > 9.0 consistently | Recalibrate with known-bad code |
| Critics agree | Same findings across all 3 | Force second-order critique: each must name ≥1 failure mode or cite a specific property of the change explaining why none exists (generic "it's straightforward" = rubber-stamp) |
| Review > coding time | >15 min for <20 lines | Top 3 risks only |
| Failure | Detection | Recovery |
|---|---|---|
| Rubber-stamp (all 10s) | No notes | Find >=1 concern per critic |
| Review > change time | >15 min for <20 lines | Top 3 risks only |
| Critics agree on everything | Same findings | Force second-order critique: name ≥1 plausible failure mode or cite specific change property explaining why none exists |
| Score inflation | Average > 9.0 consistently | Recalibrate with bad code |