Skip to main content
The cops jira issue commands let you inspect individual Jira issues and search across your project. They call the Jira REST API v2 and the dev-status REST API.

cops jira issue get

Fetch full details for a single issue by its issue key.Alias: cops jira issue details

Usage

cops jira issue get <issueKey> [flags]

Arguments

ArgumentRequiredDescription
issueKeyYesIssue key, e.g. ABC-123

Flags

--output
string
default:"table"
Output format: table, json, or markdown.
--insecure
boolean
default:"false"
Disable TLS certificate validation. Use only with self-signed certificates in trusted networks.
--profile
string
Override the active config profile.

Output columns

key, summary, status, type, assignee, reporter, fixVersions

Examples

cops jira issue get ABC-123
key      summary                          status       type    assignee        reporter       fixVersions
───────  ───────────────────────────────  ───────────  ──────  ──────────────  ─────────────  ───────────
ABC-123  Allow users to reset password    In Progress  Story   Alice Example   Bob Example    2026-06-01
Get the sprint that a specific issue is currently assigned to.

Usage

cops jira issue sprint <issueKey> [flags]

Arguments

ArgumentRequiredDescription
issueKeyYesIssue key, e.g. ABC-123

Flags

--output
string
default:"table"
Output format: table, json, or markdown.
--insecure
boolean
default:"false"
Disable TLS certificate validation. Use only with self-signed certificates in trusted networks.
--profile
string
Override the active config profile.

Output columns

issueKey, sprintId, sprintName, sprintState, startDate, endDateIf the issue is not assigned to any sprint, the output is empty.

Examples

cops jira issue sprint ABC-123
issueKey  sprintId  sprintName      sprintState  startDate   endDate
────────  ────────  ──────────────  ───────────  ──────────  ──────────
ABC-123   42        Sprint 14       active       2026-03-10  2026-03-24
Show a development activity summary for an issue: repositories, branches, pull requests, builds, deployments, and reviews.Alias: cops jira issue dev
This command calls the Jira dev-status REST API (/rest/dev-status/1.0/issue/summary), which requires a connected development tool integration (e.g. Bitbucket, Stash, or Bamboo) in your Jira instance.

Usage

cops jira issue dev-status <issueKey> [flags]

Arguments

ArgumentRequiredDescription
issueKeyYesIssue key, e.g. ABC-123

Flags

--output
string
default:"table"
Output format: table, json, or markdown.
--insecure
boolean
default:"false"
Disable TLS certificate validation. Use only with self-signed certificates in trusted networks.
--profile
string
Override the active config profile.

Output columns

issueKey, repositories, branches, pullRequests, buildsPassed, buildsFailed, deployments, reviews

Examples

cops jira issue dev-status ABC-123
issueKey  repositories  branches  pullRequests  buildsPassed  buildsFailed  deployments  reviews
────────  ────────────  ────────  ────────────  ────────────  ────────────  ───────────  ───────
ABC-123   1             2         1             4             0             1            1

cops jira board

Find boards and inspect board configuration.

cops jira sprint

List sprints and fetch sprint issues.

Build docs developers (and LLMs) love