.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/anombyte93/prd-taskmaster
home/skills/anombyte93/prd-taskmaster
anombyte93 avatar

prd-taskmaster

byanombyte93· 23 skills

Installs

115

Stars

584

Forks

57

Category

Product & Project Management

View on GitHub

TL;DR

Zero-config goal-to-tasks engine (the Atlas engine). Takes any goal (software, pentest, business, learning), runs adaptive discovery via brainstorming, generates a validated spec, parses into TaskMaster tasks, and hands off to execution. Use when user says "PRD", "product requirements", "I want to build", invokes /atlas, or wants task-driven development.

How to install prd-taskmaster?

anombyte93/prd-taskmaster
$npx -y skills add anombyte93/prd-taskmaster --skill prd-taskmaster

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/anombyte93/prd-taskmaster" --skill "anombyte93/prd-taskmaster"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/anombyte93/prd-taskmaster" that are relevant to the current task. Run `npx skills add "https://github.com/anombyte93/prd-taskmaster"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Turn any goal into shipped code.
2 
3**prd-taskmaster** by [Atlas AI](https://atlas-ai.au) is an open-source engine for Claude Code
4that takes a one-line goal, interviews you like a senior PM, writes a **graded,
5placeholder-proof PRD**, compiles it into a **dependency-ordered task graph**, and executes every
6task with **verification evidence** — so "done" means proven, not claimed.
7 
8Free and MIT, forever.
9 
10> ⚠️ **Pre-alpha — under active development.** Atlas was recently consolidated into this engine
11> and the newer systems (fleet orchestration, backend abstraction, token economy) have **not been
12> fully tested in the wild yet**. Expect rough edges and breaking changes between releases, pin a
13> version if you need stability, and please [report what breaks](https://github.com/anombyte93/prd-taskmaster/issues).
14> No warranty beyond the MIT license. **Atlas Pro is not generally available** — it is a private
15> pilot (see below).
16 
17Atlas has four structural moats:
18 
19- **cross-vendor fleet** — Claude, Codex, and Gemini run as separate quota pools instead of one
20 brittle model lane.
21- **Engine-enforced unfakable gates** — `validate-tasks`, evidence checks, and `SHIP_CHECK_OK`
22 make completion a deterministic state, not a claim.
23- **persistent vendor-neutral `tasks.json`** — your PRD, task graph, and execution state stay as
24 plain repo files that survive vendor swaps.
25- **token-economy cost ledger** — every orchestrated model call records routing, exit, latency,
26 and escalation so cheap models do cheap work and expensive models justify themselves.
27 
28**Atlas speaks TaskMaster natively — but doesn't need it.** Existing TaskMaster projects get a
29migration funnel: install `task-master-ai` only when you want the TaskMaster backend, while the
30native backend keeps the same validated task graph available without that prerequisite.
31 
32```
33Grade: GOOD ▰▰▰▰▰▰▰▰▱▱ 49/57 (86%) · 0 placeholders · 14 tasks parsed
34```
35 
36[![status: pre-alpha](https://img.shields.io/badge/status-pre--alpha-orange.svg)](#project-status)
37[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
38[![GitHub stars](https://img.shields.io/github/stars/anombyte93/prd-taskmaster)](https://github.com/anombyte93/prd-taskmaster/stargazers)
39[![works with](https://img.shields.io/badge/works_with-Claude%20%C2%B7%20Codex%20%C2%B7%20Gemini-8A2BE2)](https://atlas-ai.au)
40[![free engine](https://img.shields.io/badge/engine-MIT%20free%20forever-brightgreen)](#whats-open-whats-not)
41 
42---
43 
44## How it works
45 
46```
47goal → discovery interview → graded PRD → dependency-ordered task graph → verified execution
48```
49 
501. **Preflight** — detects your environment (native backend, optional TaskMaster backend, model CLIs, research) and configures it. Zero setup questions.
512. **Discovery** — an adaptive, one-question-at-a-time interview captures your real constraints.
523. **Generate** — writes a PRD, scores it against deterministic quality checks (letter grade), then parses it into a task graph with complexity scores and full subtask coverage.
534. **Handoff** — detects what you have installed and recommends one execution mode.
545. **Execute** — a CDD-gated loop implements each task and proves it with evidence, ending in a deterministic `SHIP_CHECK_OK` token.
55 
56---
57 
58## Quickstart
59 
6090 seconds to your first run.
61 
62### Path 1 — one-liner (recommended)
63 
64```bash
65curl -fsSL https://atlas-ai.au/install | bash
66# installs the skill + prd_taskmaster package
67# TaskMaster install is optional — unlocks the TaskMaster backend
68```
69 
70### Path 2 — Claude Code plugin
71 
72```bash
73# add the marketplace, then install the plugin
74/plugin marketplace add anombyte93/prd-taskmaster
75/plugin install prd
76 
77# optional — unlocks the TaskMaster backend
78npm install -g task-master-ai
79```
80 
81### First run
82 
83Open any project in Claude Code and type:
84 
85```
86/prd:atlas (or /prd:go, or just say: "I want to build …")
87```
88 
89Requires Python 3.11+ and Linux / macOS / WSL. The free engine needs **no paid API key** — it
90uses the model CLIs you already have; an optional local research proxy can be plugged in
91(bring your own — not bundled). npm installs run a `postinstall` step that pip-installs the
92MCP server's Python deps (non-fatal warning if pip is unavailable).
93 
94---
95 
96## What "verified" means
97 
98Most AI coding tools tell you a task is done. This one makes "done" provable:
99 
100- **Graded PRDs.** Every spec is scored against deterministic checks (EXCELLENT / GOOD / ACCEPTABLE / NEEDS WORK). Placeholders (`TBD`, `{{...}}`, `TODO` — bare or bracketed) are a hard fail: the grade floors to NEEDS WORK and `validate-prd` exits non-zero.
101- **A real task graph.** Requirements become backend-neutral `tasks.json` tasks with dependencies, complexity scores, and full subtask coverage — not a flat checklist.
102- **Evidence-gated execution.** Each task is implemented and must produce execution evidence before it counts as done.
103- **A completion token you can trust.** `SHIP_CHECK_OK` is emitted only when every gate passes — and a single non-zero

Preview

anombyte93/prd-taskmasteranombyte93/prd-taskmaster

$ npx -y skills add anombyte93/prd-taskmaster --skill prd-taskmaster

▸ installing to .claude/skills…

✓ prd-taskmaster ready

Repoanombyte93/prd-taskmaster
TypeSkills
CategoryProduct & Project Management
ForProduct ManagerArchitect
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatargrill-meA relentless interview to sharpen a plan or design.SkillsJul 2026690k189k
  2. mattpocock avatartriageMove issues and external PRs through a state machine of triage roles — categorise, verify, grill if needed, and write agent-ready briefs.SkillsJul 2026463k189k
  3. larksuite avatarlark-task飞书任务:管理任务、清单和任务智能体。创建待办任务、查看和更新任务状态、拆分子任务、组织任务清单、分配协作成员、上传任务附件、注册或注销任务智能体、更新任务智能体的主页数据、写入智能体任务记录。当用户需要创建待办事项、查看任务列表、跟踪任务进度、管理项目清单或给他人分配任务、为任务上传附件文件、注册注销任务智能体、更…SkillsJul 2026388k16k
  4. larksuite avatarlark-okr飞书 OKR:管理目标与关键结果。查看和编辑 OKR 周期、目标、关键结果、对齐关系、量化指标和进展记录。当用户需要查看或创建 OKR、管理目标和关键结果、查看对齐关系时使用。不负责:待办任务管理(lark-task)、日程/会议安排(lark-calendar)、绩效评估SkillsJul 2026324k16k
  5. obra avatarbrainstormingYou MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior.SkillsJul 2026301k261k
  6. mattpocock avatargrillingGrill the user relentlessly about a plan, decision, or idea. Use when the user wants to stress-test their thinking, or uses any 'grill' trigger phrases.SkillsJul 2026295k189k