Skip to main content
The cops jira board commands let you discover boards and retrieve their configuration. They call the Jira Agile REST API (/rest/agile/1.0/board).

cops jira board lookup

Search for boards by name. Returns all boards whose name contains the given string.Alias: cops jira board find

Usage

cops jira board lookup --name <query> [flags]

Flags

--name
string
required
Board name to search. Partial matches are returned.
--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, type

Examples

cops jira board lookup --name "Platform"
id   name                  type
───  ────────────────────  ──────
14   Platform Team Board   scrum
27   Platform Ops          kanban
Fetch the configuration for a specific board by its numeric ID. Returns the associated filter, project location, and ranking field.

Usage

cops jira board config --board <boardId> [flags]

Flags

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

boardId, filterId, filterName, locationProjectKey, rankingField

Examples

cops jira board config --board 14
boardId  filterId  filterName              locationProjectKey  rankingField
───────  ────────  ──────────────────────  ──────────────────  ────────────
14       10045     Platform Team Filter    PLT                 10100
Use the filterId value with cops jira filter get to inspect the JQL behind the board filter.

cops jira sprint

List active and past sprints for a board.

cops jira filter

Inspect the JQL behind a board’s saved filter.

Build docs developers (and LLMs) love