tessl install github:jdrhyne/agent-skills --skill jiragithub.com/jdrhyne/agent-skills
Manage Jira issues, boards, sprints, and projects via the jira-cli. Search, create, update, and transition issues directly from the command line.
Review Score
80%
Validation Score
10/16
Implementation Score
88%
Activation Score
68%
Use jira to manage Jira issues, sprints, and boards. Requires API token setup.
export JIRA_API_TOKEN="your-token" (add to ~/.zshrc for persistence)jira init --server https://your-org.atlassian.net --login you@email.com --installation cloudjira issue list -p PROJECTjira issue view PROJ-123jira issue create -p PROJECT -t "Task" -s "Summary" -b "Description"jira issue edit PROJ-123 -s "New summary"jira issue assign PROJ-123 "user@email.com"jira issue move PROJ-123 "In Progress"jira issue comment add PROJ-123 "My comment"jira issue list -q "project = MKT AND status = 'To Do'"jira sprint list -p PROJECTjira sprint list -p PROJECT --state activejira sprint list -p PROJECT --state active --plainjira board list -p PROJECTjira epic list -p PROJECTjira epic view PROJ-100jira project list--plain — Tab-separated, no colors (best for scripting)--columns key,summary,status — Select columns--no-truncate — Don't truncate long fields~/.config/.jira/.config.yml-q "assignee = currentUser() AND status != Done"jira open PROJ-123