jtk issues
The issues command group manages Jira issues. Aliases: issue, i.
jtk issues get
Section titled “jtk issues get”Get details for a specific issue. Auto-detects from git branch if omitted.
jtk issues get PROJ-123jtk issues get # auto-detect from branchjtk issues get PROJ-123 --jsonExample output:
PROJ-123: Fix login button on mobile Status: In Progress Type: Bug Priority: High Assignee: Jane Doe Reporter: Bob Smith Project: PROJ — My Project Labels: mobile, urgent Sprint: Sprint 15 Description: The login button is unresponsive on... Created: 2025-01-10 09:30 Updated: 2025-01-14 16:45jtk issues search
Section titled “jtk issues search”Search issues using JQL.
jtk issues search "project = PROJ AND status = 'In Progress'"jtk issues search "assignee = currentUser() ORDER BY updated DESC"jtk issues search "sprint in openSprints()" --max 50Flags:
| Flag | Default | Description |
|---|---|---|
--max | 20 | Maximum results to return |
Example output:
Key Summary Status Type Priority AssigneePROJ-123 Fix login button on mobile In Progress Bug High Jane DoePROJ-124 Add OAuth 2.0 support In Progress Story Medium Bob SmithPROJ-125 Update API documentation To Do Task Low Unassigned
Showing 3 of 3 resultsjtk issues create
Section titled “jtk issues create”Create a new issue.
jtk issues create -P PROJ -s "Fix broken pagination" -t Bugjtk issues create -P PROJ -s "Add dark mode" -t Story -d "Implement dark mode toggle" --priority Highjtk issues create -P PROJ -s "Subtask item" --parent PROJ-100 --labels "backend,api"Flags:
| Flag | Short | Default | Description |
|---|---|---|---|
--project | -P | required | Project key |
--summary | -s | required | Issue summary/title |
--type | -t | Task | Issue type: Story, Bug, Task, Epic, Sub-task |
--description | -d | Issue description | |
--priority | Priority: Highest, High, Medium, Low, Lowest | ||
--assignee | Assignee account ID | ||
--parent | Parent issue key (for sub-tasks) | ||
--labels | Comma-separated labels |
jtk issues transition
Section titled “jtk issues transition”Transition an issue to a new state. Auto-detects issue key from git branch.
jtk issues transition PROJ-123 "In Progress"jtk issues transition "Done" # auto-detect issue from branchjtk issues move
Section titled “jtk issues move”Move an issue to another project. Auto-detects issue key from git branch.
jtk issues move PROJ-123 --target BACKENDjtk issues move PROJ-123 --target BACKEND --type Bugjtk issues move --target BACKEND # auto-detect issue from branchFlags:
| Flag | Default | Description |
|---|---|---|
--target | required | Target project key |
--type | current type | Target issue type name |
jtk issues comment
Section titled “jtk issues comment”Add a comment to an issue. Auto-detects issue key from git branch.
jtk issues comment PROJ-123 "Fixed in commit abc123"jtk issues comment "Starting work on this" # auto-detect issue from branch