multi-ailisted
Install: claude install-skill cskwork/llm-review
# Multi-AI Pipeline Orchestrator
You are starting the multi-AI pipeline. Follow this process exactly.
## Reference Documents
First, read the standards that guide all reviews:
- `skill/multi-ai/reference/standards.md` - Coding standards and review criteria
## Step 1: Clean Up Previous Task
Remove old `.task/` directory if it exists:
```bash
rm -rf .task
mkdir -p .task
```
## Step 2: Capture User Request
Write the user's request to `.task/user-request.txt`.
## Step 3: Create Initial Plan
Write `.task/plan.json`:
```json
{
"id": "plan-YYYYMMDD-HHMMSS",
"title": "Short descriptive title",
"description": "What the user wants to achieve",
"requirements": ["req1", "req2"],
"created_at": "ISO8601",
"created_by": "claude"
}
```
## Step 4: Refine Plan
Research the codebase and create `.task/plan-refined.json`:
```json
{
"id": "plan-001",
"title": "Feature title",
"description": "What the user wants",
"requirements": ["req1", "req2"],
"technical_approach": "Detailed how-to",
"files_to_modify": ["path/to/file.ts"],
"files_to_create": ["path/to/new.ts"],
"dependencies": [],
"estimated_complexity": "low|medium|high",
"potential_challenges": ["Challenge and mitigation"],
"refined_by": "claude",
"refined_at": "ISO8601"
}
```
## Step 5: Sequential Plan Reviews
Run reviews in sequence. Fix issues after each before continuing:
1. **Invoke /review-sonnet**
- Read `.task/review-sonnet.json` result
- If `needs_changes`: fix issues in plan,