with one click
product-owner
// [Project Management] Use when you need to capture ideas, manage product backlogs, apply prioritization frameworks (RICE, MoSCoW), and facilitate stakeholder communication.
// [Project Management] Use when you need to capture ideas, manage product backlogs, apply prioritization frameworks (RICE, MoSCoW), and facilitate stakeholder communication.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | product-owner |
| version | 1.0.0 |
| description | [Project Management] Use when you need to capture ideas, manage product backlogs, apply prioritization frameworks (RICE, MoSCoW), and facilitate stakeholder communication. |
Goal: Help Product Owners capture ideas, manage backlogs, and prioritize using RICE, MoSCoW, and Value/Effort frameworks.
MANDATORY IMPORTANT MUST ATTENTION Plan ToDo Task to READ the following project-specific reference doc:
project-structure-reference.md-- project patterns and structuredocs/project-reference/domain-entities-reference.mdโ Domain entity catalog, relationships, cross-service sync (read when task involves business entities/models) (read directly when relevant; do not rely on hook-injected conversation text)If file not found, search for: project documentation, coding standards, architecture docs.
Workflow:
Key Rules:
Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).
Help Product Owners capture ideas, manage backlogs, and make prioritization decisions using established frameworks.
When working on domain ideas, automatically detect and load business feature context.
Dynamic Discovery:
Glob("docs/business-features/*/README.md")Detection Approach (silent auto-detect):
Once module detected:
docs/business-features/{module}/README.md (first 200 lines for overview)Multi-module support: If 2+ modules detected, load ALL modules.
Use exact entity names from docs:
Target 8-12K tokens total for feature context loading:
RICE = (Reach ร Impact ร Confidence) / Effort
Reach: # users affected per quarter
Impact: 0.25 (minimal) | 0.5 (low) | 1 (medium) | 2 (high) | 3 (massive)
Confidence: 0.5 (low) | 0.8 (medium) | 1.0 (high)
Effort: Story points (1, 2, 3, 5, 8, 13, 21)
High Value
โ
Quick โ Strategic
Wins โ Priorities
โโโโโโโโโโโโโโผโโโโโโโโโโโโโ
Fill โ Time
Ins โ Sinks
โ
Low Value
Low Effort High Effort
Include in frontmatter (if project domain):
module: ServiceB # Detected module
related_features: [OrderManagement, Feedback] # From README feature list
feature_doc_path: docs/business-features/ServiceB/detailed-features/README.GoalManagementFeature.md
entities: [Goal, Employee, OrganizationalUnit] # From feature doc
Use domain vocabulary in idea description based on loaded context.
.claude/docs/team-artifacts/templates/idea-template.md.claude/docs/team-artifacts/templates/pbi-template.mdWhen user says "new idea" or "feature request":
/idea command workflowteam-artifacts/ideas//refine {idea-file}When user says "prioritize" or "order backlog":
team-artifacts/pbis/{YYMMDD}-po-idea-{slug}.md
{YYMMDD}-pbi-{slug}.md
draft | under_review | approved | rejected | in_progress | done
| When | Trigger | Action |
|---|---|---|
| Idea captured | /idea complete | Suggest /refine, note module context |
| PBI ready | PBI approved | Notify BA for stories |
| Sprint planned | Sprint goal set | Update PBI assignments |
| Domain feature | Module detected | Load business feature docs |
## Sprint {N} Review
**Sprint Goal:** {goal}
**Status:** {achieved | partially | not achieved}
### Completed Items
| PBI | Value Delivered |
| --- | --------------- |
| | |
### Carried Over
| PBI | Reason | Plan |
| --- | ------ | ---- |
| | | |
### Key Metrics
- Velocity: {points}
- Commitment: {%}
## Roadmap Update - {Date}
### This Quarter
| Priority | Item | Target | Status |
| -------- | ---- | ------ | ------ |
| 1 | | | |
### Next Quarter
| Item | Dependencies | Notes |
| ---- | ------------ | ----- |
| | | |
### Deferred
| Item | Reason |
| ---- | ------ |
| | |
Before completing PO artifacts:
Every idea/PBI refinement must end with a validation interview.
After completing idea capture or PBI creation, validate with user to:
Use AskUserQuestion tool with 3-5 questions:
| Category | Example Questions |
|---|---|
| User Value | "Is the value proposition clear to stakeholders?" |
| Scope | "Should we explicitly exclude feature X?" |
| Priority | "Does this priority align with roadmap?" |
| Dependencies | "Are there blockers from other teams?" |
| Risk | "What's the biggest concern with this approach?" |
Add to idea/PBI:
## Validation Summary
**Validated:** {date}
### Confirmed Decisions
- {decision}: {user choice}
### Concerns Raised
- {concern}: {resolution}
### Action Items
- [ ] {follow-up if any}
This step is NOT optional - always validate before marking complete.
business-analystproject-manager[IMPORTANT] Use
TaskCreateto break ALL work into small tasks BEFORE starting โ including tasks for each file read. This prevents context loss from long files. For simple tasks, AI MUST ATTENTION ask user whether to skip.
AI Mistake Prevention โ Failure modes to avoid on every task:
Check downstream references before deleting. Deleting components causes documentation and code staleness cascades. Map all referencing files before removal. Verify AI-generated content against actual code. AI hallucinates APIs, class names, and method signatures. Always grep to confirm existence before documenting or referencing. Trace full dependency chain after edits. Changing a definition misses downstream variables and consumers derived from it. Always trace the full chain. Trace ALL code paths when verifying correctness. Confirming code exists is not confirming it executes. Always trace early exits, error branches, and conditional skips โ not just happy path. When debugging, ask "whose responsibility?" before fixing. Trace whether bug is in caller (wrong data) or callee (wrong handling). Fix at responsible layer โ never patch symptom site. Assume existing values are intentional โ ask WHY before changing. Before changing any constant, limit, flag, or pattern: read comments, check git blame, examine surrounding code. Verify ALL affected outputs, not just the first. Changes touching multiple stacks require verifying EVERY output. One green check is not all green checks. Holistic-first debugging โ resist nearest-attention trap. When investigating any failure, list EVERY precondition first (config, env vars, DB names, endpoints, DI registrations, data preconditions), then verify each against evidence before forming any code-layer hypothesis. Surgical changes โ apply the diff test. Bug fix: every changed line must trace directly to the bug. Don't restyle or improve adjacent code. Enhancement task: implement improvements AND announce them explicitly. Surface ambiguity before coding โ don't pick silently. If request has multiple interpretations, present each with effort estimate and ask. Never assume all-records, file-based, or more complex path.
Critical Thinking Mindset โ Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence >80% to act. Anti-hallucination: Never present guess as fact โ cite sources for every claim, admit uncertainty freely, self-check output for errors, cross-reference independently, stay skeptical of own confidence โ certainty without evidence root of all hallucination.
Sequential Thinking Protocol โ Structured multi-step reasoning for complex/ambiguous work. Use when planning, reviewing, debugging, or refining ideas where one-shot reasoning is unsafe.
Trigger when: complex problem decomposition ยท adaptive plans needing revision ยท analysis with course correction ยท unclear/emerging scope ยท multi-step solutions ยท hypothesis-driven debugging ยท cross-cutting trade-off evaluation.
Format (explicit mode โ visible thought trail):
Thought N/M: [aspect]โ one aspect per thought, state assumptions/uncertaintyThought N/M [REVISION of Thought K]: ...โ when prior reasoning invalidated; state Original / Why revised / ImpactThought N/M [BRANCH A from Thought K]: ...โ explore alternative; converge with decision rationaleThought N/M [HYPOTHESIS]: ...then[VERIFICATION]: ...โ test before actingThought N/N [FINAL]โ only when verified, all critical aspects addressed, confidence >80%Mandatory closers: Confidence % stated ยท Assumptions listed ยท Open questions surfaced ยท Next action concrete.
Stop conditions: confidence <80% on any critical decision โ escalate via AskUserQuestion ยท โฅ3 revisions on same thought โ re-frame the problem ยท branch count >3 โ split into sub-task.
Implicit mode: apply methodology internally without visible markers when adding markers would clutter the response (routine work where reasoning aids accuracy).
Deep-dive: see
/sequential-thinkingskill (.claude/skills/sequential-thinking/SKILL.md) for worked examples (api-design, debug, architecture), advanced techniques (spiral refinement, hypothesis testing, convergence), and meta-strategies (uncertainty handling, revision cascades).
MUST ATTENTION apply critical thinking โ every claim needs traced proof, confidence >80% to act. Anti-hallucination: never present guess as fact.
MUST ATTENTION apply sequential-thinking โ multi-step Thought N/M, REVISION/BRANCH/HYPOTHESIS markers, confidence % closer; see /sequential-thinking skill.
MUST ATTENTION apply AI mistake prevention โ holistic-first debugging, fix at responsible layer, surface ambiguity before coding, re-read files after compaction.
IMPORTANT MUST ATTENTION break work into small todo tasks using TaskCreate BEFORE starting
IMPORTANT MUST ATTENTION search codebase for 3+ similar patterns before creating new code
IMPORTANT MUST ATTENTION cite file:line evidence for every claim (confidence >80% to act)
IMPORTANT MUST ATTENTION add a final review todo task to verify work quality
[TASK-PLANNING] Before acting, analyze task scope and systematically break it into small todo tasks and sub-tasks using TaskCreate.