Create and update Jira issues, epics, and sprints; manage backlog and sprint transitions. Use when you say: 'create a ticket', 'open a story', 'link an epic', 'start a sprint', or 'search the backlog'.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
For project-specific project keys, workflow state IDs, and board configuration, see tracker-config.md.
// Search issues
{ "jql": "project = PROJ AND status = 'In Progress' ORDER BY priority DESC" }
// Create issue
{ "project": "PROJ", "summary": "[UI] Build PriceRangeFilter", "type": "Task", "description": "Objective: ...\nFiles: ...\nAC: ..." }
// Transition issue
{ "issueKey": "PROJ-42", "status": "In Progress" }Check Jira first; if untracked, create a [Bug] issue in Backlog with symptoms, repro steps, and affected files.
Use [Area] Short description format in the Summary field:
[Schema] Add priceRange field to place type
[DB] Add price_range column and migration
[Query] Update query with priceRange filter
[UI] Build PriceRangeFilter component
[Page] Integrate price filter into /places
[Test] E2E test price range filtering
[Docs] Update data model documentationBacklog → To Do → In Progress → In Review → DoneTo Do → In Progress on start; In Progress → Done on verified completion.PROJ-123).Every issue must include: Objective (one sentence), Files (partition) (paths this agent may modify), Acceptance Criteria (verifiable checklist), Dependencies (issue keys).
Group related issues under a Jira Epic; use components or labels for domain grouping.
Common queries for agent workflows:
project = PROJ AND status = "In Progress" ORDER BY priority DESC
project = PROJ AND status = "To Do" ORDER BY priority DESC
project = PROJ AND type = Bug AND status != Done ORDER BY priority DESC
project = PROJ AND sprint in openSprints() ORDER BY priority DESC
project = PROJ AND priority = Highest AND status != Donef5c8508
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.