skills$openclaw/jira
jdrhyne8.9k

by jdrhyne

jira – OpenClaw Skill

jira is an OpenClaw Skills integration for planning workflows. Manage Jira issues, boards, sprints, and projects via the jira-cli. Search, create, update, and transition issues directly from the command line.

8.9k stars9.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026planning

Skill Snapshot

namejira
descriptionManage Jira issues, boards, sprints, and projects via the jira-cli. Search, create, update, and transition issues directly from the command line. OpenClaw Skills integration.
ownerjdrhyne
repositoryjdrhyne/jira
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @jdrhyne/jira
last updatedFeb 7, 2026

Maintainer

jdrhyne

jdrhyne

Maintains jira in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
261 B
SKILL.md
2.2 KB
SKILL.md

name: jira description: Manage Jira issues, boards, sprints, and projects via the jira-cli. Search, create, update, and transition issues directly from the command line. homepage: https://github.com/ankitpokhrel/jira-cli metadata: {"clawdbot":{"emoji":"🎫","requires":{"bins":["jira"]},"install":[{"id":"brew","kind":"brew","formula":"jira-cli","bins":["jira"],"label":"Install jira-cli (brew)"}]}}

jira

Use jira to manage Jira issues, sprints, and boards. Requires API token setup.

Setup (once)

  1. Generate an API token: https://id.atlassian.com/manage-profile/security/api-tokens
  2. Export it: export JIRA_API_TOKEN="your-token" (add to ~/.zshrc for persistence)
  3. Initialize: jira init --server https://your-org.atlassian.net --login you@email.com --installation cloud

Common commands

Issues

  • List issues: jira issue list -p PROJECT
  • View issue: jira issue view PROJ-123
  • Create issue: jira issue create -p PROJECT -t "Task" -s "Summary" -b "Description"
  • Edit issue: jira issue edit PROJ-123 -s "New summary"
  • Assign issue: jira issue assign PROJ-123 "user@email.com"
  • Transition issue: jira issue move PROJ-123 "In Progress"
  • Comment: jira issue comment add PROJ-123 "My comment"
  • Search (JQL): jira issue list -q "project = MKT AND status = 'To Do'"

Sprints

  • List sprints: jira sprint list -p PROJECT
  • View active sprint: jira sprint list -p PROJECT --state active
  • Sprint issues: jira sprint list -p PROJECT --state active --plain

Boards

  • List boards: jira board list -p PROJECT

Epics

  • List epics: jira epic list -p PROJECT
  • View epic: jira epic view PROJ-100

Projects

  • List projects: jira project list

Output formats

  • --plain — Tab-separated, no colors (best for scripting)
  • --columns key,summary,status — Select columns
  • --no-truncate — Don't truncate long fields

Tips

  • Set default project in config: ~/.config/.jira/.config.yml
  • Use JQL for complex queries: -q "assignee = currentUser() AND status != Done"
  • Open in browser: jira open PROJ-123

Notes

  • Confirm with user before creating/editing/transitioning issues
  • For bulk operations, show what will change before executing
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install jira?

Run openclaw add @jdrhyne/jira in your terminal. This installs jira into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/jdrhyne/jira. Review commits and README documentation before installing.