orchestrate-review

Featured

Use when user asks to "deep review the code", "thorough code review", "multi-pass review", or when orchestrating the Phase 9 review loop. Provides review pass definitions (code quality, security, performance, test coverage), signal detection patterns, and iteration algorithms.

AI & Automation 967 stars 111 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
99
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Orchestrate Review Multi-pass code review with parallel Task agents, finding aggregation, and iteration until clean. ## Scope-Based Specialist Selection Select conditional specialists based on the review scope: - **User request**: Detect signals from content user refers to (files, directory, module) - **Workflow (Phase 9)**: Detect signals from changed files only - **Project audit**: Detect signals from project structure as a whole ## Review Passes Spawn parallel `general-purpose` Task agents (model: `sonnet`), one per pass: ### Core (Always) ```javascript const corePasses = [ { id: 'code-quality', role: 'code quality reviewer', focus: ['Style and consistency', 'Best practices', 'Bugs and logic errors', 'Error handling', 'Maintainability', 'Duplication'] }, { id: 'security', role: 'security reviewer', focus: ['Auth/authz flaws', 'Input validation', 'Injection risks', 'Secrets exposure', 'Insecure defaults'] }, { id: 'performance', role: 'performance reviewer', focus: ['N+1 queries', 'Blocking operations', 'Hot path inefficiencies', 'Memory leaks'] }, { id: 'test-coverage', role: 'test coverage reviewer', focus: ['Missing tests', 'Edge case coverage', 'Test quality', 'Integration needs', 'Mock appropriateness'] } ]; ``` ### Conditional (Signal-Based) ```javascript if (signals.hasDb) passes.push({ id: 'database', role: 'database specialist', focus: ['Query performance', 'Indexes/transactions', 'Migration safety', 'Data integrity'] }); if (sign...

Details

Author
agent-sh
Repository
agent-sh/agentsys
Created
7 months ago
Last Updated
4 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category