An agent skill that provides a complete reference for the Atlassian CLI (acli) — enabling AI agents to help you manage Jira Cloud work items, projects, boards, sprints, filters, Atlassian organization administration, and more from the command line.
Available on ClawHub.
├── SKILL.md # Core guide: auth, command structure, common patterns
├── references/
│ ├── jira-workitem-commands.md # 23 workitem commands (create, edit, search, transition, ...)
│ └── other-commands.md # Project, board, sprint, filter, dashboard, field, admin, rovodev
└── README.md
Covers 58 commands across all acli command groups with flags, descriptions, and usage examples.
This skill does not bundle the acli binary. You need to:
- Install acli — follow the official install guide
- Authenticate — via OAuth, API token, or admin API key:
# Interactive (browser-based) acli jira auth login --web # API token (non-interactive / CI) echo "$API_TOKEN" | acli jira auth login --site "yoursite.atlassian.net" --email "you@example.com" --token
- Verify —
acli jira auth status
The repo is structured so that it can be cloned directly into a skills directory. This layout is compatible with Claude Code, OpenCode, and GitHub Copilot.
Clone into any of the supported personal skill directories:
# Works with Claude Code, OpenCode, and GitHub Copilot
git clone https://github.com/peetzweg/acli-skill.git ~/.claude/skills/acli
# OpenCode-specific alternative
git clone https://github.com/peetzweg/acli-skill.git ~/.config/opencode/skills/acli
# Copilot-specific alternative
git clone https://github.com/peetzweg/acli-skill.git ~/.copilot/skills/acliTo update: git -C ~/.claude/skills/acli pull
Clone or symlink into your project's skills directory:
git clone https://github.com/peetzweg/acli-skill.git .claude/skills/acli
# Add to .gitignore or commit as a subtree/submoduleOnce installed, just ask your agent to perform Jira operations naturally:
- "Create a bug in project TEAM about the login timeout"
- "Search for all in-progress issues assigned to me"
- "Transition KEY-123 to Done"
- "List all sprints on board 42"
- "Bulk assign these issues to user@company.com"
The agent will use the skill's reference to construct the right acli commands.
- The skill references environment variables
$API_TOKENand$API_KEYfor non-interactive authentication. These are optional — interactive OAuth (--web) is recommended for normal use. - Destructive commands (
delete,deactivate,archive) include warnings in the reference docs. The agent is instructed to always confirm with you before running them. - Never paste API tokens directly into chat. Use environment variables or file-based input.