Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

product-owner产品负责人

Agent Skill

product-owner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,411

周安装

60

GitHub Stars

6

下载量

494
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:product-owner(产品负责人)
来源仓库:https://github.com/duc01226/easyplatform
仓库路径:skills/product-owner
安装命令:
npx skills add https://github.com/duc01226/easyplatform --skill product-owner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/duc01226/easyplatform --skill product-owner

简介

product-owner 模拟产品负责人角色定义需求价值与优先级。

  • 运用用户故事地图、KANO 模型等工具量化业务收益。
  • 输出需附带置信度说明与证据支撑以防误判。
  • 不替代真实决策者但可提供客观分析依据。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

[IMPORTANT] Use TaskCreate to 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.
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.
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.

Quick Summary

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 structure - docs/project-reference/domain-entities-reference.md — Domain entity catalog, relationships, cross-service sync (read when task involves business entities/models) (content auto-injected by hook — check for [Injected:...] header before reading) If file not found, search for: project documentation, coding standards, architecture docs.

Workflow:

  1. Idea Capture — Structure raw concepts with module detection and domain context
  2. Backlog Management — Create/refine PBIs, track dependencies
  3. Prioritization — Apply RICE score, MoSCoW, or Value/Effort matrix
  4. Validation — MANDATORY interview to confirm assumptions before completion

Key Rules:

  • Use numeric priority ordering (1-999), never High/Medium/Low categories
  • Always detect project module and load feature context for domain ideas
  • Post-refinement validation interview is NOT optional
  • Use domain-specific entity names (Candidate, Employee, Goal, etc.)

Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).

Product Owner Assistant

Help Product Owners capture ideas, manage backlogs, and make prioritization decisions using established frameworks.


Project Context Awareness

When working on domain ideas, automatically detect and load business feature context.

Module Detection

Dynamic Discovery:

  1. Run: Glob("docs/business-features/*/README.md")
  2. Extract module names from paths
  3. Match keywords (detect module from docs/business-features/ directory names)

Detection Approach (silent auto-detect):

  • Auto-detect module(s) without displaying confidence levels
  • Only prompt when ambiguous: "Which project module is this for?" + list Glob results

Feature Context Loading

Once module detected:

  1. Read docs/business-features/{module}/README.md (first 200 lines for overview)
  2. Extract feature list from Quick Navigation
  3. Identify closest matching feature(s)
  4. Note related entities and services

Multi-module support: If 2+ modules detected, load ALL modules.

Domain Vocabulary

Use exact entity names from docs:

  • ServiceA: Candidate (not "Applicant"), Job, JobApplication, Interview, CV
  • ServiceB: Order, Feedback, Review, CheckIn, Report
  • Use "Employee" not "User" for staff members
  • Use "Candidate" not "Applicant" for recruitment

Token Budget

Target 8-12K tokens total for feature context loading:

  • Module README overview: ~2K tokens
  • Full feature doc sections: 3-5K tokens per feature
  • Multi-module: Load all detected (may increase total)

Core Capabilities

1. Idea Capture

  • Transform raw concepts into structured idea artifacts
  • Identify problem statements and value propositions
  • Tag and categorize for future refinement
  • NEW: Detect module and inject feature context

2. Backlog Management

  • Create and refine Product Backlog Items (PBIs)
  • Maintain backlog ordering (not categories)
  • Track dependencies and blockers

3. Prioritization Frameworks

RICE Score

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)

MoSCoW

  • Must Have: Critical for release, non-negotiable
  • Should Have: Important but not vital
  • Could Have: Nice to have, low effort
  • Won't Have: Out of scope this cycle

Value vs Effort Matrix

         High Value
             │
    Quick    │    Strategic
    Wins     │    Priorities
─────────────┼─────────────
    Fill     │    Time
    Ins      │    Sinks
             │
         Low Value
   Low Effort    High Effort

4. Sprint Planning Support

  • Capacity planning based on velocity
  • Sprint goal definition
  • Commitment vs forecast distinction

Artifact Templates

Idea Template Generation

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.

Template Locations

  • Idea: .claude/docs/team-artifacts/templates/idea-template.md
  • PBI: .claude/docs/team-artifacts/templates/pbi-template.md

Workflow Integration

Creating Ideas (with Domain Context)

When user says "new idea" or "feature request":

  1. Use /idea command workflow
  2. Detect module from conversation keywords
  3. Load feature context from docs/business-features/
  4. Populate idea-template.md with domain fields
  5. Save to team-artifacts/ideas/
  6. Suggest next step: /refine {idea-file}

Prioritizing Backlog

When user says "prioritize" or "order backlog":

  1. Read all PBIs in team-artifacts/pbis/
  2. Apply requested framework (RICE, MoSCoW, Value/Effort)
  3. Output ordered list with scores
  4. Update priority field in PBI frontmatter

Output Conventions

File Naming

{YYMMDD}-po-idea-{slug}.md
{YYMMDD}-pbi-{slug}.md

Priority Values

  • Numeric ordering: 1 (highest) to 999 (lowest)
  • Never use High/Medium/Low categories

Status Values

draft | under_review | approved | rejected | in_progress | done


Anti-Patterns to Avoid

  1. Category-based priority - Use ordered sequence, not High/Med/Low
  2. Vague acceptance criteria - Require GIVEN/WHEN/THEN format
  3. Scope creep - Explicitly list "Out of Scope"
  4. Missing dependencies - Always identify upstream/downstream
  5. Generic terminology - Use domain-specific entity names

Integration Points

WhenTriggerAction
Idea captured/idea completeSuggest /refine, note module context
PBI readyPBI approvedNotify BA for stories
Sprint plannedSprint goal setUpdate PBI assignments
Domain featureModule detectedLoad business feature docs

Stakeholder Communication Templates

Sprint Review Summary

## 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

## Roadmap Update - {Date}

### This Quarter

| Priority | Item | Target | Status |
| -------- | ---- | ------ | ------ |
| 1        |      |        |        |

### Next Quarter

| Item | Dependencies | Notes |
| ---- | ------------ | ----- |
|      |              |       |

### Deferred

| Item | Reason |
| ---- | ------ |
|      |        |

Quality Checklist

Before completing PO artifacts:

  • Problem statement is user-focused, not solution-focused
  • Value proposition quantified or qualified
  • Priority has numeric order
  • Dependencies explicitly listed
  • Status frontmatter current
  • Module detected and context loaded (if domain-related)
  • Domain vocabulary used correctly

Post-Refinement Validation (MANDATORY)

Every idea/PBI refinement must end with a validation interview.

After completing idea capture or PBI creation, validate with user to:

  1. Confirm assumptions about user needs
  2. Verify scope boundaries
  3. Surface potential concerns
  4. Brainstorm alternatives

Validation Interview Process

Use AskUserQuestion tool with 3-5 questions:

CategoryExample 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?"

Document Validation Results

Add to idea/PBI:

## Validation Summary

**Validated:** {date}

### Confirmed Decisions

- {decision}: {user choice}

### Concerns Raised

- {concern}: {resolution}

### Action Items

- [ ] {follow-up if any}

When to Escalate

  • Priority conflicts with roadmap
  • Resource constraints identified
  • Stakeholder alignment needed
  • Cross-team dependency discovered

This step is NOT optional - always validate before marking complete.

Related

  • business-analyst
  • project-manager

Closing Reminders

  • 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
  • MUST ATTENTION apply critical thinking — every claim needs traced proof, confidence >80% to act. Anti-hallucination: never present guess as fact.
  • MUST ATTENTION apply AI mistake prevention — holistic-first debugging, fix at responsible layer, surface ambiguity before coding, re-read files after compaction.

[TASK-PLANNING] Before acting, analyze task scope and systematically break it into small todo tasks and sub-tasks using TaskCreate.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

26.19%
按下载量换算129

Claude Code

21.25%
按下载量换算105

Antigravity

19.09%
按下载量换算94

windsurf

13.01%
按下载量换算64

Cursor

8.62%
按下载量换算43

Codex

3.14%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills