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.