Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

agile-product-owner敏捷产品负责人

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add rickydwilson-dcs/claude-skills --skill "agile-product-owner"

简介

agile-product-owner 用于查找、检索和筛选相关信息,支持敏捷产品管理。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中根据关键词定位产品需求或策略文档。
  • 通过 npx 命令从 rickydwilson-dcs/claude-skills 仓库安装并使用该技能。
  • 安装前需验证仓库路径和技能名称,注意潜在的文件读写和网络访问权限。
  • 建议参考原始 README 了解具体应用场景和输入输出规范后再使用。

SKILL.md

name
agile-product-owner
title
Agile Product Owner Skill Package
description
Agile product ownership toolkit for Senior Product Owner including INVEST-compliant user story generation, sprint planning, backlog management, and velocity tracking. Use for story writing, sprint planning, stakeholder communication, and agile ceremonies.
domain
product
subdomain
product-management
difficulty
intermediate
time-saved
TODO: Quantify time savings
frequency
TODO: Estimate usage frequency
use-cases
related-agents
[]
related-skills
[]
related-commands
[]
orchestrated-by
[]
dependencies
scripts
[]
references
[]
assets
[]
compatibility
python-version
3.8+
platforms
[macos, linux, windows]
tech-stack
[Python 3.8+, CLI, CSV processing, JSON export]
examples
title
Example Usage
input
TODO: Add example input for agile-product-owner
output
TODO: Add expected output
stats
downloads
0
stars
0
rating
0.0
reviews
0
version
v1.0.0
author
Claude Skills Team
contributors
[]
created
2025-10-19
updated
2025-11-08
license
MIT
tags
[agile, owner, product]
featured
false
verified
true

Agile Product Owner

Overview

This skill provides [TODO: Add 2-3 sentence overview].

Core Value: [TODO: Add value proposition with metrics]

Target Audience: [TODO: Define target users]

Use Cases: [TODO: List 3-5 primary use cases]

Core Capabilities

  • [Capability 1] - [Description]
  • [Capability 2] - [Description]
  • [Capability 3] - [Description]
  • [Capability 4] - [Description]

Key Workflows

Workflow 1: [Workflow Name]

Time: [Duration estimate]

Steps:

  1. [Step 1]
  2. [Step 2]
  3. [Step 3]

Expected Output: [What success looks like]

Workflow 2: [Workflow Name]

Time: [Duration estimate]

Steps:

  1. [Step 1]
  2. [Step 2]
  3. [Step 3]

Expected Output: [What success looks like]

Complete toolkit for agile product ownership - from backlog refinement to sprint delivery. This skill provides Python tools for story generation, comprehensive frameworks for agile ceremonies, and battle-tested templates for user stories and epics.

What This Skill Provides:

  • INVEST-compliant user story generator with sprint planning
  • Complete agile ceremony frameworks (planning, review, retro)
  • Velocity tracking and capacity planning methods
  • Story estimation and backlog refinement processes

Best For:

  • Breaking epics into deliverable user stories
  • Sprint planning and capacity allocation
  • Running effective agile ceremonies
  • Tracking team velocity and burndown

Quick Start

Generate User Stories

# From sample epic
python scripts/user_story_generator.py

# From custom epic
python scripts/user_story_generator.py epic.json

# Sprint planning (30 points)
python scripts/user_story_generator.py --sprint --capacity 30

Story Quality Check

Use INVEST criteria to validate stories:

  • Independent: Can complete without dependencies
  • Negotiable: Flexible on implementation
  • Valuable: Delivers user/business value
  • Estimable: Team can size it
  • Small: Fits in one sprint
  • Testable: Clear success criteria

See frameworks.md for complete INVEST guidelines.

Core Workflows

1. Epic Breakdown Process

Steps:

  1. Define epic with scope and personas
  2. Generate stories: python scripts/user_story_generator.py epic.json
  3. Review INVEST criteria compliance
  4. Refine acceptance criteria
  5. Prioritize and estimate with team

Epic JSON Format:

{
  "name": "User Dashboard",
  "description": "Create dashboard for users",
  "personas": ["end_user", "power_user"],
  "scope": [
    "View key metrics and KPIs",
    "Customize dashboard layout",
    "Export dashboard data"
  ],
  "technical_requirements": [
    "Implement caching for performance"
  ]
}

Detailed Process: See frameworks.md for INVEST criteria and backlog refinement.

Templates: See templates.md for epic and user story templates.

2. Sprint Planning Process

Part 1: What Will We Build? (2 hours)

  1. Set sprint goal aligned with quarterly OKRs
  2. Calculate team capacity (velocity × sprint days)
  3. Pull stories from backlog until capacity reached
  4. Identify dependencies and risks

Part 2: How Will We Build It? (2 hours)

  1. Break stories into technical tasks
  2. Estimate task hours
  3. Assign initial owners
  4. Commit to sprint scope

Sprint Planning Tool:

python scripts/user_story_generator.py epic.json --sprint --capacity 30

Detailed Framework: See frameworks.md for complete sprint planning guide.

Templates: See templates.md for sprint planning agenda.

3. Backlog Refinement Process

Weekly Activity (1 hour mid-sprint):

  1. Review upcoming epics
  2. Break into user stories
  3. Write acceptance criteria
  4. Estimate with planning poker
  5. Ensure 2-3 sprints of refined backlog

Estimation Scale:

  • 1-2 points: Simple (2-4 hours)
  • 3-5 points: Moderate (1-3 days)
  • 8 points: Complex (3-5 days)
  • 13+ points: Too large - needs breakdown

Detailed Process: See frameworks.md for refinement and estimation methods.

Templates: See templates.md for story templates and splitting techniques.

Python Tools

user_story_generator.py

INVEST-compliant story generator with sprint planning.

Key Features:

  • Epic breakdown into user stories
  • Automatic acceptance criteria generation
  • Story point estimation
  • INVEST criteria validation
  • Sprint capacity planning
  • Multiple output formats (text, JSON, CSV)

Usage:

# Basic story generation
python3 scripts/user_story_generator.py epic.json

# Sprint planning
python3 scripts/user_story_generator.py --sprint --capacity 30

# JSON output for Jira import
python3 scripts/user_story_generator.py -o json -f stories.json

# CSV for spreadsheet import
python3 scripts/user_story_generator.py -o csv -f backlog.csv

# Verbose mode (show all stories)
python3 scripts/user_story_generator.py -v

Story Point Estimation:

  • 1 pt: Simple, basic, view (2-4 hours)
  • 3 pts: Create, edit, update (1 day)
  • 5 pts: Moderate complexity (2-3 days)
  • 8 pts: Complex, integrate (3-5 days)
  • 13 pts: Redesign, refactor (1-2 weeks, needs breakdown)

Complete Documentation: See tools.md for full usage guide, input formats, and integration patterns.

Reference Documentation

Frameworks (frameworks.md)

Comprehensive agile methodologies:

  • INVEST Criteria: Detailed guidelines for each criterion
  • Sprint Planning: Two-part planning framework
  • Sprint Review & Retrospective: Complete ceremony guides
  • Daily Standup: Three questions format and anti-patterns
  • Backlog Refinement: Estimation and prioritization
  • Velocity Tracking: Calculation, trends, burndown charts
  • Release Planning: Capacity and timeline forecasting

Templates (templates.md)

Ready-to-use templates:

  • User Story Templates: Standard, feature, technical, bug fix formats
  • Epic Templates: Complete epic structure with examples
  • Sprint Ceremony Agendas: Planning, review, retrospective formats
  • Story Splitting Techniques: By workflow, business rules, data entry
  • Best Practices: Writing effective stories and avoiding pitfalls

Tools (tools.md)

Python tool documentation:

  • user_story_generator.py: Complete usage guide
  • Input Formats: Epic JSON structure
  • Output Formats: Text, JSON, CSV examples
  • Command-Line Options: All flags and parameters
  • Integration Patterns: Jira, Linear, ProductBoard workflows
  • Troubleshooting: Common issues and solutions
  • Best Practices: DO/DON'T guidelines

Integration Points

This toolkit integrates with:

  • Project Management: Jira, Linear, Azure DevOps, Asana
  • Collaboration: Confluence, Notion, Miro
  • Version Control: GitHub Issues, GitLab Issues
  • Roadmapping: ProductBoard, Aha!, Roadmunk

See tools.md for detailed integration workflows.

Quick Commands

# Generate stories from sample
python scripts/user_story_generator.py

# Generate from custom epic
python scripts/user_story_generator.py epic.json

# Sprint planning (30 points)
python scripts/user_story_generator.py --sprint --capacity 30

# Export as JSON
python scripts/user_story_generator.py -o json -f stories.json

# Export as CSV
python scripts/user_story_generator.py -o csv -f backlog.csv

# Verbose output (all stories)
python scripts/user_story_generator.py -v

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

27.97%
按下载量换算48

windsurf

20.62%
按下载量换算35

trae

18.98%
按下载量换算33

OpenCode

12.6%
按下载量换算22

Codex

8.62%
按下载量换算15

Antigravity

3.32%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add rickydwilson-dcs/claude-skills --skill "agile-product-owner" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills