Create Superpowers Lite fork

This commit is contained in:
mujing
2026-05-12 16:05:03 +08:00
parent f2cbfbefeb
commit dd2eb8b351
33 changed files with 221 additions and 399 deletions

View File

@@ -1,6 +1,6 @@
---
name: requesting-code-review
description: Use when completing tasks, implementing major features, or before merging to verify work meets requirements
description: Manual-only skill. Activate only after an explicit user request for superpowers-lite:requesting-code-review.
---
# Requesting Code Review
@@ -12,7 +12,7 @@ Dispatch a code reviewer subagent to catch issues before they cascade. The revie
## When to Request Review
**Mandatory:**
- After each task in subagent-driven development
- After each phase in subagent-driven development
- After completing major feature
- Before merge to main
@@ -48,7 +48,7 @@ Use Task tool with `general-purpose` type, fill template at `code-reviewer.md`
## Example
```
[Just completed Task 2: Add verification function]
[Just completed Phase 2: Add verification function and CLI wiring]
You: Let me request code review before proceeding.
@@ -56,8 +56,8 @@ BASE_SHA=$(git log --oneline | grep "Task 1" | head -1 | awk '{print $1}')
HEAD_SHA=$(git rev-parse HEAD)
[Dispatch code reviewer subagent]
DESCRIPTION: Added verifyIndex() and repairIndex() with 4 issue types
PLAN_OR_REQUIREMENTS: Task 2 from docs/superpowers/plans/deployment-plan.md
DESCRIPTION: Added verifyIndex(), repairIndex(), and CLI wiring
PLAN_OR_REQUIREMENTS: Phase 2 from .superpowers-lite/plans/deployment-plan.md
BASE_SHA: a7981ec
HEAD_SHA: 3df7661
@@ -75,7 +75,7 @@ You: [Fix progress indicators]
## Integration with Workflows
**Subagent-Driven Development:**
- Review after EACH task
- Review after each phase, which may contain one or more related tasks
- Catch issues before they compound
- Fix before moving to next task