Help us improve
Share bugs, ideas, or general feedback.
From agentio
Use when interacting with JIRA - list projects, search issues, get issue details, add comments, or transition issues. Requires agentio CLI with a configured JIRA profile.
npx claudepluginhub plosson/agentio --plugin agentioHow this skill is triggered — by the user, by Claude, or both
Slash command
/agentio:agentio-jiraThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use `agentio jira` commands to interact with JIRA. Multiple profiles can be configured - the default profile is used unless you specify `--profile <name>`.
Lists Jira issues using jirac CLI by project key, assignee, or custom JQL, defaulting to current user's assigned issues. Invoke for quick terminal queries.
Manages Jira Cloud issues via jira CLI with JSON output: create, view, update, search issues, fetch hierarchies, manage sprints.
Searches Jira Cloud for issues by assignee/status/label/project/type/component/reporter/parent or free text. Composes safe JQL from structured flags and renders summary tables with pagination.
Share bugs, ideas, or general feedback.
Use agentio jira commands to interact with JIRA. Multiple profiles can be configured - the default profile is used unless you specify --profile <name>.
agentio jira projects [--limit N]
Options:
--limit <n>: Maximum number of projects (default: 50)agentio jira search [options]
Options:
--jql <query>: JQL query for advanced search--project <key>: Filter by project key--status <status>: Filter by status--assignee <name>: Filter by assignee--limit <n>: Maximum number of issues (default: 50)JQL examples:
project = PROJ - Issues in projectassignee = currentUser() - Assigned to youstatus = "In Progress" - By statuscreated >= -7d - Created in last 7 daysupdated >= -1d - Updated in last daypriority = High - By prioritylabels = bug - By labelCombine: project = PROJ AND status = "To Do" AND assignee = currentUser()
agentio jira get <issue-key>
Example:
agentio jira get PROJ-123
agentio jira comment <issue-key> [body]
Or pipe via stdin:
echo "Comment text" | agentio jira comment PROJ-123
agentio jira transitions <issue-key>
Shows available status transitions for an issue with their IDs.
agentio jira transition <issue-key> <transition-id>
First list transitions to get the ID, then transition:
agentio jira transitions PROJ-123
agentio jira transition PROJ-123 31