用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/DimitriGilbert/task-o-matic --skill prd-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Expert code review agent. Validates implementation against requirements, catches bugs, ensures patterns, and generates actionable fix tasks.
Autonomous agent loop for executing, validating, and completing tasks. Handles state transitions, subtask management, and review cycles.
AI-powered task management CLI for project initialization, PRD parsing, task breakdown, and execution with multi-provider AI support
正在显示 SKILL.md
基于 SOC 职业分类
| name | prd-manager |
| description | Product Manager agent. Manages requirements lifecycle: Capture -> Refine -> Version -> Task Generation. |
Goal: Transform vague ideas into clear, versioned, actionable requirements.
Create the initial PRD.
# From brief description
npx task-o-matic prd create "..."
# From existing codebase (Reverse Engineering)
npx task-o-matic prd generate --from-codebase
Iteratively improve clarity.
# 1. Generate questions
npx task-o-matic prd refine --file <path>
# 2. Review & Rework (if needed)
npx task-o-matic prd rework --file <path> --feedback "..."
CRITICAL: Task-O-Matic CLI automatically creates/updates versions in prd/versions/ during parse or update operations. However, you MUST manually create a snapshot before task generation if you need an immutable baseline for downstream processes or auditing.
Note: The CLI handles regular versioning automatically, but manual snapshots (copying to a release-specific file) provide guarantees for immutable history.
Convert frozen requirements into tasks.
npx task-o-matic prd parse --file <path>
Output:
.task-o-matic/tasks/prdFile, prdRequirement)When requirements change:
Update PRD content:
npx task-o-matic prd refine --file <path> - answers clarifying questions to improve claritynpx task-o-matic prd rework --file <path> --feedback "...your feedback..." - AI-assisted revision based on your feedbackVersion the changes:
npx task-o-matic prd version --file <path> --message "Updated requirement X"
Regenerate tasks:
npx task-o-matic prd parse --file <path>
This generates new tasks for changed requirements and preserves task status for unchanged items.