go

Featured

Zero-config goal-to-tasks engine. Takes any goal (software, pentest, business, learning), runs adaptive discovery, generates a validated spec, parses into TaskMaster tasks, creates an implementation plan, and executes with built-in CDD verification. Use when user says "PRD", "product requirements", "I want to build", or any goal-driven phrase.

AI & Automation 587 stars 58 forks Updated 6 days ago MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
92
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
77
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# go (orchestrator) 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__`). ## Flow 1. Call `mcp__plugin_prd_go__preflight()` — get environment state 2. Call `mcp__plugin_prd_go__current_phase()` — get pipeline state 3. Route via Skill tool: - current_phase is null or SETUP → invoke `/prd:setup` - current_phase is DISCOVER → invoke `/prd:discover` - current_phase is GENERATE → invoke `/prd:generate` - current_phase is HANDOFF → invoke `/prd:handoff` - current_phase is EXECUTE → invoke `/prd:execute-task` 4. After phase skill returns, re-check current_phase. If it advanced, route to the next phase. If not, report the blocker. ## Stateless routing 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. ## Red flags These thoughts mean STOP, you're rationalising: - "I know which phase we're in, skip preflight" → NO. Preflight is cheap. - "The phase skill already ran, I don't need to re-check" → NO. Context might have died. - "I can just do th...

Details

Author
anombyte93
Repository
anombyte93/prd-taskmaster
Created
10 months ago
Last Updated
6 days ago
Language
Python
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

prd-taskmaster

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.

587 Updated 6 days ago
anombyte93
AI & Automation Listed

base-goal-execution

Goal 驱动执行技能。将计划(Plan)转化为可追踪、可恢复、有验收标准的闭环执行流程。 每次制定计划或执行计划时自动激活,确保任务从启动到交付全程可控。 触发词:goal、目标执行、计划执行、执行计划、闭环交付、goal-driven。

13 Updated 2 days ago
seed-forge
AI & Automation Listed

meta-dotclaude-copilot-start-here-for-any-task

The single skill to call for ANY task with this dotclaude config, so Simon never has to remember which skill fits. It reads the task, routes it to the right skills via references/skill-stack.md (verifying each is installed), presents the plan, and drives the whole job to a verified finish — keeping an always-visible progress bar (overall + nested sub-progress), applying each skill at its stage, and gracefully RESUMING the main thread after a tangent (a mid-task fix, a discovered todo). Callable at any stage; it re-reads the tracker and continues where the plan left off. Reuses references/skill-stack.md (the map), the task-intake gate, and rules/process.md (a tangent is a queued task; track every task to completion); it owns the single entry point, the progress bar, verifying skill names, and the resume. Use for "start here", "what should I use for this", "run this the right way", "just handle this", "which skills for this task", "copilot this whole thing", or /sk:meta-dotclaude-copilot-start-here-for-any-task

0 Updated today
skowalskidev