Full review lifecycle — request reviews, handle feedback with technical rigor, and complete branch integration. Use when completing tasks, receiving feedback, or finishing feature branches.
From cmnpx claudepluginhub tody-agent/codymaster --plugin cmThis skill uses the workspace's default tool permissions.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Designs multi-stage CI/CD pipelines with approval gates, security checks, and strategies like canary/blue-green rollouts for zero-downtime deployments and multi-environment promotions.
Full review lifecycle in one skill: Request → Receive → Integrate.
Mandatory:
cm-executionOptional but valuable:
Get git SHAs:
BASE_SHA=$(git rev-parse HEAD~1)
HEAD_SHA=$(git rev-parse HEAD)
Dispatch reviewer subagent with:
Act on feedback:
When receiving feedback — whether from human reviewers, AI reviewers, or code review subagents.
1. READ feedback completely before responding
2. UNDERSTAND the technical reasoning
3. VERIFY if the feedback is technically correct
4. RESPOND with evidence, not agreement
| Feedback Type | Response |
|---|---|
| Technically correct | Fix it. Thank reviewer. |
| Unclear intent | Ask for clarification with specific questions |
| Technically questionable | Challenge with evidence (code, tests, docs) |
| Stylistic preference | Discuss trade-offs, defer to team convention |
❌ "Good catch! Fixed." (without verifying it's actually a problem)
✅ "I verified this: [evidence]. The suggestion is correct because [reason]. Fixed."
✅ "I investigated this: [evidence]. The current code is correct because [reason]."
When implementation is complete and all tests pass.
Verify current state:
npm run test:gate # All tests must pass
git status # Working tree should be clean
Present options to user:
| Option | When | Command |
|---|---|---|
| Merge to main | Feature ready | git checkout main && git merge feature-branch |
| Create PR | Needs team review | git push origin feature-branch |
| Keep working | More tasks remain | Continue on branch |
| Cleanup only | Abandoned/merged | git worktree remove path |
Execute chosen option
Cleanup:
cm-git-worktreescm-identity-guard before git pushAfter processing review feedback, ALWAYS update .cm/CONTINUITY.md:
[Decision]: [Rationale] — scope: [global|module:{name}]Anti-duplicate: If similar learning exists, reinforce it instead of creating new.
Token savings: Future code reviews in same project avoid repeating the same feedback. Reviewer patterns become accumulated knowledge.
| Skill | Relationship |
|---|---|
cm-execution | Reviews after each task in execution |
cm-quality-gate | Tests must pass before finishing branch |
cm-identity-guard | Before git push |
cm-git-worktrees | Cleanup worktree after completion |
Review early. Verify feedback. Ship with evidence, not hope.