Discover — PRD Pipeline Phase 1
Phase 1 of the prd-taskmaster pipeline: brainstorm-driven discovery that extracts constraints, classifies project scale, and hands off to spec generation.
AutomationAdvanced★ 592⑂ 58AI score 8/10Last updated: Aug 14, 2026
What it does
- Owns the
DISCOVERphase of the prd-taskmaster pipeline; invoked by the orchestrator, never directly by a user. - Interactive Mode: delegates to
superpowers:brainstormingfor one-question-at-a-time discovery, then intercepts before it chains towriting-plansso the pipeline keeps control of the handoff. - Autonomous Mode: in unattended sessions (ralph-loop, cron,
--autonomous), self-brainstorms from a fixed template, writessession-context/discovery-{timestamp}.md, and commits it as an audit trail. - Forces a mandatory CONSTRAINTS CAPTURED block (stack, timeline, team, budget, integrations, regulatory, domain-specific).
- Calibrates scale to Solo / Team / Enterprise with task caps and subtask depth, then calls
advance_phaseto move to GENERATE.
Who it's for
- Teams already running the prd-taskmaster plugin for PRD → task decomposition.
- Anyone automating planning inside unattended agent loops.
- Teams whose specs keep losing constraints that were mentioned during discovery.
Examples
- "Build an internal time-tracking tool" → adaptive Q&A on audience, success metrics, and out-of-scope items, ending in a "Team, 12–20 tasks" classification.
- Overnight run: reads
CLAUDE-soul-purpose.md, writes and commits a discovery doc with explicit assumptions for morning review. - Turns "free tier only, must integrate existing Postgres, GDPR required" into a structured constraints block passed into the GENERATE phase.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/anombyte93/prd-taskmaster/HEAD/skills/discover/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/discover folder from the GitHub repo anombyte93/prd-taskmaster into my ~/.claude/skills/discover/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/anombyte93/prd-taskmaster.git && mkdir -p ~/.claude/skills && cp -r prd-taskmaster/skills/* ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/anombyte93/prd-taskmaster.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skills:
cp -r prd-taskmaster/skills/* ~/.claude/skills/— install the whole pipeline, not justdiscover. - Follow the repo README to install the
superpowersplugin and theprd-taskmasterMCP server; without them the gate calls and brainstorming delegation will fail. - Restart Claude Code and run the
prd-taskmasterorchestrator (do not calldiscoverdirectly) — it routes into Phase 1 automatically.
View source on GitHub ↗License: MIT