From prd
Orchestrates a zero-config goal-to-tasks pipeline: discovers requirements, generates specs, creates plans, and executes with verification. Invoke when user states a broad goal or requests a PRD.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prd:goThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Pure routing. Reads pipeline state, dispatches to the correct phase skill.
Pure routing. Reads pipeline state, dispatches to the correct phase skill.
Deferred MCP tools: in Claude Code the engine's MCP tools are often deferred — not
callable until loaded. If a tool below is not directly callable, first run
ToolSearch(query="select:mcp__plugin_prd_go__preflight") (keyword fallback
ToolSearch(query="+atlas engine preflight", max_results=10)) and use whichever prefix
matches (mcp__plugin_prd_go__ or mcp__atlas-engine__).
Call mcp__plugin_prd_go__preflight() — get environment state
Call mcp__plugin_prd_go__current_phase() — get pipeline state
Route via Skill tool:
/prd:setup/prd:discover/prd:generate/prd:handoff/prd:execute-taskAfter phase skill returns, re-check current_phase. If it advanced, route to the next phase. If not, report the blocker.
This skill does NOT hold procedure. Each phase skill owns its own logic. The orchestrator survives context loss because every phase skill reads current_phase() on entry.
These thoughts mean STOP, you're rationalising:
npx claudepluginhub anombyte93/prd-taskmaster --plugin prdEntrypoint alias that immediately delegates to the `go` orchestrator to turn a project goal into a validated PRD and executable task graph.
Plans and autonomously builds a software task end-to-end. Recons codebase, researches best practices, decomposes into phases, then generates a single ready-to-paste /goal command that drives the entire chain to completion with retry and recovery.
Breaks down complex tasks into milestone plans with specs and dependencies, reviews them, then executes via delegation to agents. For multi-step projects, architectures, or migrations.