jira-ticket-fetcher

Fetch Jira ticket details by ID or text search via the Jira CLI.

Updated Jul 8, 2024
One-click install
npx skills add https://github.com/alexismanuel/dotfiles --skill jira-ticket-fetcher
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: jira-ticket-fetcher
Source: https://github.com/alexismanuel/dotfiles/tree/main/.opencode/skill/jira-ticket-fetcher
Command: npx skills add https://github.com/alexismanuel/dotfiles --skill jira-ticket-fetcher

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill enables fetching Jira ticket content using the Jira CLI. It supports retrieving specific tickets by ID or searching for tickets by text content, with configurable search scope (current sprint vs all projects).

Core Features & Use Cases

  • Fetch Ticket by ID: Retrieve full ticket details using the Jira CLI
  • Search Tickets by Text: Find tickets by descriptive text with scope control
  • Current Sprint Operations: Get all tickets from the current active sprint

Quick Start

  • Fetch a ticket by ID: python scripts/fetch_ticket.py RD-3891
  • Text search in current sprint: python scripts/fetch_ticket.py "engine i18n epic"
  • Broad search across all projects: python scripts/fetch_ticket.py "authentication" --scope=all

Frequently Asked Questions about jira-ticket-fetcher

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Jira tickets by ID using the CLI?

Fetch Jira tickets by ID by running the Jira CLI command with the ticket identifier. This Skill retrieves full ticket details including summary, status, type, assignee, and description with structured formatting.

Can I search for Jira tickets by text content across my sprint?

Search Jira tickets by descriptive text within the current sprint scope using the Jira CLI. The Skill performs text-based lookup and returns matching tickets with key, status, and full details.

What's the best way to automate Jira ticket retrieval in my workflow?

Automate ticket retrieval by invoking the Jira CLI through scripts that auto-detect ticket IDs or execute text searches. This Skill handles scope configuration, query execution, and structured result formatting for integration into automation pipelines.

Does this work for searching across all projects, not just the current sprint?

Yes, search scope is configurable. By default searches target the current sprint, but you can extend searches to all projects using the --scope=all parameter with the Jira CLI.

What Jira ticket information does this Skill return?

This Skill returns structured ticket data including key, summary, status, type, assignee, creation date, update date, and full description with clear formatting for downstream processing.