Home Tutorials Categories Skills About
ZH EN JA KO
📋

Jira

Project Developer Tools

Install Command

npx clawhub@latest install jira

Installation Guide

1
Check Environment

Make sure Node.js 22+ and OpenClaw are installed. Run openclaw --version in your terminal to verify.

2
Run Installation

Run the install command above in your terminal. ClawHub will automatically download and install Jira to the ~/.openclaw/skills/ directory.

3
Verify Installation

Run openclaw skills list to check your installed skills and confirm Jira appears in the list.

4
Configure (Optional)

Follow the configuration instructions in the description below to add skill settings to ~/.config/openclaw/openclaw.json5.

Manual Installation: Copy the Skill folder to ~/.openclaw/skills/ or the skills/ directory in your project root. Make sure the folder contains a SKILL.md file.
JQL Queries Sprint Management Board View

Detailed Description

The Jira skill connects OpenClaw to the enterprise-grade project management platform Atlassian Jira, letting you control Jira's powerful features with natural language.

Core Features

  • JQL Search: Describe search criteria in natural language, automatically converted to JQL queries
  • Ticket Operations: Create, update, transition status, and add comments
  • Sprint Management: View current Sprint progress and backlog items
  • Work Logs: Add and view time tracking entries
  • Board Overview: List all tickets by status at a glance

Configuration

{
  skills: {
    jira: {
      baseUrl: "https://your-team.atlassian.net",
      email: "[email protected]",
      apiToken: "xxx",
      defaultProject: "PROJ"
    }
  }
}

Use Cases

  • "Find all unresolved Bugs in the PROJ project"
  • "Create a Story: Implement user data export feature"
  • "How is this Sprint progressing? How many story points remain?"
  • "Add a comment to PROJ-456: Fixed, awaiting test verification"