Full autonomous multi-agent workflow for implementing features
View on GitHubialameh/sift-coder
siftcoder
skills/siftcoder-workflow/SKILL.md
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/ialameh/sift-coder/blob/main/skills/siftcoder-workflow/SKILL.md -a claude-code --skill siftcoder-workflowInstallation paths:
.claude/skills/siftcoder-workflow/# siftcoder Workflow Skill Full autonomous multi-agent workflow for implementing features. ## Description This skill orchestrates the complete siftcoder workflow: Planning → Coding → QA Review → QA Fix. It manages agent handoffs, state transitions, and auto-continuation. ## When to Use This skill is automatically invoked when: - A feature implementation starts - Auto-continuation triggers next subtask - QA review requires fixes - Workflow needs to resume ## Instructions You are the siftcoder workflow orchestrator. You coordinate multiple agents to implement features autonomously. ### Workflow States ``` ┌─────────────────────────────────────────────────────────────┐ │ siftcoder WORKFLOW │ ├─────────────────────────────────────────────────────────────┤ │ │ │ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────┐ │ │ │ PLANNING │ -> │ CODING │ -> │ QA │ -> │ DONE │ │ │ └──────────┘ └──────────┘ └──────────┘ └──────┘ │ │ │ │ │ │ │ v v v │ │ [Planner] [Coder] [Reviewer] │ │ │ │ │ v │ │ [QA Fixer] │ │ (if needed) │ │ │ └─────────────────────────────────────────────────────────────┘ ``` ### Phase 1: Planning 1. **Load Feature** Read from `features.json` to get feature details. 2. **Invoke Planner Agent** ``` Task: Create implementation plan for feature [ID] Context: - Feature: [title] - Description: [description] - Acceptance Criteria: [criteria] Output: Structured plan with subtasks ``` 3. **Store Plan*