From ai-dev-team
Manage and prioritize the product backlog including ordering, refinement status tracking, and grooming operations.
npx claudepluginhub marcel-Ngan/ai-dev-team --plugin ai-dev-teamThis skill uses the workspace's default tool permissions.
Manage and prioritize the product backlog including ordering, refinement status tracking, and grooming operations.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
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 |