Reviewing & Shipping
Reviewing & Shipping
Section titled “Reviewing & Shipping”Claude Kit provides structured workflows for code review, committing, creating PRs, and finishing development branches.
Code Review
Section titled “Code Review”Requesting Reviews
Section titled “Requesting Reviews”Triggers on: completing features, before PRs, before merging
The requesting-code-review skill prepares code for review with:
- Clear scope of what changed and why
- Areas of concern flagged for reviewers
- Context on architectural decisions
Receiving Reviews
Section titled “Receiving Reviews”Triggers on: review feedback, PR comments, review rejections
The receiving-code-review skill processes feedback systematically:
- Categorize — Critical vs. important vs. minor
- Prioritize — Fix critical issues first
- Implement — Address feedback with evidence
- Re-request — Summary of changes made
Review Agents
Section titled “Review Agents”| Agent | Focus |
|---|---|
code-reviewer | Quality, security, performance, maintainability |
security-auditor | OWASP compliance, vulnerability detection |
Git Workflows
Section titled “Git Workflows”Triggers on: “commit”, “push”, “PR”, “ship”, “changelog”
The git-workflows skill enforces:
Conventional Commits
Section titled “Conventional Commits”type(scope): subject
feat(auth): add JWT token refresh endpointfix(cart): handle empty cart total calculationdocs(api): update OpenAPI spec for v2 endpointsTypes: feat, fix, docs, style, refactor, test, chore
Branch Naming
Section titled “Branch Naming”feature/AUTH-123-jwt-refreshfix/CART-456-empty-totalhotfix/critical-payment-bugchore/upgrade-dependenciesPR Creation
Section titled “PR Creation”Claude Kit generates well-structured PRs:
## Summary- Added JWT token refresh endpoint- Tokens auto-refresh 5 minutes before expiry
## Test Plan- [ ] Unit tests for token refresh logic- [ ] Integration test for refresh endpoint- [ ] Manual test: login → wait → verify auto-refreshFinishing a Branch
Section titled “Finishing a Branch”Triggers on: “ship it”, “ready to merge”, “branch is done”, “create a PR”
The finishing-a-development-branch skill runs a completion checklist:
- Verify — All tests pass, build succeeds
- Review — Run final code review
- Options — Present merge strategies:
- Create PR for team review
- Merge directly (if authorized)
- Clean up worktree (if using git worktrees)
Git Worktrees
Section titled “Git Worktrees”Triggers on: “worktree”, “isolated branch”, “parallel branches”
The using-git-worktrees skill creates isolated working copies for:
- Feature work that shouldn’t affect the main workspace
- Parallel development on multiple branches
- Safe experimentation without risk to in-progress work
main workspace: d:/project/ (main branch)feature worktree: d:/project-feature/ (feature/auth branch)hotfix worktree: d:/project-hotfix/ (hotfix/payment branch)Changelog Generation
Section titled “Changelog Generation”The git-workflows skill generates changelogs from conventional commits:
## [1.2.0] - 2026-04-19
### Added- JWT token refresh endpoint (AUTH-123)- Auto-refresh 5 minutes before expiry
### Fixed- Empty cart total calculation (CART-456)Supporting Skills
Section titled “Supporting Skills”| Skill | When It Helps |
|---|---|
documentation | Generating/updating docs after code changes |
refactoring | Improving code structure before shipping |
writing-concisely | Token-efficient mode for high-volume review sessions |
Supporting Agents
Section titled “Supporting Agents”| Agent | Role |
|---|---|
git-manager | Stage, commit, push with conventional commits |
code-reviewer | Comprehensive code review |
copywriter | Release notes, changelogs, PR descriptions |
docs-manager | Keep documentation in sync with code |
Related Pages
Section titled “Related Pages”- Planning & Building — Brainstorm, plan, execute
- Testing & Debugging — TDD and debugging workflows
- Skills Reference — All 44 skills