Fetches and analyzes Jira tickets, adds structured comments, transitions status, or searches issues with JQL. Produces requirement breakdowns, test scenarios, and summaries.
npx claudepluginhub pcoulbourne/everything-claude-code# Jira Command Interact with Jira tickets directly from your workflow — fetch tickets, analyze requirements, add comments, and transition status. ## Usage ## What This Command Does 1. **Get & Analyze** — Fetch a Jira ticket and extract requirements, acceptance criteria, test scenarios, and dependencies 2. **Comment** — Add structured progress updates to a ticket 3. **Transition** — Move a ticket through workflow states (To Do → In Progress → Done) 4. **Search** — Find issues using JQL queries ## How It Works ### `/jira get <TICKET-KEY>` 1. Fetch the ticket from Jira (via MCP `jira_...
/jiraFetches and analyzes Jira tickets, adds structured comments, transitions status, or searches issues with JQL. Produces requirement breakdowns, test scenarios, and summaries.
/jiraShow Jira integration status, available tools, and help for jira-task commands. Use when user types /jira, asks about Jira connection, or wants to see available Jira commands.
/jiraManage Jira issues, sprints, and boards — create, update, transition, search, and manage sprints.
/jiraCopy to clipboard for Jira Cloud (Markdown). Specify what to copy, or auto-detects from context.
/jiraFetches and analyzes Jira tickets, adds structured comments, transitions status, or searches issues with JQL. Produces requirement breakdowns, test scenarios, and summaries.
/jiraInteract with Jira Cloud REST API v3. Requires JIRA_URL, JIRA_USERNAME, and JIRA_PERSONAL_TOKEN environment variables.
Interact with Jira tickets directly from your workflow — fetch tickets, analyze requirements, add comments, and transition status.
/jira get <TICKET-KEY> # Fetch and analyze a ticket
/jira comment <TICKET-KEY> # Add a progress comment
/jira transition <TICKET-KEY> # Change ticket status
/jira search <JQL> # Search issues with JQL
/jira get <TICKET-KEY>jira_get_issue or REST API)Ticket: PROJ-1234
Summary: [title]
Status: [status]
Priority: [priority]
Type: [Story/Bug/Task]
Requirements:
1. [extracted requirement]
2. [extracted requirement]
Acceptance Criteria:
- [ ] [criterion from ticket]
Test Scenarios:
- Happy Path: [description]
- Error Case: [description]
- Edge Case: [description]
Dependencies:
- [linked issues, APIs, services]
Recommended Next Steps:
- /plan to create implementation plan
- /tdd to implement with tests first
/jira comment <TICKET-KEY>/jira transition <TICKET-KEY>/jira search <JQL>This command requires Jira credentials. Choose one:
Option A — MCP Server (recommended):
Add jira to your mcpServers config (see mcp-configs/mcp-servers.json for the template).
Option B — Environment variables:
export JIRA_URL="https://yourorg.atlassian.net"
export JIRA_EMAIL="your.email@example.com"
export JIRA_API_TOKEN="your-api-token"
If credentials are missing, stop and direct the user to set them up.
After analyzing a ticket:
/plan to create an implementation plan from the requirements/tdd to implement with test-driven development/code-review after implementation/jira comment to post progress back to the ticket/jira transition to move the ticket when work is completeskills/jira-integration/mcp-configs/mcp-servers.json → jira