acli
Use when working with Jira using Atlassian's Command Line Interface (acli), to get information about Jira, create and manage tickets and issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when working with Jira using Atlassian's Command Line Interface (acli), to get information about Jira, create and manage tickets and issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Ultra-compressed communication mode. Slash token usage ~75% by speaking like caveman while keeping full technical accuracy. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
Automate browser interactions — navigation, clicking, typing, screenshots, JavaScript execution, and cloud browser management — using the browser-use CLI.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Use when working with Github using the Github CLI (gh), to get information about Github, create and manage repositories, issues, and pull requests.
Use when implementing any feature or bugfix, before writing implementation code - write the test first, watch it fail, write minimal code to pass; ensures tests actually verify behavior by requiring failure first
| name | acli |
| version | 1.0.0 |
| description | Use when working with Jira using Atlassian's Command Line Interface (acli), to get information about Jira, create and manage tickets and issues. |
Utilize Atlassian Command Line Interface (CLI) to effortlessly engage with our suite of products through a streamlined command-line interface. Atlassian CLI provides a powerful toolset that allows users to automate tasks, integrate processes, and interact with various Atlassian products such as Jira, all from the comfort of your terminal.
acli --help
Check to see if acli is installed:
acli --version
It not installed, install it:
brew tap atlassian/homebrew-acli
brew install acli
It installed, verify it:
acli --version
To connect to your Atlassian account, you need to authenticate.
Check if you are already authenticated:
acli jira auth status
If you are not authenticated, authenticate:
acli jira auth login --web
acli jira workitem create
# Create work item by supplying a summary, project name and work item type
acli jira workitem create --summary "New Task" --project "TEAM" --type "Task"
# Create work item from file and supplying all work item details
acli jira workitem create --from-file "workitem.txt" --project "PROJ" --type "Bug" --assignee "user@atlassian.com" --label "bug,cli"
# Generate a JSON file that could be used for workitem creation via --from-json flag
acli jira workitem create --generate-json
# Create work item from a JSON file
acli jira workitem create --from-json "workitem.json"
acli jira workitem view
acli jira workitem edit
acli jira workitem edit
# Edit work item with work item keys
acli jira workitem edit --key "KEY-1,KEY-2" --summary "New Summary"
# Edit work item with JQL query
acli jira workitem edit --jql "project = TEAM" --assignee "user@atlassian.com"
# Edit work item with Filter ID
acli jira workitem edit --filter 10001 --description "Updated description" --yes
# Generate a JSON file that could be used for workitem edit via --from-json flag
acli jira workitem edit --generate-json
# Edit work item from a JSON file
acli jira workitem edit --from-json "workitem.json"
acli jira workitem transition
acli jira workitem transition
# Transition work item with work item keys
acli jira workitem transition --key "KEY-1,KEY-2" --status "Done"
# Transition work item with JQL query
acli jira workitem transition --jql "project = TEAM" --status "In Progress"
# Transition work item with filter ID
acli jira workitem transition --filter 10001 --status "To Do" --yes