Is there an official Jira CLI?
Atlassian ships acli for some administrative scenarios, but it focuses on Atlassian's own SDK/plugin workflows rather than day-to-day issue management. atlassian-cli is an independent open-source Rust CLI focused on Jira Cloud automation — issue CRUD, JQL search, bulk operations, and CI-friendly output. See Jira CLI tools compared for a detailed comparison.
How do I log in?
Generate an Atlassian API token at id.atlassian.com/manage-profile/security/api-tokens, then run atlassian-cli auth login --profile work --base-url https://your-domain.atlassian.net --email you@company.com --token $TOKEN --default. The full flow — including multiple profiles and Bitbucket bearer tokens — is in the auth guide.
Can I run it in GitHub Actions / GitLab CI / Jenkins?
Yes. Install via Cargo or a prebuilt binary (see install guide), then set ATLASSIAN_API_TOKEN as a secret. With a minimal profile committed, the CLI reads the token from the environment. Machine-readable output (--format json, --format quiet) and sane exit codes make it easy to gate pipelines on results.
Does it support custom fields?
Yes. Discover IDs with atlassian-cli jira fields list, then pass values via repeatable --field 'customfield_10010={"value":"Internal"}' flags on create and update. Each --field takes the raw JSON Jira expects, so every field type (select, cascade, formula, sprint, epic link) is supported.
How do I bulk-transition issues safely?
Always run with --dry-run first: atlassian-cli jira bulk transition --jql "project = DEV AND status = 'In Progress'" --transition "Done" --dry-run. That prints the full list of keys that would change, without calling the mutation API. Remove --dry-run once it looks right. The bulk transition runbook walks through a production example end-to-end.
Does it work with Jira Data Center / Server?
atlassian-cli targets Jira Cloud's REST API. Some Data Center instances expose compatible endpoints, but it isn't the primary focus; check the GitHub repo for current DC coverage.
Is it free?
Yes — MIT-licensed, no subscription, no telemetry tied to accounts. You'll need an Atlassian Cloud license for the Jira instance itself, but the CLI is free to use in personal and commercial projects.