Jira (@hesed/jira)#

The @hesed/jira plugin lets you create, search, and manage Jira issues directly from your terminal. It is preinstalled with Sidekick — no manual plugin installation needed.

Prerequisites#

  • An Atlassian account with access to a Jira project
  • A Jira API token (see below)

Step 1: Get your Jira API token#

Jira uses API tokens — not passwords — for CLI authentication.

  1. Log in to your Atlassian account at https://id.atlassian.com
  2. Click your profile avatar in the top-right corner
  3. Select Account settings
  4. Navigate to the Security tab
  5. Under API token, click Create and manage API tokens
  6. Click Create API token
  7. Give it a descriptive label (e.g., sdkck-cli) and click Create

Jira create API token screen

  1. Copy the token immediately — it won't be shown again

Jira copy API token screen

Step 2: Configure auth in Sidekick#

sdkck jira auth add

Jira add authentication

You will be prompted for:

  • Jira domain — your Jira base URL (e.g., https://yourcompany.atlassian.net)
  • Email — the email address of your Atlassian account
  • API token — the token you copied in step 1

Step 3: Verify the connection#

sdkck jira auth test

Example commands#

# Get an issues
sdkck jira issue get PROJ-123

# Create a new issue
sdkck jira issue create --fields project='{"key":"PROJ"}' summary="New summary" description="New description" issuetype='{"name":"Dev Task"}'

# Search issues by JQL
sdkck jira issue search 'project=PROJ AND summary ~ "Error saving file" AND status IN ("ready", "in progress")'

# Add comment to an issue
sdkck jira issue comment PROJ-123 "# Header\n- Item 1"

Discover all commands#

sdkck help jira

Troubleshooting#

Auth error — 401 Unauthorized

  • Verify the API token belongs to the account you entered as the email
  • Ensure the token has not been revoked or expired

Domain format

  • Include https:// and no trailing slash: https://yourcompany.atlassian.net

No projects visible

  • Confirm the Atlassian account has permission to browse the target project