一键导入
prd-manager
Product Manager agent. Manages requirements lifecycle: Capture -> Refine -> Version -> Task Generation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Product Manager agent. Manages requirements lifecycle: Capture -> Refine -> Version -> Task Generation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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
基于 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.