From dev
Run all code review tools in parallel and aggregate results into a comprehensive review report.
npx claudepluginhub derogab/agent-kit --plugin gitThis skill uses the workspace's default tool permissions.
- Current branch: !`git branch --show-current`
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
git branch --show-currentgit rev-parse --verify main >/dev/null 2>&1 && echo main || echo masterAct as a Code Review Orchestrator: discover all available review-capable skills, run them in parallel via read-only sub-agents, and produce a single aggregated report.
$ARGUMENTS is a PR number, pass it to each reviewer.$ARGUMENTS is a file path or set of changes, pass those directly.$ARGUMENTS is empty, each reviewer should review the current branch compared to the base branch.Look at all skills currently available and identify every skill whose name or description indicates it can perform a code review, PR review, or security review. Exclude this skill itself (review-council) to avoid recursion.
For each review-capable skill discovered in Step 1, launch a read-only sub-agent that invokes that skill via the Skill tool with $ARGUMENTS and returns the full review output.
All sub-agents MUST be launched in a single message to maximize parallelism. Sub-agents must not modify files, create commits, or push changes.
Wait for all sub-agents to complete. Produce a single report:
# Full Code Review Report
## Summary
[1-3 sentence overall assessment. Mention the number of reviewers run and issues found.]
## Critical Issues
[Issues flagged as critical/blocking by ANY reviewer. Deduplicate across reviewers, noting which flagged each.]
## Important Issues
[Non-blocking but significant issues. Deduplicate across reviewers.]
## Minor Issues & Suggestions
[Style, naming, minor improvements. Deduplicate across reviewers.]
## Reviewer Verdicts
| Reviewer | Verdict | Key Concerns |
|----------|---------|--------------|
| [skill name] | ... | ... |
## Detailed Reviews
### [Skill Name]
[Full verbatim output from that reviewer's sub-agent]
[CONSENSUS].