← ClaudeAtlas

devflowlisted

End-to-end agent development process. Use when coordinating work, dispatching agents, or reviewing PRs.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# DEVFLOW: Agent Development 5-phase workflow for coordinated multi-agent development. ## ⚠️ MANDATORY: 100% Issue/Task Coverage **Every phase must verify that 100% of original issue/task requirements are being addressed.** - Phase 1: Extract ALL requirements from original issue - Phase 2: Dispatch agents with complete requirement lists - Phase 3: Review must verify 100% coverage before quality check - Phase 5: Cannot merge until 100% of original requirements implemented **Incomplete implementations = SEND BACK, do not proceed.** ## Phase 1: Oracle Assessment - Assess codebase state with Oracle - Identify completed work, remaining work, dependencies - **Extract ALL requirements from original issue/task** (`gh issue view <number>`) - Break down into parallelizable tasks ensuring ALL requirements are covered ## Phase 2: Parallel Implementation Dispatch Docker agents: - Clone repo, format locally (`cargo +nightly fmt`) - Branch as `feat/name` or `fix/name` - Open PR to correct base branch with **`Closes #X` in body** - Never push to existing branches **PR MUST include issue links:** - `Closes #X` or `Fixes #X` for issues being addressed - "Related Issues" section in PR body - Verify: `gh pr view --json closingIssuesReferences` ## Phase 3: Ultra-Critical Review After CI passes, run 6-pass review: | Pass | Focus | |------|-------| | **0.5** | **100% issue/task coverage verification (MANDATORY FIRST)** | | 1 | Runtime/compile failures | | 2 | Patterns, imports, dead co