agentio-jira

Search, comment on, and transition JIRA issues via the agentio CLI.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-jira-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-jira
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-jira
Command: npx skills add https://github.com/plosson/agentio --skill agentio-jira-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing JIRA issues from CI/CD pipelines or agent workflows normally requires custom API scripts and credential handling. This Skill exposes JIRA operations as plain CLI commands through agentio, so agents and automation scripts can search issues, add comments, and move tickets through workflows without writing integration code. ## Core Features & Use Cases - Issue Search with JQL: Query issues using full JQL syntax or convenience flags like --project, --status, and --assignee. - Issue Details & Comments: Fetch full issue details including description and comments, and post new comments from arguments or stdin. - Workflow Transitions: List available transitions for an issue and move it to a new status by transition ID. - Use Case: In a scheduled GitHub Actions job, search for unresolved bugs assigned to the current user, then post a status comment and transition stale tickets automatically. ## Quick Start Ask the agent to run agentio jira search with a JQL query such as "assignee = currentUser() AND resolution = Unresolved" to list your open issues.

Frequently Asked Questions about agentio-jira

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search JIRA issues from the command line?▼

Run agentio jira search with a --jql flag containing a JQL query, such as "project = PROJ AND issuetype = Bug AND created >= -7d". Convenience flags like --project, --status, and --assignee can be combined with AND instead of writing raw JQL.

How to transition a JIRA issue to a new status via CLI?▼

First run agentio jira transitions <issue-key> to list available transition IDs, then run agentio jira transition <issue-key> <transition-id> to move the issue. Transition IDs are workflow-specific, so they must be discovered per issue.

Can I add multi-line comments to JIRA issues from a script?▼

Yes, pipe content via stdin, for example cat investigation.md | agentio jira comment PROJ-123. Short comments can also be passed directly as an argument after the issue key.

Does agentio jira support multiple JIRA profiles?▼

Yes, every command accepts a --profile <name> flag to select an account. The flag is optional when only one profile exists in the agentio configuration.

What are the limitations of agentio jira issue management?▼

The Skill covers searching, reading, commenting, and transitioning issues only. It does not create issues, edit fields, or manage attachments, and transitions require knowing the numeric transition ID for the target status.