← Back to Skills Marketplace
alirezarezvani

Agile Product Owner

by Alireza Rezvani · GitHub ↗ · v2.1.1 · MIT-0
cross-platform ✓ Security Clean
2489
Downloads
5
Stars
11
Active Installs
3
Versions
Install in OpenClaw
/install agile-product-owner
Description
Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking....
README (SKILL.md)

Agile Product Owner

Backlog management and sprint execution toolkit for product owners, including user story generation, acceptance criteria patterns, sprint planning, and velocity tracking.


Table of Contents


User Story Generation Workflow

Create INVEST-compliant user stories from requirements:

  1. Identify the persona (who benefits from this feature)
  2. Define the action or capability needed
  3. Articulate the benefit or value delivered
  4. Write acceptance criteria using Given-When-Then
  5. Estimate story points using Fibonacci scale
  6. Validate against INVEST criteria
  7. Add to backlog with priority
  8. Validation: Story passes all INVEST criteria; acceptance criteria are testable

User Story Template

As a [persona],
I want to [action/capability],
So that [benefit/value].

Example:

As a marketing manager,
I want to export campaign reports to PDF,
So that I can share results with stakeholders who don't have system access.

Story Types

Type Template Example
Feature As a [persona], I want to [action] so that [benefit] As a user, I want to filter search results so that I find items faster
Improvement As a [persona], I need [capability] to [goal] As a user, I need faster page loads to complete tasks without frustration
Bug Fix As a [persona], I expect [behavior] when [condition] As a user, I expect my cart to persist when I refresh the page
Enabler As a developer, I need to [technical task] to enable [capability] As a developer, I need to implement caching to enable instant search

Persona Reference

Persona Typical Needs Context
End User Efficiency, simplicity, reliability Daily feature usage
Administrator Control, visibility, security System management
Power User Automation, customization, shortcuts Expert workflows
New User Guidance, learning, safety Onboarding

Acceptance Criteria Patterns

Write testable acceptance criteria using Given-When-Then format.

Given-When-Then Template

Given [precondition/context],
When [action/trigger],
Then [expected outcome].

Examples:

Given the user is logged in with valid credentials,
When they click the "Export" button,
Then a PDF download starts within 2 seconds.

Given the user has entered an invalid email format,
When they submit the registration form,
Then an inline error message displays "Please enter a valid email address."

Given the shopping cart contains items,
When the user refreshes the browser,
Then the cart contents remain unchanged.

Acceptance Criteria Checklist

Each story should include criteria for:

Category Example
Happy Path Given valid input, When submitted, Then success message displayed
Validation Should reject input when required field is empty
Error Handling Must show user-friendly message when API fails
Performance Should complete operation within 2 seconds
Accessibility Must be navigable via keyboard only

Minimum Criteria by Story Size

Story Points Minimum AC Count
1-2 3-4 criteria
3-5 4-6 criteria
8 5-8 criteria
13+ Split the story

See references/user-story-templates.md for complete template library.


Epic Breakdown Workflow

Break epics into deliverable sprint-sized stories:

  1. Define epic scope and success criteria
  2. Identify all personas affected by the epic
  3. List all capabilities needed for each persona
  4. Group capabilities into logical stories
  5. Validate each story is ≤8 points
  6. Identify dependencies between stories
  7. Sequence stories for incremental delivery
  8. Validation: Each story delivers standalone value; total stories cover epic scope

Splitting Techniques

Technique When to Use Example
By workflow step Linear process "Checkout" → "Add to cart" + "Enter payment" + "Confirm order"
By persona Multiple user types "Dashboard" → "Admin dashboard" + "User dashboard"
By data type Multiple inputs "Import" → "Import CSV" + "Import Excel"
By operation CRUD functionality "Manage users" → "Create" + "Edit" + "Delete"
Happy path first Risk reduction "Feature" → "Basic flow" + "Error handling" + "Edge cases"

Epic Example

Epic: User Dashboard

Breakdown:

Epic: User Dashboard (34 points total)
├── US-001: View key metrics (5 pts) - End User
├── US-002: Customize layout (5 pts) - Power User
├── US-003: Export data to CSV (3 pts) - End User
├── US-004: Share with team (5 pts) - End User
├── US-005: Set up alerts (5 pts) - Power User
├── US-006: Filter by date range (3 pts) - End User
├── US-007: Admin overview (5 pts) - Admin
└── US-008: Enable caching (3 pts) - Enabler

Sprint Planning Workflow

Plan sprint capacity and select stories:

  1. Calculate team capacity (velocity × availability)
  2. Review sprint goal with stakeholders
  3. Select stories from prioritized backlog
  4. Fill to 80-85% of capacity (committed)
  5. Add stretch goals (10-15% additional)
  6. Identify dependencies and risks
  7. Break complex stories into tasks
  8. Validation: Committed points ≤85% capacity; all stories have acceptance criteria

Capacity Calculation

Sprint Capacity = Average Velocity × Availability Factor

Example:
Average Velocity: 30 points
Team availability: 90% (one member partially out)
Adjusted Capacity: 27 points

Committed: 23 points (85% of 27)
Stretch: 4 points (15% of 27)

Availability Factors

Scenario Factor
Full sprint, no PTO 1.0
One team member out 50% 0.9
Holiday during sprint 0.8
Multiple members out 0.7

Sprint Loading Template

Sprint Capacity: 27 points
Sprint Goal: [Clear, measurable objective]

COMMITTED (23 points):
[H] US-001: User dashboard (5 pts)
[H] US-002: Export feature (3 pts)
[H] US-003: Search filter (5 pts)
[M] US-004: Settings page (5 pts)
[M] US-005: Help tooltips (3 pts)
[L] US-006: Theme options (2 pts)

STRETCH (4 points):
[L] US-007: Sort options (2 pts)
[L] US-008: Print view (2 pts)

See references/sprint-planning-guide.md for complete planning procedures.


Backlog Prioritization

Prioritize backlog using value and effort assessment.

Priority Levels

Priority Definition Sprint Target
Critical Blocking users, security, data loss Immediate
High Core functionality, key user needs This sprint
Medium Improvements, enhancements Next 2-3 sprints
Low Nice-to-have, minor improvements Backlog

Prioritization Factors

Factor Weight Questions
Business Value 40% Revenue impact? User demand? Strategic alignment?
User Impact 30% How many users? How frequently used?
Risk/Dependencies 15% Technical risk? External dependencies?
Effort 15% Size? Complexity? Uncertainty?

INVEST Criteria Validation

Before adding to sprint, validate each story:

Criterion Question Pass If...
Independent Can this be developed without other uncommitted stories? No blocking dependencies
Negotiable Is the implementation flexible? Multiple approaches possible
Valuable Does this deliver user or business value? Clear benefit in "so that"
Estimable Can the team estimate this? Understood well enough to size
Small Can this complete in one sprint? ≤8 story points
Testable Can we verify this is done? Clear acceptance criteria

Reference Documentation

User Story Templates

references/user-story-templates.md contains:

  • Standard story formats by type (feature, improvement, bug fix, enabler)
  • Acceptance criteria patterns (Given-When-Then, Should/Must/Can)
  • INVEST criteria validation checklist
  • Story point estimation guide (Fibonacci scale)
  • Common story antipatterns and fixes
  • Story splitting techniques

Sprint Planning Guide

references/sprint-planning-guide.md contains:

  • Sprint planning meeting agenda
  • Capacity calculation formulas
  • Backlog prioritization framework (WSJF)
  • Sprint ceremony guides (standup, review, retro)
  • Velocity tracking and burndown patterns
  • Definition of Done checklist
  • Sprint metrics and targets

Tools

User Story Generator

# Generate stories from sample epic
python scripts/user_story_generator.py

# Plan sprint with capacity
python scripts/user_story_generator.py sprint 30

Generates:

  • INVEST-compliant user stories
  • Given-When-Then acceptance criteria
  • Story point estimates (Fibonacci scale)
  • Priority assignments
  • Sprint loading with committed and stretch items

Sample Output

USER STORY: USR-001
========================================
Title: View Key Metrics
Type: story
Priority: HIGH
Points: 5

Story:
As a End User, I want to view key metrics and KPIs
so that I can save time and work more efficiently

Acceptance Criteria:
  1. Given user has access, When they view key metrics, Then the result is displayed
  2. Should validate input before processing
  3. Must show clear error message when action fails
  4. Should complete within 2 seconds
  5. Must be accessible via keyboard navigation

INVEST Checklist:
  ✓ Independent
  ✓ Negotiable
  ✓ Valuable
  ✓ Estimable
  ✓ Small
  ✓ Testable

Sprint Metrics

Track sprint health and team performance.

Key Metrics

Metric Formula Target
Velocity Points completed / sprint Stable ±10%
Commitment Reliability Completed / Committed >85%
Scope Change Points added or removed mid-sprint \x3C10%
Carryover Points not completed \x3C15%

Velocity Tracking

Sprint 1: 25 points
Sprint 2: 28 points
Sprint 3: 30 points
Sprint 4: 32 points
Sprint 5: 29 points
------------------------
Average Velocity: 28.8 points
Trend: Stable

Planning: Commit to 24-26 points

Definition of Done

Story is complete when:

  • Code complete and peer reviewed
  • Unit tests written and passing
  • Acceptance criteria verified
  • Documentation updated
  • Deployed to staging environment
  • Product Owner accepted
  • No critical bugs remaining
Usage Guidance
This skill appears internally consistent and safe from a permissions/credential perspective. Before running the included Python script, review it locally (it appears to only generate stories and acceptance criteria with no network calls). Because the skill source and homepage are unknown, avoid running it with elevated privileges or in environments containing sensitive data until you confirm its origin. Treat outputs as advisory — review generated stories and estimates with your team before committing them to your backlog.
Capability Analysis
Type: OpenClaw Skill Name: agile-product-owner Version: 2.1.1 The skill bundle is a legitimate toolkit for Agile Product Ownership, providing workflows and tools for backlog management and sprint planning. The core logic in `scripts/user_story_generator.py` is well-structured, handles data locally, and lacks any high-risk behaviors such as network requests, file system modifications, or sensitive data access. All documentation, including `SKILL.md`, is consistent with the stated purpose and contains no evidence of prompt injection or malicious instructions.
Capability Assessment
Purpose & Capability
Name/description (product ownership, user stories, sprint planning) match the included SKILL.md, reference docs, and the user_story_generator.py script; nothing requests unrelated cloud creds, binaries, or config paths.
Instruction Scope
SKILL.md provides templates, workflows, and guidance for backlog/sprint tasks and does not instruct the agent to read system files, access environment secrets, or transmit data to external endpoints; all instructions stay within the skill's stated domain.
Install Mechanism
No install spec is present (instruction-only), so nothing will be downloaded or written during install; the single Python script is included in the bundle and does not imply additional installation steps.
Credentials
The skill declares no required environment variables, credentials, or config paths. The Python script imports only standard libs (json, typing) and contains no code that reads env vars or makes network/system calls.
Persistence & Privilege
always is false and the skill does not request or attempt to modify other skills or system-wide agent settings. It does not require persistent elevated privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agile-product-owner
  3. After installation, invoke the skill by name or use /agile-product-owner
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.1.1
v2.1.1: optimization, reference splits
v1.0.0
Initial release of the Agile Product Owner skill: - Provides workflows for user story creation, acceptance criteria, epic breakdown, and sprint planning. - Includes templates and checklists for user stories and acceptance criteria using industry standards (INVEST, Given-When-Then). - Offers guidance on sprint capacity, loading, and team availability calculations. - Features prioritization methods for backlog management based on business value and user impact. - Contains references and tools for effective backlog management and sprint execution.
v0.1.0
Initial release offering a comprehensive toolkit for agile product ownership. - Provides workflows and templates for writing user stories, acceptance criteria, and breaking down epics. - Includes sprint planning guidance, capacity/velocity calculation, and backlog prioritization techniques. - Offers INVEST and Given-When-Then quality frameworks for story definition. - Supplies persona references, acceptance criteria patterns, and epic splitting strategies. - Designed for user story creation, sprint execution, estimation, and backlog management.
Metadata
Slug agile-product-owner
Version 2.1.1
License MIT-0
All-time Installs 11
Active Installs 11
Total Versions 3
Frequently Asked Questions

What is Agile Product Owner?

Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking.... It is an AI Agent Skill for Claude Code / OpenClaw, with 2489 downloads so far.

How do I install Agile Product Owner?

Run "/install agile-product-owner" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agile Product Owner free?

Yes, Agile Product Owner is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Agile Product Owner support?

Agile Product Owner is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agile Product Owner?

It is built and maintained by Alireza Rezvani (@alirezarezvani); the current version is v2.1.1.

💬 Comments