Plan, orchestrate, and execute multi-step implementation tasks. USE WHEN writing plans, breaking plans into tasks, executing plans, dispatching parallel agents, subagent-driven development, or finishing development branches.
From atn-claudecode-confignpx claudepluginhub adtechnacity/atn-claudecode-configThis skill uses the workspace's default tool permissions.
workflows/execute.mdworkflows/finish-branch.mdworkflows/orchestrate.mdworkflows/parallel-dispatch.mdworkflows/subagent-dev.mdworkflows/write-plan.mdSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
End-to-end workflow for planning, executing, and completing multi-step development tasks.
| Workflow | Trigger | File |
|---|---|---|
| Write Plan | "write a plan", "create implementation plan", spec/requirements ready | workflows/write-plan.md |
| Orchestrate Tasks | "break into tasks", after plan is written/approved | workflows/orchestrate.md |
| Execute Plan | "execute the plan", "implement the plan" in separate session | workflows/execute.md |
| Subagent Dev | "execute with subagents", implement in current session | workflows/subagent-dev.md |
| Parallel Dispatch | 2+ independent tasks, no shared state | workflows/parallel-dispatch.md |
| Finish Branch | implementation complete, ready to merge/PR/cleanup | workflows/finish-branch.md |
WritePlan → Orchestrate (auto, includes execution via Teams/ParallelDispatch) → FinishBranch
Key principle: Every plan MUST be broken into a prioritized task graph with dependencies before execution. WritePlan automatically flows into Orchestrate. All execution paths use Claude Tasks (TaskCreate/TaskUpdate/TaskList) for progress tracking.
Alternative execution paths (only when user explicitly requests):
WritePlan → SubagentDev (sequential, same session) → FinishBranch
WritePlan → Execute (separate session) → FinishBranch
WritePlan (auto-flows into Orchestrate)Orchestrate (default — creates tasks, sets dependencies, executes in waves)SubagentDev (builds task graph, then executes one-by-one)Execute (builds task graph, executes in waves)ParallelDispatchFinishBranch