Skip to content

Reviewing & Shipping

Claude Kit provides structured workflows for code review, committing, creating PRs, and finishing development branches.

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

Triggers on: review feedback, PR comments, review rejections

The receiving-code-review skill processes feedback systematically:

  1. Categorize — Critical vs. important vs. minor
  2. Prioritize — Fix critical issues first
  3. Implement — Address feedback with evidence
  4. Re-request — Summary of changes made
AgentFocus
code-reviewerQuality, security, performance, maintainability
security-auditorOWASP compliance, vulnerability detection

Triggers on: “commit”, “push”, “PR”, “ship”, “changelog”

The git-workflows skill enforces:

type(scope): subject
feat(auth): add JWT token refresh endpoint
fix(cart): handle empty cart total calculation
docs(api): update OpenAPI spec for v2 endpoints

Types: feat, fix, docs, style, refactor, test, chore

feature/AUTH-123-jwt-refresh
fix/CART-456-empty-total
hotfix/critical-payment-bug
chore/upgrade-dependencies

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-refresh

Triggers on: “ship it”, “ready to merge”, “branch is done”, “create a PR”

The finishing-a-development-branch skill runs a completion checklist:

  1. Verify — All tests pass, build succeeds
  2. Review — Run final code review
  3. Options — Present merge strategies:
    • Create PR for team review
    • Merge directly (if authorized)
    • Clean up worktree (if using 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)

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)
SkillWhen It Helps
documentationGenerating/updating docs after code changes
refactoringImproving code structure before shipping
writing-conciselyToken-efficient mode for high-volume review sessions
AgentRole
git-managerStage, commit, push with conventional commits
code-reviewerComprehensive code review
copywriterRelease notes, changelogs, PR descriptions
docs-managerKeep documentation in sync with code