Use when implementation is complete and you need to verify work and decide how to integrate — covers verification-before-completion and branch finishing
From superpower-routernpx claudepluginhub charliechan53/superpower-router --plugin superpower-routerThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Analyzes BMad project state from catalog CSV, configs, artifacts, and query to recommend next skills or answer questions. Useful for help requests, 'what next', or starting BMad.
Verify work is actually done, then present integration options. Combines verification-before-completion and finishing-a-development-branch.
Evidence before assertions. Always.
| Check | Command | Must Pass |
|---|---|---|
| Tests pass | Run project test suite | All green |
| Linting clean | Run project linter | No errors |
| Build succeeds | Run project build | No errors |
| Changes committed | git status | Clean working tree |
Run these commands and confirm output. Do NOT claim "tests pass" without actually running them.
After verification passes, present these options:
| Option | When | Command |
|---|---|---|
| Merge to main | Simple feature, sole developer | git checkout main && git merge [branch] |
| Create PR | Team project, needs review | gh pr create --title "..." --body "..." |
| Keep branch | Not ready to integrate yet | Just inform user |
| Squash merge | Many small commits to clean up | git checkout main && git merge --squash [branch] |
gh pr create --title "short title" --body "$(cat <<'PREOF'
## Summary
- [bullet points]
## Test plan
- [ ] Tests pass
- [ ] Manual verification done
PREOF
)"