Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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.

AutomationBeginner58858AI 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 go orchestrator (/prd:go).
  • go reads 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

  1. "I want to build an internal PTO request app" → Atlas triggers, go enters SETUP/DISCOVER and interviews you for requirements.
  2. Typing /prd:atlas mid-project → state is read and work resumes at GENERATE (write PRD) or EXECUTE (run tasks).
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/anombyte93/prd-taskmaster.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copying atlas alone will not work. Copy the whole pipeline (including go): cp -r prd-taskmaster/skills/* ~/.claude/skills/
  5. Restart Claude Code and try /prd:atlas.
  6. If nothing happens, verify that dependencies such as ~/.claude/skills/go/SKILL.md were actually copied.