← ClaudeAtlas

dolisted

End-to-end autonomous task executor. Takes a task description and handles the full lifecycle: research, plan, implement, review with specialist skills, and merge via PR. Use when given a task to execute end-to-end.
raphaeltm/simple-agent-manager · ★ 40 · Code & Development · score 75
Install: claude install-skill raphaeltm/simple-agent-manager
# End-to-End Task Executor Read the full workflow from `.codex/prompts/do.md` and execute it. ## Quick Summary 1. **Research** — understand the request, search the codebase, read related docs - If the user explicitly asks for local subagent critique before implementation, gather bounded local reviews and reconcile them before editing. 2. **Task file** — create in `tasks/backlog/`, commit to main 3. **Worktree** — create feature branch and worktree 4. **Implement** — follow checklist, push frequently, run quality checks. **For UI changes**: run mandatory Playwright visual audit with mock data on mobile + desktop viewports (see `.claude/rules/17-ui-visual-testing.md`) 5. **Validate** — full quality suite: lint, typecheck, test, build 6. **Review** — invoke specialist skills ($go-specialist, $cloudflare-specialist, etc.) 7. **Staging** — check for existing staging deploys (wait 5min if active), trigger manual deployment via `gh workflow run deploy-staging.yml --ref <branch>`. **Use `$CF_TOKEN` to query D1/KV/DNS directly** (see `.claude/rules/32-cf-api-debugging.md`) to verify migrations, data state, and feature flags — this is faster and more precise than UI-based checks. Then verify changed behavior end-to-end via Playwright. **For infrastructure changes** (cloud-init, VM agent, DNS, TLS, scripts/deploy): MUST provision a real VM and verify heartbeat arrives. See Phase 6b in `.codex/prompts/do.md`. 8. **PR** — create with `gh pr create`, wait for CI, merge when green. If