<< All versions
CLI Tool:
Skill v1.0.1
currentAutomated scan100/100daxaur/openpaw/c-jira
2 files
──Details
PublishedMay 30, 2026 at 10:37 PM
Content Hashsha256:b3db5ada2642075b...
Git SHAa2562d1c5cb2
Bump Typepatch
──Files
Files (1 file, 2.0 KB)
SKILL.md2.0 KBactive
SKILL.md · 68 lines · 2.0 KB
version: "1.0.1" name: c-jira description: 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. tags: [jira, issues, project-management, sprints, tickets, atlassian]
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
bash
jira issue list # List issues assigned to youjira issue list --project MYPROJ # Filter by projectjira issue list --status "In Progress" # Filter by statusjira issue list --type Bug # Filter by issue typejira issue view MYPROJ-123 # View issue details
Create Issues
bash
jira issue create \--project MYPROJ \--type Bug \--summary "Login page throws 500 error" \--body "Steps to reproduce: ..." \--priority High \--label backend
Transitions
bash
jira issue move MYPROJ-123 "In Progress"jira issue move MYPROJ-123 "Done"jira issue move MYPROJ-123 "In Review"
Comments
bash
jira issue comment add MYPROJ-123 --body "Fixed in PR #456"
Sprints
bash
jira sprint list --project MYPROJ # List sprintsjira 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