Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Mar 27, 2026

Jira (32 commands)

Issues

1
2
twg jira issues get --issue-key PROJ-123 --site myco
twg jira issues search --site myco --jql "project = PROJ AND assignee = currentUser()"
twg jira issues create --project-key PROJ --issue-type Bug --summary "Login fails"
twg jira issues update --issue-key PROJ-123 --summary "Updated summary"
twg jira issues watch --issue-key PROJ-123

Boards, Sprints & Dashboards

1
2
twg jira boards query --site myco --board-type kanban
twg jira boards get --board-id 42 --site myco
twg jira dashboards query --site myco
twg jira filters query --site myco
1
2
twg jira transitions get --issue-key PROJ-123 --site myco
twg jira transitions update --issue-key PROJ-123 --transition-id 31
twg jira link create --issue-key PROJ-1 --issue-key-linked PROJ-2 --link-type blocks

Workitems (Service Projects)

1
2
twg jira workitem get --workitem-id PROJ-123 --site myco
twg jira workitem query --query "login" --site myco
twg jira workitem comment create --workitem-id PROJ-123 --body "Comment text"

JQL Examples

1
2
# Open bugs assigned to me
twg jira issues search --jql "assignee = currentUser() AND type = Bug AND statusCategory != Done"

# High-priority items in a project
twg jira issues search --jql "project = PROJ AND priority in (Highest, High) AND statusCategory != Done"

# Updated in the last week
twg jira issues search --jql "project = PROJ AND updated >= -7d"

Rate this page: