Manage and prioritize the product backlog including ordering, refinement status tracking, and grooming operations.
Manages and prioritizes Jira product backlog with MoSCoW prioritization and refinement tracking.
/plugin marketplace add marcel-ngan/ai-dev-team/plugin install ai-dev-team@ai-dev-team-marketplaceThis 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.
| 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 |
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.