Agent skill
c-jira
Manage Jira issues using `jira` (jira-cli). List and filter issues, create new tickets, transition issue status, manage sprints, and add comments — all from the terminal without opening a browser.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-jira
SKILL.md
What This Skill Does
Uses jira (jira-cli) to interact with Jira projects — listing issues, creating tickets, moving issues through workflow transitions, and managing sprints.
CLI Tool: jira
List & View Issues
jira issue list # List issues assigned to you
jira issue list --project MYPROJ # Filter by project
jira issue list --status "In Progress" # Filter by status
jira issue list --type Bug # Filter by issue type
jira issue view MYPROJ-123 # View issue details
Create Issues
jira issue create \
--project MYPROJ \
--type Bug \
--summary "Login page throws 500 error" \
--body "Steps to reproduce: ..." \
--priority High \
--label backend
Transitions
jira issue move MYPROJ-123 "In Progress"
jira issue move MYPROJ-123 "Done"
jira issue move MYPROJ-123 "In Review"
Comments
jira issue comment add MYPROJ-123 --body "Fixed in PR #456"
Sprints
jira sprint list --project MYPROJ # List sprints
jira sprint add MYPROJ-123 --sprint 42 # Add issue to sprint
Usage Guidelines
- Always use the full issue key (e.g.,
MYPROJ-123) in commands. - Run
jira issue listbefore creating tickets to check for existing duplicates. - Use
jira issue moveto transition issues — confirm the valid transition names withjira issue viewfirst. - When the user says "close" or "resolve" an issue, use the appropriate transition name for their workflow.
Notes
- Requires
jira initto configure server URL and credentials before use. - Install:
brew install ankitpokhrel/jira-cli/jira-cli
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?