ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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
| 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.