Manage and prioritize the product backlog including ordering, refinement status tracking, and grooming operations.
/plugin marketplace add marcel-Ngan/ai-dev-team/plugin install marcel-ngan-ai-dev-team@marcel-Ngan/ai-dev-teamThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Manage and prioritize the product backlog including ordering, refinement status tracking, and grooming operations.
| Tool | Purpose |
|---|---|
Atlassian:searchJiraIssuesUsingJql | Query backlog items |
Atlassian:editJiraIssue | Update priority, labels, rank |
Atlassian:addCommentToJiraIssue | Log prioritization decisions |
Atlassian:getJiraIssue | Fetch issue details |
All values come from config/project.json:
{
"cloudId": "{{jira.cloudId}}",
"projectKey": "{{jira.development.projectKey}}"
}
Atlassian:searchJiraIssuesUsingJql({
cloudId: "{{jira.cloudId}}",
jql: "project = {{jira.development.projectKey}} AND status = 'Backlog' ORDER BY rank ASC",
fields: ["summary", "status", "priority", "labels", "issuetype"]
})
Atlassian:searchJiraIssuesUsingJql({
cloudId: "{{jira.cloudId}}",
jql: "project = {{jira.development.projectKey}} AND status = 'Backlog' AND labels NOT IN ('refined') AND issuetype = Story ORDER BY created DESC",
fields: ["summary", "description", "labels"]
})
Atlassian:searchJiraIssuesUsingJql({
cloudId: "{{jira.cloudId}}",
jql: "project = {{jira.development.projectKey}} AND labels = 'refined' AND sprint IS EMPTY ORDER BY rank ASC",
fields: ["summary", "priority", "labels", "customfield_10016"] // story points
})
| Priority | Label | Description |
|---|---|---|
| Must Have | must-have | Critical for release |
| Should Have | should-have | Important but not critical |
| Could Have | could-have | Nice to have |
| Won't Have | wont-have | Out of scope for now |
Atlassian:editJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "PROJECT-45",
fields: {
labels: ["refined", "must-have", "agent-generated"]
}
})
Atlassian:addCommentToJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "PROJECT-45",
commentBody: `🤖 **Product Owner Agent**
**Priority Set:** Must Have
**Rationale:**
- Core user functionality
- Blocking other stories
- Stakeholder requested for MVP
**Sprint Candidate:** Yes - next sprint`
})
A story is refined when:
Atlassian:editJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "PROJECT-45",
fields: {
labels: ["refined", "must-have"]
}
})
Atlassian:addCommentToJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "PROJECT-45",
commentBody: `🤖 **Product Owner Agent**
**Story Refined** ✅
**Checklist:**
- [x] Acceptance criteria complete (4 criteria)
- [x] Technical review by Architect
- [x] QA testability confirmed
- [x] Story points: 5
**Ready for sprint planning.**`
})
// Get unrefined items created in last 2 weeks
Atlassian:searchJiraIssuesUsingJql({
cloudId: "{{jira.cloudId}}",
jql: "project = {{jira.development.projectKey}} AND issuetype IN (Story, Task) AND labels NOT IN ('refined') AND created >= -14d ORDER BY created DESC",
maxResults: 20,
fields: ["summary", "description", "labels", "created"]
})
Atlassian:addCommentToJiraIssue({
cloudId: "{{jira.cloudId}}",
issueIdOrKey: "PROJECT-45",
commentBody: `🤖 **Product Owner Agent** - Backlog Grooming
**Session Date:** {{date}}
**Discussion:**
- Clarified edge case: empty cart behavior
- Added AC for error handling
- Architect confirmed feasibility
**Actions:**
- [x] Updated acceptance criteria
- [x] Added technical notes
- [ ] Pending QA review
**Status:** Needs QA review before refined`
})
// Count by status
Atlassian:searchJiraIssuesUsingJql({
cloudId: "{{jira.cloudId}}",
jql: "project = {{jira.development.projectKey}} AND issuetype = Story AND sprint IS EMPTY",
maxResults: 100,
fields: ["labels"]
})
## Backlog Health Report
**Total Backlog Items:** 45
**Refined:** 18 (40%)
**Unrefined:** 27 (60%)
**By Priority:**
- Must Have: 8
- Should Have: 12
- Could Have: 15
- Unprioritized: 10
**Recommendation:**
10 stories need prioritization before next sprint planning.
| Agent | Usage |
|---|---|
| Product Owner | Primary user - prioritizes, refines, grooms |
| Business Analyst | Marks stories as refined after analysis |
| Orchestrator | Queries backlog for sprint planning |
| Project Manager | Backlog health reporting |
| Error | Cause | Resolution |
|---|---|---|
| No results | Wrong project key or status | Verify JQL syntax and project |
| 403 Forbidden | No project access | Check permissions |
| Invalid field | Custom field not available | Use correct field ID |
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.