counselors
Installation
SKILL.md
Counselors — Multi-Agent Review Skill
Fan out a prompt to multiple AI coding agents in parallel and synthesize their responses.
Arguments: $ARGUMENTS
If no arguments provided, ask the user what they want reviewed.
Phase 1: Context Gathering
Parse $ARGUMENTS to understand what the user wants reviewed. Then auto-gather relevant context:
- Files mentioned in the prompt: Use Glob/Grep to find files referenced by name, class, function, or keyword
- Recent changes: Run
git diff HEADandgit diff --stagedto capture recent work - Related code: Search for key terms from the prompt and read the most relevant files (up to 5 files, ~50KB total cap)
Be selective — don't dump the entire codebase. Pick the most relevant code sections.