Atlas (PRD engine entrypoint)
A brand-name entrypoint that hands any "I want to build X" request to the Atlas PRD-and-task-graph pipeline.
AutomationBeginner★ 588⑂ 58AI score 5/10Last updated: Aug 14, 2026
What it does
- Fires when you type
/prd:atlas, say "I want to build...", or ask for a PRD / task-driven build. - Holds no procedure itself — it is a thin alias that immediately invokes the
goorchestrator (/prd:go). goreads the pipeline state and routes to the right phase: SETUP → DISCOVER → GENERATE → HANDOFF → EXECUTE.- Net effect: one memorable command gets you from a vague goal to a validated PRD and an executable task graph.
Who it's for
- Solo devs and product folks who repeatedly turn ideas into PRDs and task lists
- Anyone who wants spec → decomposition → execution handled as one pipeline in Claude Code
- Teams that want everyone to start the same planning flow with the same command
Examples
- "I want to build an internal PTO request app" → Atlas triggers,
goenters SETUP/DISCOVER and interviews you for requirements. - Typing
/prd:atlasmid-project → state is read and work resumes at GENERATE (write PRD) or EXECUTE (run tasks). - "Give me a PRD plus task breakdown for the billing feature" → recognized as a PRD request and the pipeline starts.
· · · 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/atlas/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/atlas folder from the GitHub repo anombyte93/prd-taskmaster into my ~/.claude/skills/atlas/. 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 && 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 - Copying atlas alone will not work. Copy the whole pipeline (including
go):cp -r prd-taskmaster/skills/* ~/.claude/skills/ - Restart Claude Code and try
/prd:atlas. - If nothing happens, verify that dependencies such as
~/.claude/skills/go/SKILL.mdwere actually copied.
View source on GitHub ↗License: MIT