Auto-review skill for expert agents. After coding, expert applies elicitation techniques to self-correct before sniper validation. Inspired by BMAD-METHOD.
View on GitHubfusengine/agents
fuse-ai-pilot
plugins/ai-pilot/skills/elicitation/SKILL.md
January 22, 2026
Select agents to install to:
npx add-skill https://github.com/fusengine/agents/blob/main/plugins/ai-pilot/skills/elicitation/SKILL.md -a claude-code --skill elicitationInstallation paths:
.claude/skills/elicitation/# Elicitation Skill ## Purpose Enable expert agents to **self-review and self-correct** their code before external validation (sniper). Based on BMAD-METHOD's 75 elicitation techniques. --- ## 3 Execution Modes ### Mode 1: MANUAL (default) ``` Expert presents 5 relevant techniques → User chooses → Expert applies ``` ### Mode 2: AUTO (--auto) ``` Expert auto-detects code type → Auto-selects techniques → Applies silently ``` ### Mode 3: SKIP (--skip) ``` Skip elicitation → Go directly to sniper validation ``` --- ## Quick Start **After Execute phase, expert runs:** ```bash # Manual mode (default) > Apply elicitation skill # Auto mode (no prompts) > Apply elicitation skill --auto # Skip self-review > Apply elicitation skill --skip ``` --- ## Workflow Overview ``` ┌─────────────────────────────────────────────────────────┐ │ ELICITATION WORKFLOW │ │ │ │ Step 0: Init → Load context │ │ Step 1: Analyze Code → Detect code type │ │ Step 2: Select → Choose techniques (or auto) │ │ Step 3: Apply Review → Execute techniques │ │ Step 4: Self-Correct → Fix own issues │ │ Step 5: Report → Summary before sniper │ └─────────────────────────────────────────────────────────┘ ``` --- ## Auto-Detection Matrix | Code Type Detected | Auto-Selected Techniques | |--------------------|--------------------------| | Authentication/Security | Security Audit, OWASP Check, Input Validation | | API Endpoints | Error Handling, Type Coverage, API Contracts | | Database/ORM | N+1 Detection, Migration Safety, Data Integrity | | UI Components | Accessibility, Edge Cases, Loading States | | Business Logic | SOLID Compliance, Unit Test Coverage, Edge Cases | | Refactoring | Breaking Changes, Regression Analysis, Backward Compat | | Performance Critical | Profiling, Memory Analysis, Complexity Check |