skills/cygnusfear/comprehensive-code-review/SKILL.md
This skill should be used when reviewing pull requests, performing comprehensive code review, analyzing code changes before merge, or when the user asks for thorough/ultra-critical code review. Performs EXTREMELY CRITICAL 6-pass analysis identifying runtime failures, code consistency issues, architectural problems, environment compatibility risks, and verification strategies. Posts structured review as GitHub PR comment. Use when user asks to "review PR", "review this code", "review changes", "check this PR", "analyze PR", "post review", or for Phase 3 of devflow. Supports parallel review mode with multiplier (code-review-3, code-review 6X) for consensus-based reviews. This is an ultra-critical reviewer that does not let things slip and desires only perfection.
npx skillsauth add aiskillstore/marketplace comprehensive-code-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ultra-critical, multi-pass code review that identifies issues, suggests improvements, and provides actionable feedback to prevent runtime failures and improve code quality.
Core Attitude: You are an EXTREMELY CRITICAL AND SHARP code reviewer. YOU DO NOT LET THINGS SLIP, YOU DESIRE ONLY PERFECTION.
Every code review MUST be posted to GitHub as a PR comment. This is NOT optional.
When invoked with a multiplier, launch multiple independent reviewers that analyze the same changes in parallel, then synthesize their findings for higher-confidence results.
Recognize these invocation patterns:
| Pattern | Meaning |
|---------|---------|
| code-review-3 | 3 parallel reviewers |
| code-review-6 | 6 parallel reviewers |
| code-review 3X | 3 parallel reviewers |
| code-review 6X | 6 parallel reviewers |
| review with 4 reviewers | 4 parallel reviewers |
| parallel review N | N parallel reviewers |
Default (no multiplier): Single reviewer, standard mode.
# Create timestamped directory
REVIEW_DIR=".reviews/$(date +%Y-%m-%d-%H%M%S)"
mkdir -p "$REVIEW_DIR"
Before launching reviewers, gather ALL context that will be shared:
# Get PR details (if applicable)
gh pr view <number> --json number,title,body,additions,deletions,files > context.json
gh pr diff <number> > diff.txt
# Or for local changes
git diff main...HEAD > diff.txt
git diff --name-only main...HEAD > changed-files.txt
Dispatch ALL reviewers simultaneously in a single message with multiple Task calls:
Task(
subagent_type: "general-purpose",
model: "opus",
prompt: <reviewer prompt for reviewer #1>
)
Task(
subagent_type: "general-purpose",
model: "opus",
prompt: <reviewer prompt for reviewer #2>
)
Task(
subagent_type: "general-purpose",
model: "opus",
prompt: <reviewer prompt for reviewer #3>
)
// ... etc for N reviewers
CRITICAL: All reviewers receive EXACTLY THE SAME PROMPT. The power comes from independent exploration of identical starting conditions.
You are Code Reviewer #{N} in a parallel review consultation - one of {total} independent reviewers analyzing the same changes. Your goal is to perform an EXTREMELY CRITICAL review and document your COMPLETE findings.
## Your Mission
PR/CHANGES:
{PR title and description or commit messages}
DIFF:
{the full diff content}
CHANGED FILES:
{list of changed files}
## Your Process
Execute the full 6-pass code review methodology:
### Pass 1: Technical Issue Identification
Scan for runtime/compile-time failures: imports, schemas, types, null handling, async errors.
### Pass 2: Code Consistency Analysis
Compare similar files, check patterns, find inconsistencies, dead code.
### Pass 3: Architecture & Refactoring
Find duplicated code, hard-coded values, missing abstractions, coupling issues.
### Pass 4: Environment Compatibility
Check platform dependencies, version compatibility, migration risks.
### Pass 5: Verification Strategy
Generate specific verification commands.
### Pass 6: Context Synthesis
Compile Task Summary with full context.
## Output Requirements
Write your COMPLETE review to:
`.reviews/{timestamp}/{N}-review.md`
Your review MUST include these 5 sections:
### 1. Suggest Fixing
Critical issues requiring immediate attention. Include:
- Priority level (Critical/High/Medium)
- Specific file paths and line numbers
- Clear explanation of the failure mode
- Concrete fix instructions
### 2. Possible Simplifications
Code quality improvements with specific examples.
### 3. Consider Asking User
Questions needing developer clarification.
### 4. Suggested Checks
Verification commands to validate fixes.
### 5. Task Summary
- What changes were made
- Root cause analysis
- Key discoveries
## Critical Rules
- BE EXTREMELY CRITICAL - desire only perfection
- NEVER USE PERCENTAGES - use absolute counts and concrete numbers
- USE MERMAID DIAGRAMS - visualize data flow, dependencies, state changes
- CITE SPECIFIC FILES AND LINE NUMBERS
- DOCUMENT ALL FINDINGS - even uncertain ones
- Work INDEPENDENTLY - do not try to coordinate with other reviewers
Once all N reviewers have written their individual reviews, launch a synthesis task:
Task(
subagent_type: "general-purpose",
model: "opus",
prompt: <synthesis prompt>
)
You are the Synthesis Reviewer for a parallel code review. {N} independent reviewers analyzed the same changes. Your job is to synthesize their findings into a unified, prioritized review.
## Your Mission
Read all reviewer reports in `.reviews/{timestamp}/` (files named `1-review.md`, `2-review.md`, etc.) and create a synthesis.
## Synthesis Process
### Phase 1: Read All Reviews
Read each reviewer's full report. Track:
- Issues found by multiple reviewers (CONVERGENT)
- Issues found by only one reviewer (DIVERGENT)
- Different priorities assigned to same issues
### Phase 2: Analyze Consensus
**Convergent Findings**: High confidence - multiple independent reviewers found the same issue.
- 3+ reviewers = Critical Priority
- 2 reviewers = High Priority
**Divergent Findings**: Single reviewer discoveries. Evaluate validity - may be:
- Unique insight others missed
- False positive
- Edge case worth noting
### Phase 3: Create Unified Review
Write to `.reviews/{timestamp}/review-merged.md`:
# Parallel Code Review Synthesis
**Reviewers**: {N}
**Date**: {timestamp}
**PR/Changes**: {title}
## Consensus Summary
```mermaid
pie title Finding Distribution
"Convergent (High Confidence)" : X
"Divergent (Single Reviewer)" : Y
Issues identified by multiple independent reviewers:
| Issue | Reviewers | Priority | Files Affected | |-------|-----------|----------|----------------| | ... | 3/3 | Critical | ... | | ... | 2/3 | High | ... |
[For each convergent finding, synthesize the combined analysis]
Unique perspectives from individual reviewers:
[Unique findings]
[Unique findings]
Prioritized by consensus:
# Verification commands from all reviewers, deduplicated
| Reviewer | Critical | High | Medium | Unique Findings | |----------|----------|------|--------|-----------------| | #1 | X | Y | Z | W | | #2 | ... | ... | ... | ... |
Parallel review synthesis of {N} independent reviewers
### Directory Structure
.reviews/ 2025-12-09-143022/ 1-review.md # Reviewer 1's independent review 2-review.md # Reviewer 2's independent review 3-review.md # Reviewer 3's independent review review-merged.md # Synthesized review
### Example Parallel Invocation
User: `code-review-3` (or `code-review 3X`)
1. Create `.reviews/2025-12-09-143022/`
2. Launch 3 reviewers in parallel with identical prompts
3. Each independently executes 6-pass methodology
4. Each writes to `1-review.md`, `2-review.md`, `3-review.md`
5. Synthesis task reads all three and creates `review-merged.md`
6. Post synthesized review to GitHub PR
---
## Review Output Structure
Generate a review with these 6 sections:
### 1. Change Explanation
**ALWAYS START HERE** - Before critiquing, explain what the changes actually do.
### 2. Suggest Fixing
Critical issues that could cause runtime or compile-time failures and must be addressed immediately.
### 3. Possible Simplifications
Code quality improvements and refactoring opportunities that would make the codebase more maintainable.
### 4. Consider Asking User
Environment, compatibility, or context questions that need clarification from the developer.
### 5. Suggested Checks
Specific verification commands to validate that fixes work correctly (only suggest checks not already performed).
### 6. Task Summary
Comprehensive context including user's original request, key findings, changes made, and decision rationale.
---
## Pre-Analysis: Gather Context
Before starting the 6-pass analysis, gather all necessary context.
### Step 1: Identify Review Target
Determine what to review:
```bash
# If reviewing a PR
gh pr view <number> --json number,title,body,additions,deletions,files
gh pr diff <number>
gh pr diff <number> --name-only
# If reviewing local changes
git diff HEAD
git diff --cached
git status
git diff --name-only HEAD
Gather information about:
Check for:
.plans/MANDATORY: Check that PR properly links to related issues.
# Check for closing issue references
gh pr view <number> --json closingIssuesReferences --jq '.closingIssuesReferences[].number'
If no issues linked:
Closes #X or Fixes #XAdd to review if missing:
## ❌ MISSING ISSUE LINKS
PR does not link to any issues. Add closing keywords to PR body:
- `Closes #X - [description]`
- `Fixes #Y - [description]`
Issues must be linked for proper tracking and auto-close on merge.
Document all changed files for systematic review.
BEFORE critiquing, UNDERSTAND and DOCUMENT what the changes do.
For each changed file, document:
### Changed Files
| File | Change Type | Description |
|------|-------------|-------------|
| `src/api/handler.ts` | Modified | Added retry logic to API calls |
| `src/utils/retry.ts` | Added | New utility for exponential backoff |
| `src/config/defaults.ts` | Modified | Added retry configuration options |
Document the effects:
flowchart TD
A[Code Change] --> B[Direct Effects]
A --> C[Side Effects]
B --> D[Intended Behavior]
C --> E[Potential Issues]
C --> F[Performance Impact]
C --> G[Dependency Changes]
Visualize the blast radius:
graph LR
subgraph Changed
A[Modified Code]
end
subgraph Direct Dependencies
B[Component 1]
C[Component 2]
end
subgraph Indirect Dependencies
D[Service A]
E[Service B]
end
A --> B
A --> C
B --> D
C --> E
Show state transitions when relevant:
stateDiagram-v2
state "Before Change" as before {
[*] --> OldBehavior
OldBehavior --> OldResult
}
state "After Change" as after {
[*] --> NewBehavior
NewBehavior --> NewResult
NewBehavior --> RetryPath: on failure
RetryPath --> NewResult
}
ALL diagrams in reviews MUST use Mermaid syntax.
| Situation | Diagram Type |
|-----------|--------------|
| Explaining data flow | flowchart |
| Showing component relationships | graph |
| Illustrating state changes | stateDiagram-v2 |
| Describing sequences/interactions | sequenceDiagram |
| Comparing before/after | Side-by-side stateDiagram |
| Showing dependencies | graph TD or graph LR |
| Distribution/proportions | pie (for parallel review summaries) |
flowchart LR
Input[User Input] --> Validate{Validation}
Validate -->|Valid| Process[Process Data]
Validate -->|Invalid| Error[Error Response]
Process --> Store[(Database)]
Process --> Response[API Response]
graph TD
subgraph Frontend
UI[React Components]
State[Redux Store]
end
subgraph Backend
API[Express Server]
DB[(PostgreSQL)]
end
UI --> State
State --> API
API --> DB
sequenceDiagram
participant C as Client
participant S as Server
participant D as Database
C->>S: Request
S->>D: Query
D-->>S: Results
S-->>C: Response
graph TD
A[Changed Module] --> B[Module B]
A --> C[Module C]
B --> D[Shared Utility]
C --> D
D --> E[External Library]
style A fill:#ff6b6b
style B fill:#ffd93d
style C fill:#ffd93d
CRITICAL: Before analyzing code quality, verify that 100% of the original issue/task/ticket requirements are implemented.
Locate the original requirements from:
gh issue view <number>).plans/Create exhaustive checklist of EVERY requirement:
For EACH requirement extracted:
Requirements Coverage = (Implemented / Total Requirements) × 100%
Anything less than 100% = AUTOMATIC REQUEST CHANGES
## Issue/Task Coverage Analysis
**Source**: [Issue #X / PR description / Plan file]
**Total Requirements**: X
**Implemented**: Y
**Coverage**: Z%
### Requirements Checklist
| # | Requirement | Status | Evidence |
|---|-------------|--------|----------|
| 1 | [requirement text] | ✅ Implemented | `file.ts:45` |
| 2 | [requirement text] | ❌ NOT IMPLEMENTED | Missing |
| 3 | [requirement text] | ⚠️ Partial | `file.ts:80` - missing error case |
### Coverage Verdict
- [ ] 100% of requirements implemented
- **If NO**: REQUESTING CHANGES - implementation is incomplete
❌ WRONG:
"Most requirements are implemented. Approved with note to finish the rest."
"Core functionality works, edge cases can be added later."
"8 of 10 requirements done - good enough for now."
✅ CORRECT:
"REQUESTING CHANGES. 2 of 10 requirements not implemented:
- Requirement X: [specific missing functionality]
- Requirement Y: [specific missing functionality]
Implementation cannot be approved until 100% complete."
Scan for issues that will cause runtime or compile-time failures.
- [Specific Issue]: [Clear explanation of why it fails]
- Suggest [specific action] to fix [exact problem]
- Priority: [Critical/High/Medium]
flowchart TD
Issue[Issue Found] --> Impact{Impact Analysis}
Impact --> Critical[Critical: System Crash]
Impact --> High[High: Feature Broken]
Impact --> Medium[Medium: Edge Case]
Compare similar files for implementation patterns.
[File/Pattern] uses [approach A] while [other files] use [approach B].
- Either standardize on [recommended approach] or [explain why different]
- Affects: [list specific files]
graph LR
subgraph Consistent Pattern
A1[File A] --> P1[Pattern X]
A2[File B] --> P1
A3[File C] --> P1
end
subgraph Inconsistent
A4[File D] --> P2[Pattern Y]
end
P2 -.->|Should use| P1
# Find similar patterns
grep -r "pattern" src/ --include="*.ts"
# Check for inconsistent imports
grep -r "from.*modulename" src/
# Find unused exports
grep -r "export.*functionName" src/
Identify opportunities for better code structure.
You duplicate [specific pattern] in [locations].
- Consider creating [specific helper/abstraction] to [benefit]
- Example implementation: [brief code sketch if helpful]
graph TD
subgraph Current
A[Module] --> B[Duplicated Logic]
C[Module] --> B2[Duplicated Logic]
D[Module] --> B3[Duplicated Logic]
end
subgraph Proposed
A2[Module] --> U[Shared Utility]
C2[Module] --> U
D2[Module] --> U
end
Check for platform-specific code or dependencies.
The change from [old approach] to [new approach] [compatibility concern].
- If [specific environment] is used, confirm [specific compatibility question]
- Alternative: [safer approach if needed]
graph TD
Code[Changed Code] --> Check{Environment Check}
Check --> Node[Node.js v18+?]
Check --> Browser[Browser Support?]
Check --> DB[Database Version?]
Node --> OK1[Compatible]
Browser --> OK2[Compatible]
DB --> WARN[Needs v14+]
Generate grep/search commands to verify fixes.
grep -R "[pattern]" [location] # Verify [what you're verifying]
[command] # [what it validates]
Compile the Task Summary with full context.
Brief overview of what the review covered.
CRITICAL RULE: Reviews must NEVER use percentages. Always use absolute counts, concrete numbers, or qualitative assessments.
| DO NOT USE | USE INSTEAD | |------------|-------------| | "40% performance improvement" | "Response time dropped from 200ms to 120ms" | | "80% of tests pass" | "18 of 22 tests pass (4 failing)" | | "Reduces complexity by 25%" | "Cyclomatic complexity reduced from 12 to 9" | | "50% less code" | "Reduced from 120 lines to 60 lines" | | "90% code coverage" | "847 of 940 lines covered (93 uncovered)" |
Rationale: Percentages obscure actual impact. "50% faster" could mean 100ms to 50ms (trivial) or 10s to 5s (significant). Concrete numbers enable informed decisions.
When analyzing code changes, follow this sequence:
Error: "[specific error message]"
-> Root cause: [technical explanation]
-> Fix applied: [what was changed]
-> Remaining risk: [what could still break]
-> Verification: [how to confirm it works]
Files A, B, C use [pattern X]
File D uses [pattern Y]
-> Standardize on [recommended pattern] because [technical reason]
-> Update [specific files] to [specific changes]
Code duplicated in [locations] for [functionality]
-> Abstract to [helper/utility] because [benefits]
-> Implementation: [brief example]
-> Migration: [step-by-step approach]
## Change Explanation
### What Changed
The PR modifies 3 files to add retry logic to API calls:
- `src/api/handler.ts`: Added try/catch with retry loop (lines 45-72)
- `src/utils/retry.ts`: New file with exponential backoff utility
- `src/config/defaults.ts`: Added retry configuration constants
### Consequences
```mermaid
flowchart TD
A[API Call Fails] --> B{Retry Logic}
B -->|Attempt 1-3| C[Exponential Backoff]
C --> D{Success?}
D -->|Yes| E[Return Response]
D -->|No| F[Final Failure]
F --> G[Error Propagation]
Direct Effects:
Side Effects:
Components affected: API Gateway, all downstream services
Blast radius: Any code calling apiHandler.request()
---
## Execution Process
### Step 1: Gather Context
```bash
# Get PR details
gh pr view <number> --json number,title,body,headRefName,baseRefName
# Get changed files
gh pr diff <number> --name-only
# Get full diff
gh pr diff <number>
If no PR exists, use git diff:
git diff main...HEAD
git diff --name-only main...HEAD
For each changed file:
For Standard Mode (single reviewer):
For Parallel Mode (with multiplier):
Format findings into the 6-section structure:
CRITICAL: You MUST ALWAYS post the review to GitHub as a PR comment. This is NOT optional. If no PR number is provided, ASK for it before proceeding. A review that is not posted to GitHub is an incomplete review and the task has FAILED.
# Post review comment
gh pr comment <PR_NUMBER> --body "$(cat <<'EOF'
## Code Review
### 1. Change Explanation
[What changes were made, consequences, system impact - with Mermaid diagrams]
### 2. Suggest Fixing
[Critical issues requiring immediate attention]
### 3. Possible Simplifications
[Code quality improvements]
### 4. Consider Asking User
[Questions needing clarification]
### 5. Suggested Checks
[Verification commands]
### 6. Task Summary
[Comprehensive context]
---
*Comprehensive 6-pass code review*
EOF
)"
For formal PR review actions:
# Request changes (blocking)
gh pr review <PR_NUMBER> --request-changes --body "[summary of required changes]"
# Approve PR
gh pr review <PR_NUMBER> --approve --body "[summary of review - approved]"
# Comment only (non-blocking)
gh pr review <PR_NUMBER> --comment --body "[review comments]"
Write review to .reviews/ directory:
Standard Mode:
.reviews/pr-<number>-review-[timestamp].md
Parallel Mode:
.reviews/[YYYY-MM-DD-HHMMSS]/
1-review.md
2-review.md
...
review-merged.md
This review is Phase 3 of the devflow process:
| Pass | Focus | |------|-------| | 0 | Change Explanation | | 1 | Runtime/compile failures | | 2 | Patterns, imports, dead code | | 3 | Abstractions, hard-coded values | | 4 | Environment compatibility | | 5 | Verification commands | | 6 | Context synthesis |
When encountering uncertain issues:
Note questions in the "Consider Asking User" section for issues requiring developer clarification.
MANDATORY: Before approving ANY PR, perform a final 100% coverage verification using LINE-BY-LINE requirement checking.
# Get ALL checklist items from issue
gh issue view <number> --json body --jq '.body' | grep -E "^\- \["
# Also check for requirements in prose (not just checkboxes)
gh issue view <number>
Extract EVERY requirement - don't rely on memory, actually parse the issue.
MANDATORY FORMAT - You MUST create this exact table structure:
## Issue #X - Full Requirements Check
| Requirement | PR Status | Evidence |
|-------------|-----------|----------|
| [exact text from issue] | ✅ | `file.ts:line` - [what implements it] |
| [exact text from issue] | ❌ MISSING | Not found in PR |
| [exact text from issue] | ⚠️ PARTIAL | `file.ts:line` - [what's missing] |
| [exact text from issue] | ⚠️ MANUAL | Requires [runtime/editor/external tool] |
Status meanings:
Implemented (✅ only) / Total Requirements = Coverage %
Be honest:
After the table, explicitly state:
**Honest Assessment**:
- Coverage: X% (Y of Z requirements fully implemented)
- Missing: [list specific missing items]
- Partial: [list partial items and what's missing]
- Manual verification needed: [list items requiring runtime/editor]
| Coverage | Verdict | |----------|---------| | 100% | ✅ May approve (if also 10/10 quality) | | < 100% | ❌ MUST REQUEST CHANGES - send back to implementation |
DO NOT APPROVE. Post review requesting changes with the full table:
## ❌ FINAL COVERAGE CHECK FAILED
**Issue**: #X
**Requirements**: Y total
**Fully Implemented**: Z
**Coverage**: W% (MUST BE 100%)
### Line-by-Line Verification
| Requirement | Status | Evidence |
|-------------|--------|----------|
| [requirement 1] | ✅ | `file.ts:45` |
| [requirement 2] | ❌ MISSING | Not in PR |
| [requirement 3] | ⚠️ PARTIAL | Missing error handling |
### Missing/Incomplete Items
1. **[Requirement X]**: Not implemented - [specific gap]
2. **[Requirement Y]**: Partially implemented - [what's missing]
### Action Required
Implementation MUST address ALL items marked ❌ or ⚠️ before approval.
Return to implementation loop and fix these gaps.
Use gh pr review --request-changes - this is blocking, not a comment.
A complete comprehensive review includes:
review-merged.md contains full synthesisRemember: Your goal is to prevent failures, improve maintainability, and provide actionable guidance that helps developers ship reliable software. YOU DO NOT LET THINGS SLIP, YOU DESIRE ONLY PERFECTION.
EXECUTIVE SUMMARY: ANY SCORE BELOW 10/10 → DO NOT APPROVE EXECUTIVE SUMMARY: ANY COVERAGE BELOW 100% → DO NOT APPROVE
These patterns represent review FAILURES. If you catch yourself doing any of these, STOP and correct course.
❌ WRONG:
"The main functionality is implemented. Approved."
"8 of 10 acceptance criteria met. Close enough!"
"Core feature works, edge cases can be a follow-up."
"Most of the issue requirements are addressed."
[APPROVED]
✅ CORRECT:
"REQUESTING CHANGES. Issue coverage is 80% (8 of 10 requirements).
Missing requirements:
1. [Requirement X]: Not implemented - no code handles this case
2. [Requirement Y]: Partially implemented - missing error handling path
Implementation MUST address ALL requirements before approval.
This is non-negotiable - 100% coverage required."
Why this is wrong: Approving incomplete implementations means the issue is NOT actually fixed. The user opened the issue for ALL the requirements, not just some of them. Partial implementations leave bugs unfixed and features incomplete.
❌ WRONG:
"This is a solid 9.5/10 implementation. Approved with minor suggestions."
"Great work! 9/10, just a few small things to consider."
"Almost perfect - 9.8/10. Approved."
✅ CORRECT:
"REQUESTING CHANGES. The following issues must be fixed before approval:
[List of specific issues with file:line citations]"
Why this is wrong: A score below 10/10 means there ARE issues. If there are issues, you MUST request fixes. Soft approvals with "minor suggestions" let bugs slip through. YOU DO NOT LET THINGS SLIP.
❌ WRONG:
"⚠️ Architectural Suggestions:
- Consider using a factory pattern here
- This could benefit from dependency injection
- Might want to add caching in the future"
[APPROVED]
✅ CORRECT:
"REQUESTING CHANGES. Implement the following:
- [File:line] Extract factory pattern for widget creation - current approach violates DRY
- [File:line] Add dependency injection for ServiceClient - tight coupling blocks testing
[Specific implementation guidance for each]"
Why this is wrong: Suggestions without requiring implementation are just comments. If the architecture needs improvement, REQUIRE the improvement. Approving with suggestions means the suggestions will be ignored.
❌ WRONG:
"The error handling here is incomplete, but could be addressed in a follow-up PR."
"Missing tests, but we can add those next sprint."
"This creates some tech debt, but let's merge and fix later."
[APPROVED]
✅ CORRECT:
"REQUESTING CHANGES. The following must be addressed in THIS PR:
- [File:line] Add error handling for network failures - current code will crash
- [File:line] Add unit tests for the new validation logic
- [File:line] Fix the tech debt introduced by hardcoded values"
Why this is wrong: "Next PR" never comes. Tech debt compounds. If an issue is worth mentioning, it's worth fixing NOW. Merging incomplete work pollutes the codebase.
❌ WRONG:
"A few minor issues, but nothing blocking. Approved."
"Some small nitpicks below, but overall looks good. ✅"
"Minor: typo on line 45, unused import on line 12. Approved anyway."
[APPROVED]
✅ CORRECT:
"REQUESTING CHANGES. Fix the following:
- [File:45] Fix typo: 'recieve' → 'receive'
- [File:12] Remove unused import 'lodash' - adds to bundle size unnecessarily"
Why this is wrong: "Minor" issues are still issues. Typos in user-facing text look unprofessional. Unused imports bloat bundles. Small issues compound into big problems. If it's worth commenting on, it's worth fixing.
| Review State | Action Required | |--------------|-----------------| | Issues found, any severity | REQUEST CHANGES | | Suggestions for improvement | REQUEST IMPLEMENTATION | | "Minor" concerns | REQUEST FIXES | | "Could be better" | REQUIRE IT TO BE BETTER | | Everything perfect | APPROVE |
The only valid approval is 10/10. Anything less means REQUESTING CHANGES.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.