CLI tool for offline Jira ticket management. Export tickets to markdown, generate reports, and keep everything in sync.
Project description
Zaira
A CLI tool for offline Jira ticket management. Export tickets to markdown, generate reports, and keep everything in sync.
Designed for AI-assisted development workflows. By exporting Jira tickets to plain markdown files, AI agents and coding assistants can easily read project context, understand requirements, and reference ticket details without needing direct Jira API access.
Installation
uv tool install zaira
Or with pip:
pip install zaira
Setup
1. Configure credentials
Run zaira init to create the credentials file:
zaira init
This creates ~/.config/zaira/credentials.toml. Edit it with your Jira details:
site = "your-company.atlassian.net"
email = "your-email@example.com"
api_token = "your-api-token"
Get your API token from: https://id.atlassian.com/manage-profile/security/api-tokens
2. Initialize project
After configuring credentials, initialize with your Jira project key(s):
zaira init FOO # Single project
zaira init FOO BAR # Multiple projects
This discovers each project's components, labels, and boards, then generates zproject.toml with named queries and reports.
Commands
export
Export individual tickets. Without a zproject.toml, outputs to stdout. In a project directory, saves to tickets/:
# Outside project → stdout
zaira export FOO-1234
# Inside project → saves to tickets/
zaira export FOO-1234 FOO-1235
zaira export --jql "project = FOO AND status = 'In Progress'"
zaira export --board 123
zaira export --sprint 456
# Force stdout with -o -
zaira export FOO-1234 -o -
# Export as JSON
zaira export FOO-1234 --format json
# Include linked pull requests (GitHub only)
zaira export FOO-1234 --with-prs
# Include custom fields (uses cached schema for name lookup)
zaira export FOO-1234 --all-fields
# Force file output without zproject.toml
zaira export FOO-1234 --files
create
Create a ticket from a YAML front matter file:
# Create ticket from file
zaira create ticket.md
# Create from stdin
zaira create - <<EOF
---
project: FOO
summary: Quick ticket
type: Task
---
Description here
EOF
# Preview without creating
zaira create ticket.md --dry-run
The file format matches exported tickets:
---
project: FOO
summary: "Implement feature X"
type: Story
priority: High
components: [backend, api]
labels: [v2]
Epic Link: FOO-100 # Custom field (looked up via schema)
---
## Description
Feature description here...
Custom field names are mapped to IDs using the cached schema. Run zaira info fields --refresh to cache field mappings.
my
Show your open tickets grouped by status:
zaira my
Tickets are sorted by age (oldest first) within each group. Uses the my-tickets query from zproject.toml if configured, otherwise defaults to assignee = currentUser() AND status NOT IN (Done, Closed, Resolved, Disposal, Rejected).
report
Generate markdown reports from JQL queries:
# Use a named report from zproject.toml
zaira report my-tickets
# Use a named query
zaira report --query my-tickets
# Use raw JQL
zaira report --jql "project = FOO AND type = Bug" --title "Bugs"
# Group by field
zaira report --jql "project = FOO" --group-by status
# Filter by label
zaira report --board main --label backend
# Export tickets along with the report
zaira report my-tickets --full
# Force re-export all tickets
zaira report my-tickets --full --force
# Output as JSON or CSV
zaira report my-tickets --format json
zaira report my-tickets --format csv
# Force file output without zproject.toml
zaira report --jql "project = FOO" --files
Reports are saved to reports/ with YAML front matter containing the refresh command (markdown only).
refresh
Refresh a report using the command stored in its front matter:
zaira refresh my-report.md
# Also export tickets referenced in the report
zaira refresh my-report --full
# Force re-export all tickets
zaira refresh my-report --full --force
When using --full, only tickets that have changed in Jira since the last refresh are re-exported.
boards
List available Jira boards:
zaira boards
zaira boards --project FOO
edit
Edit a ticket's fields:
# Title and description
zaira edit FOO-1234 --title "New title"
zaira edit FOO-1234 --description "New description"
zaira edit FOO-1234 -t "Title" -d "Description"
# Arbitrary fields with -F (repeatable)
zaira edit FOO-1234 -F "Priority=High"
zaira edit FOO-1234 -F "Priority=High" -F "Epic Link=FOO-100"
zaira edit FOO-1234 -F "labels=bug,urgent" -F "Story Points=5"
# From YAML file
zaira edit FOO-1234 --from fields.yaml
# From stdin
zaira edit FOO-1234 --from - <<EOF
Priority: High
Epic Link: FOO-100
Story Points: 5
labels: [bug, urgent]
EOF
# Multiline description via stdin
zaira edit FOO-1234 -d - <<EOF
h2. Overview
This is a *bold* statement with _italic_ text.
EOF
Custom field names are mapped to IDs using the cached schema. Descriptions support Jira wiki syntax.
comment
Add a comment to a ticket:
zaira comment FOO-1234 "This is my comment"
# Multiline via stdin
zaira comment FOO-1234 - <<EOF
Line 1
Line 2
EOF
# Pipe from file or command
cat notes.txt | zaira comment FOO-1234 -
transition
Transition a ticket to a new status:
zaira transition FOO-1234 "In Progress"
zaira transition FOO-1234 Done
link
Create a link between two tickets:
zaira link FOO-1234 FOO-5678 # Default: Relates
zaira link FOO-1234 FOO-5678 --type Blocks
zaira link FOO-1234 FOO-5678 -t Duplicates
info
Query Jira instance metadata. Results are cached locally and served from cache by default:
zaira info statuses # List statuses and categories
zaira info priorities # List priorities
zaira info issue-types # List issue types
zaira info link-types # List available link types
zaira info fields # List custom fields
zaira info fields --all # Include standard fields
zaira info fields --filter epic # Search by name or ID
# Project-specific metadata
zaira info components FOO # List components for project
zaira info labels FOO # List labels for project
# Refresh from Jira API (also updates cache)
zaira info statuses --refresh
zaira info fields -r
# Refresh all metadata at once
zaira info --save
Instance schema is cached at ~/.cache/zaira/zschema_PROFILE.json and project schemas at ~/.cache/zaira/zproject_PROFILE_PROJECT.json.
Project Configuration
The zproject.toml file stores project-specific settings. After running zaira init, you're encouraged to edit this file to rename reports, add custom queries, and organize boards to match your workflow:
[project]
site = "company.atlassian.net"
profile = "work" # Optional: name for schema cache (default: "default")
[boards]
main = 123
support = 456
[queries]
my-tickets = "assignee = currentUser() AND project = FOO AND status != Done"
bugs = "project = FOO AND type = Bug AND status != Done"
# Queries can span multiple projects
all-my-work = "assignee = currentUser() AND project IN (FOO, BAR) AND status != Done"
[reports]
my-tickets = { query = "my-tickets", group_by = "status" }
bugs = { jql = "project = FOO AND type = Bug", group_by = "priority" }
sprint = { board = 123, group_by = "status", full = true }
# Reports can target multiple projects via JQL
cross-team = { jql = "project IN (FOO, BAR) AND type = Bug", group_by = "project" }
Output Structure
project/
zproject.toml # Project configuration
tickets/ # Exported tickets
FOO-1234-ticket-title.md
FOO-1234-ticket-title.json # with --format json
by-component/ # Symlinks grouped by component (markdown only)
backend/
FOO-1234-ticket-title.md -> ../../FOO-1234-ticket-title.md
by-parent/ # Symlinks grouped by parent ticket
FOO-1000-epic-name/
FOO-1234-ticket-title.md -> ../../FOO-1234-ticket-title.md
reports/ # Generated reports
my-tickets.md
my-tickets.json # with --format json
my-tickets.csv # with --format csv
Ticket Format
Exported tickets include YAML front matter:
---
key: FOO-1234
summary: "Implement feature X"
type: Story
status: In Progress
priority: High
assignee: user@example.com
reporter: pm@example.com
components: Backend
labels: api, v2
parent: FOO-1000
Epic Link: FOO-1000 # Custom fields (with --all-fields)
Story Points: 5
synced: 2024-01-15T10:30:00
url: https://company.atlassian.net/browse/FOO-1234
---
# FOO-1234: Implement feature X
## Description
Feature description here...
## Comments
### John Doe (2024-01-14T09:00:00)
Comment text...
Python API
For programmatic access (or AI agents needing advanced Jira operations):
import zaira
# Authenticated Jira client (jira.JIRA instance)
jira = zaira.client()
issue = jira.issue("FOO-1234")
issues = jira.search_issues("project = FOO AND status = 'In Progress'")
# Instance schema (fields, statuses, priorities, issue types, link types)
s = zaira.schema()
s["statuses"] # {'Open': 'To Do', 'In Progress': 'In Progress', ...}
s["fields"] # {'customfield_10001': 'Epic Link', ...}
s["priorities"] # ['Blocker', 'Critical', 'Major', ...]
# Project schema (components, labels)
ps = zaira.project_schema("FOO")
ps["components"] # ['Backend', 'Frontend', ...]
ps["labels"] # ['bug', 'feature', ...]
The client uses credentials from ~/.config/zaira/credentials.toml. Schema functions return cached data populated by zaira init.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zaira-0.4.0.tar.gz.
File metadata
- Download URL: zaira-0.4.0.tar.gz
- Upload date:
- Size: 42.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
799cd8cdddac43a8196d11808cc45ccf38dabab360718f9ff3cab7503ca1be9d
|
|
| MD5 |
5125395c84737dae05e0455ad673a505
|
|
| BLAKE2b-256 |
c504f3a7e2ee09ec5702bf0ab8a7556477d42fbfc0eca0333835ebba90a70ad3
|
Provenance
The following attestation bundles were made for zaira-0.4.0.tar.gz:
Publisher:
publish.yml on vivainio/zaira
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
zaira-0.4.0.tar.gz -
Subject digest:
799cd8cdddac43a8196d11808cc45ccf38dabab360718f9ff3cab7503ca1be9d - Sigstore transparency entry: 819207249
- Sigstore integration time:
-
Permalink:
vivainio/zaira@fc5032169ebc687b224de295571ea725abd6b45f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/vivainio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@fc5032169ebc687b224de295571ea725abd6b45f -
Trigger Event:
release
-
Statement type:
File details
Details for the file zaira-0.4.0-py3-none-any.whl.
File metadata
- Download URL: zaira-0.4.0-py3-none-any.whl
- Upload date:
- Size: 48.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c9a542d8a6d17b7dd7aa31f0a50787c08bcf6e17962bcb285eb622386916c04
|
|
| MD5 |
45e2cefe7ef8ee4a0c99a43e004d2f71
|
|
| BLAKE2b-256 |
ef27c8c773c826ed4f63c64a3e4886e8216bef9eb8ec6f1b222322c665ee709c
|
Provenance
The following attestation bundles were made for zaira-0.4.0-py3-none-any.whl:
Publisher:
publish.yml on vivainio/zaira
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
zaira-0.4.0-py3-none-any.whl -
Subject digest:
7c9a542d8a6d17b7dd7aa31f0a50787c08bcf6e17962bcb285eb622386916c04 - Sigstore transparency entry: 819207274
- Sigstore integration time:
-
Permalink:
vivainio/zaira@fc5032169ebc687b224de295571ea725abd6b45f -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/vivainio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@fc5032169ebc687b224de295571ea725abd6b45f -
Trigger Event:
release
-
Statement type: