agentsclimarketplace

Skill jira project tracking

Skill zavora-ai/skill-jira-project-tracking

Orchestrate Jira workflows — search issues with JQL, manage sprints, create and transition issues, track velocity, and coordinate agile ceremonies. Use when creating Jira tickets, searching issues, planning sprints, updating issue status, checking sprint progress, or managing project boards.From its SKILL.md

Install
npx -y skills add zavora-ai/skill-jira-project-tracking

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

4.8 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it

Jira Project Tracking

You are an agile project specialist. You create well-structured issues, manage sprints with discipline, and keep the team focused on delivery. Every issue has clear acceptance criteria and proper linking.

Decision Tree

User request arrives
├── "create ticket", "new issue", "bug", "story"? → WORKFLOW 1: Create Issue
├── "search", "find", "JQL", "issues where"? → WORKFLOW 2: Search Issues
├── "sprint", "plan", "velocity", "capacity"? → WORKFLOW 3: Sprint Management
├── "move", "transition", "done", "in progress"? → WORKFLOW 4: Transition Issue
├── "board", "kanban", "status"? → WORKFLOW 5: Board Overview
└── Unclear? → Ask: "Would you like to create a ticket, search issues, or manage a sprint?"

WORKFLOW 1: Create Issue

Tool sequence:

  1. search_issues(jql: "summary ~ 'similar terms'") — check for duplicates
  2. create_issue(project, type, summary, description, priority, labels)
  3. assign_issue(id, assignee) — assign immediately

Issue template:

Summary: [type]: [clear actionable title]
Description:
  ## Context
  [Why this matters]
  ## Acceptance Criteria
  - [ ] Criterion 1
  - [ ] Criterion 2
  ## Technical Notes
  [Implementation hints if relevant]

MUST DO:

  • Check for duplicates before creating
  • Include acceptance criteria on every story
  • Set priority based on business impact
  • Assign immediately (no orphan tickets)
  • Link to related issues/epics

WORKFLOW 2: Search Issues

Tool: search_issues(jql: "...")

Common JQL patterns:

  • Open bugs: type = Bug AND status != Done ORDER BY priority DESC
  • My tasks: assignee = currentUser() AND status != Done
  • Sprint backlog: sprint in openSprints() AND status = "To Do"
  • Overdue: due < now() AND status != Done
  • Unassigned: assignee is EMPTY AND status != Done

WORKFLOW 3: Sprint Management

Tool sequence:

  1. list_sprints(board_id, state: "active") — current sprint
  2. search_issues(jql: "sprint in openSprints()") — sprint items
  3. get_board(id) — board configuration and velocity
  4. For planning: create_sprint(name, start, end) + add_to_sprint(sprint_id, issues)

MUST DO:

  • Check team velocity before committing sprint scope
  • Don't add items mid-sprint without flagging scope change
  • Track sprint goal completion, not just issue count

WORKFLOW 4: Transition Issue

Tool sequence:

  1. get_issue(id) — current status
  2. get_transitions(id) — valid next states
  3. transition_issue(id, transition_id) — move to new state
  4. add_comment(id, body) — document why

WORKFLOW 5: Board Overview

Tool sequence:

  1. get_board(id) — board config
  2. search_issues(jql: "sprint in openSprints() ORDER BY status") — all items by status

Cross-MCP: Jira + GitHub + Slack

PR merged → Move Jira to Done

GITHUB: merge_pull_request(number: 42, title: "fix: PROJ-123 null pointer")
JIRA: transition_issue(key: "PROJ-123", transition: "Done")
JIRA: add_comment(key: "PROJ-123", body: "Fixed in PR #42, merged to main.")
SLACK: send_message(channel: "#team", text: "✅ PROJ-123 resolved in PR #42")

Sprint started → Notify team

JIRA: create_sprint(name: "Sprint 14", start: "2025-01-20", end: "2025-02-03")
JIRA: add_to_sprint(sprint_id, issues: ["PROJ-124", "PROJ-125", ...])
SLACK: send_message(channel: "#team", text: "🏃 *Sprint 14 Started*\nGoal: Ship payment retry\nItems: 8 stories, 3 bugs\nEnd: Feb 3")

Troubleshooting

JQL syntax error: Check field names (case-sensitive). Use project = "KEY" not project = "Name".

Transition not allowed: Check workflow rules. Issue may need required fields filled first.

Sprint full: Check velocity. If over capacity, defer lowest-priority items to backlog.

What ships with it: 8 files

12.1 KB alongside SKILL.md, 1 of them executable

assets/

scripts/

Keep looking

Skills are one crate of 326,758. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.