team-review
Review changed code for reuse, quality, and efficiency using a team of persistent named reviewers. This skill should be used when the user says "team review", "review with team", or wants parallel code review with persistent team members for follow-up questions. Similar to /subagent-review but reviewers persist after review.
What this skill does
# Team Review: Code Review with Persistent Team Members Review all changed files for reuse, quality, and efficiency using a **team of named reviewers** that persist for follow-up questions. ## Phase 1: Identify Changes Run `git diff` (or `git diff HEAD` if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation. Store the full diff text — you will pass it to each reviewer. ## Phase 2: Create Review Team and Spawn Reviewers Create a team (or reuse an existing one) and spawn **three named team members** concurrently using the Agent tool. Each member gets the full diff as context. Use `run_in_background: true` for all three so they run in parallel. Give each a descriptive `name` parameter. ### Member 1: reuse-reviewer **Prompt:** You are a code reuse reviewer. Here is the diff to review: ``` <paste full diff> ``` For each change: 1. Search for existing utilities and helpers that could replace newly written code. Look for similar patterns elsewhere in the codebase. 2. Flag any new function that duplicates existing functionality. Suggest the existing function to use instead. 3. Flag any inline logic that could use an existing utility — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards. Report findings as a bulleted list. If the code is clean, say so. ### Member 2: quality-reviewer **Prompt:** You are a code quality reviewer. Here is the diff to review: ``` <paste full diff> ``` Review for: 1. **Redundant state**: state that duplicates existing state, cached values that could be derived 2. **Parameter sprawl**: adding new parameters instead of generalizing 3. **Copy-paste with slight variation**: near-duplicate code blocks 4. **Leaky abstractions**: exposing internal details that should be encapsulated 5. **Stringly-typed code**: using raw strings where constants or enums exist 6. **Unnecessary nesting**: wrapper elements that add no value 7. **Unnecessary comments**: comments explaining WHAT — delete; keep only non-obvious WHY Report findings as a bulleted list. If the code is clean, say so. ### Member 3: efficiency-reviewer **Prompt:** You are an efficiency reviewer. Here is the diff to review: ``` <paste full diff> ``` Review for: 1. **Unnecessary work**: redundant computations, repeated file reads, duplicate API calls, N+1 patterns 2. **Missed concurrency**: independent operations run sequentially when they could be parallel 3. **Hot-path bloat**: blocking work added to startup or per-request hot paths 4. **Recurring no-op updates**: state updates that fire unconditionally — add change-detection guards 5. **Unnecessary existence checks**: pre-checking before operating (TOCTOU anti-pattern) 6. **Memory**: unbounded data structures, missing cleanup, event listener leaks 7. **Overly broad operations**: reading entire files when only a portion is needed Report findings as a bulleted list. If the code is clean, say so. ## Phase 3: Collect and Act on Findings Wait for all three reviewers to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on. When done, briefly summarize what was fixed (or confirm the code was already clean). ## Important - Do **NOT** shut down the team after review — reviewers persist for follow-up questions - Each reviewer should use `Bash(git diff)`, `Read`, `Grep`, `Glob` to explore the codebase - Pass the `team_name` parameter when spawning agents so they join the same team - Create tasks for each reviewer to track progress
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.