# Jira Management

> This skill should be used when the user asks about Jira issues, tickets, projects, sprints, or bug tracking. Activates for creating, updating, searching, or commenting on Jira issues. Use when this capability is needed.

- Skill: `tomevault-io/jira-management` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/jira-management`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/jira-management/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/jira-management

---


When the user asks about Jira or issue tracking, use the Jira MCP tools.

## When to Use This Skill

Activate when the user:

- Wants to create issues ("Create a bug ticket", "File a story")
- Needs to search issues ("Find open bugs", "Show my tasks")
- Updates issues ("Change priority", "Assign to me", "Update status")
- Adds comments ("Comment on PROJ-123")
- Asks about projects ("List projects", "Show project info")

## Tools Reference

| Task | Tool |
|------|------|
| Search issues | `jira_search_issues` (JQL) |
| Create issue | `jira_create_issue` |
| Update issue | `jira_update_issue` |
| Get issue | `jira_get_issue` |
| Add comment | `jira_add_comment` |
| Create subtask | `jira_create_subtask` |
| List projects | `jira_get_visible_projects` |
| My issues | `jira_get_my_issues` |
| Get metadata | `jira_get_create_meta` |

## JQL Quick Reference

```
project = PROJ                    # Filter by project
status = "In Progress"            # Filter by status
assignee = currentUser()          # Your issues
priority = High                   # Filter by priority
sprint in openSprints()           # Current sprint
labels = bug                      # Filter by label
ORDER BY updated DESC             # Sort by updated
```

## Example Workflows

**Create a bug:**
```
jira_get_create_meta project="PROJ"  # Get available fields
jira_create_issue project="PROJ" issueType="Bug" summary="..." description="..."
```

**Update and comment:**
```
jira_update_issue issueKey="PROJ-123" priority="High"
jira_add_comment issueKey="PROJ-123" body="Updated priority based on..."
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/freema) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

