← ClaudeAtlas

implementlisted

Orchestrates the full agent-pack pipeline for a task: git-engineer → [tech-lead] → engineer(s) → code-reviewer → [security-reviewer] → [performance-reviewer] → smell-reviewer → test-engineer → merge-reviewer → git-engineer (push/PR). Use when implementing a feature, fix, or change end-to-end. Trigger this when someone says: implement this, build this feature, make this change, add this functionality, code this up, I need this feature built, ship this. Do NOT use for targeted bug fixes with a known root cause — use /hotfix or /debug instead. Do NOT use for pure restructuring with no behavior change — use /refactor instead.
chuckplayer/claude-agent-pack · ★ 2 · Code & Development · score 75
Install: claude install-skill chuckplayer/claude-agent-pack
# Implement Task Run the full agent pipeline for the task the user described: 1. **git-engineer** — always first. Confirm the working branch is correct before any code changes. **After git-engineer returns:** check the current branch with `git branch --show-current`. If the branch is still `main` or `master`, **stop immediately** and output: > **Cannot proceed:** Engineer agents use worktree isolation, and worktrees must not be created from `main` or `master`. Please switch to a feature branch first, then re-run `/implement`. Do not invoke any further agents until the user is on a non-main/master branch. 2. **tech-lead** — invoke if the task is ambiguous, spans multiple concerns, or touches more than three files. Skip for well-scoped, single-file tasks. 3. **devils-advocate** — invoke before implementation if the task introduces a new pattern, a new dependency, or an irreversible architectural change. Skip for small bug fixes and established patterns. 4. **api-designer** — invoke before engineer agents if the task creates or significantly modifies API endpoints. Skip for internal refactors that do not change the API surface. 5. **Engineer agents** — invoke based on the file types being changed, always with `isolation: "worktree"`: - C# / .NET changes: **csharp-engineer** - TypeScript / Vue 3 changes: **frontend-engineer** - MCP server changes: **mcp-engineer** - Schema, migrations, SQL: **database-engineer** - Run csharp-engineer and frontend-