Search Jira work items, list projects, or find boards using the Atlassian CLI. Use when the user wants to query or browse Jira data.
Search and list Jira resources via the Atlassian CLI (acli).
Parse $ARGUMENTS to identify the target resource. If unclear, ask the user.
Use JQL to query work items:
acli jira workitem search --jql "<JQL query>" [--fields "<fields>"] [--limit <N>] [--json|--csv]
Common JQL examples:
"project = TEAM" — all items in a project"assignee = currentUser() AND status != Done" — my open items"project = TEAM AND status = 'In Progress'" — in-progress items"summary ~ 'search term'" — text search in summaries"created >= -7d" — items created in the last 7 daysUseful flags:
--count — just show the count of matching items--paginate — fetch all results (beyond the default limit)--fields "key,summary,status,assignee" — pick specific columns--csv — output as CSV--json — output as JSON--web — open results in browserCan also search by saved filter: --filter <FILTER_ID>.
acli jira project list [--limit <N>] [--paginate] [--json] [--recent]
--recent — show up to 20 recently viewed projects--paginate — fetch all projectsacli jira board search [--name "<name>"] [--project "<KEY>"] [--type "<scrum|kanban|simple>"] [--json|--csv]