원클릭으로
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 직업 분류 기준
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.