Skip to main content
The cops jira sprint commands operate on Jira Agile sprints. They call the Jira Agile REST API (/rest/agile/1.0). You need a board ID for most commands — use cops jira board lookup to find it.

cops jira sprint active

List all currently active sprints for a board.

Usage

cops jira sprint active --board <boardId> [flags]

Flags

--board
number
required
Board ID. Use cops jira board lookup to find it.
--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

id, name, state, startDate, endDate, goal

Examples

cops jira sprint active --board 14
id  name      state   startDate   endDate     goal
──  ────────  ──────  ──────────  ──────────  ──────────────────────────────
42  Sprint 14 active  2026-03-10  2026-03-24  Complete authentication module
List sprints for a board filtered by state. Use this to find closed sprints for retrospective data or future sprints for planning.Alias: cops jira sprint ls

Usage

cops jira sprint list --board <boardId> [flags]

Flags

--board
number
required
Board ID. Use cops jira board lookup to find it.
--state
string
default:"active"
Sprint state to filter by. One of active, future, or closed.
--limit
number
default:"50"
Maximum number of sprints to return.
--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

id, name, state, startDate, endDate, completeDate

Examples

cops jira sprint list --board 14
id  name       state   startDate   endDate     completeDate
──  ─────────  ──────  ──────────  ──────────  ────────────
42  Sprint 14  active  2026-03-10  2026-03-24
41  Sprint 13  closed  2026-02-24  2026-03-10  2026-03-10
40  Sprint 12  closed  2026-02-10  2026-02-24  2026-02-24
List all issues in a given sprint by sprint ID.

Usage

cops jira sprint issues --sprint <sprintId> [flags]

Flags

--sprint
number
required
Sprint ID. Use cops jira sprint list or cops jira sprint active to find it.
--limit
number
default:"100"
Maximum number of issues to return.
--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, assignee

Examples

cops jira sprint issues --sprint 42
key      summary                          status       assignee
───────  ───────────────────────────────  ───────────  ─────────────
ABC-123  Allow users to reset password    In Progress  Alice Example
ABC-119  Add rate limiting to login API   To Do        Bob Example
ABC-101  Fix null pointer on search page  Done         Unassigned

cops jira board

Find the board ID needed for sprint commands.

cops jira issue

Inspect individual issues or search by JQL.

Build docs developers (and LLMs) love