Jira Integration Skill for Openclaw

A Jira API integration skill that automates issue creation, status synchronization, and conditional workflow operations for AI agents.

thcjp
v1.0.0
Aug 10, 2026
0
228
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install jira-integration-skill

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install jira-integration-skill using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Jira Integration Skill?

Jira Integration Skill connects an AI coding agent to Jira through an API wrapper, turning natural-language instructions into structured Jira requests and actionable responses. It supports issue creation, issue status updates, workflow automation, permission checks, tenant configuration, response handling, and audit logging.

As part of Openclaw Skills, it reduces repetitive Jira administration without requiring users to manually navigate Jira or write custom integration scripts. The skill is designed for individuals, engineering teams, CI/CD workflows, customer support automation, and other external API integration scenarios. It requires an agent-provided LLM and a valid API key; support for custom fields, workflow transitions, and automation actions depends on the Jira configuration and API capabilities.

Jira Integration Skill Use Cases

  • Create Jira issues from natural-language requests, including issue type, title, description, priority, and assignee.
  • Synchronize an issue or project status after a deployment, review, support event, or operational change.
  • Trigger Jira workflow actions based on issue IDs, conditions, and requested automation operations.
  • Connect Jira with CI/CD, customer service, and cross-team collaboration workflows.
  • Monitor issue operations and receive structured success or failure results.
  • Retry transient network or Jira server failures without repeating the entire workflow manually.
  • Use Chinese-language interaction or concise commands when invoking Jira automation through Openclaw Skills.
  • Avoid unsuitable scenarios that require complex human judgment or unsupported Jira workflow actions.

How Jira Integration Skill Works

  1. The agent receives an instruction string and optional context describing the Jira operation, issue, project, tenant, or workflow.
  2. The skill interprets the request and identifies the required CRUD or workflow action.
  3. Authentication, API key availability, tenant configuration, and user permissions are checked before execution.
  4. The skill validates input requirements such as issue identifiers, status values, request size, encoding, and supported action types.
  5. It maps the requested parameters to the expected Jira API request format.
  6. The request is sent to the configured Jira server to create an issue, update a status, synchronize data, or execute an automation action.
  7. The API response is normalized into a structured result containing success state, returned data, and error information.
  8. The operation is recorded in an audit log, while sensitive credentials and tokens are excluded from output.
  9. Transient network, timeout, or server failures can be retried; invalid input, expired keys, and insufficient permissions require corrective action.
  10. The agent returns a directly usable response to the user or passes the result to a larger automation workflow.

Jira Integration Skill Setup

  1. Use an AI agent platform that supports SKILL.md, such as Claude Code, Cursor, Codex, or Gemini CLI, on Windows, macOS, or Linux.
  2. Install or copy the Jira Integration Skill package and its SKILL.md into the agent's supported skills directory. The exact directory and activation method depend on the host agent.
  3. Ensure the agent has access to its configured LLM API. An LLM is a required dependency for interpreting instructions and coordinating tool execution.
  4. Obtain a Jira API key or equivalent credential with only the permissions required for issue creation, status changes, synchronization, or workflow operations.
  5. Configure the credential as an environment variable rather than hard-coding it in source files, prompts, or version control.
export API_KEY="${API_KEY:?Please set the API key environment variable}"
  1. Restart the agent session or open a new terminal so the environment variable is available.
  2. Verify the Jira server address, tenant information, user permissions, supported status transitions, and available automation operations.
  3. Send an instruction using the required request fields:
{
  "instruction": "Create a high-priority Jira issue for the failed deployment",
  "context": "Project: OPS; assign to the on-call engineer"
}
  1. Test with a non-destructive or low-risk issue operation before enabling production workflows. Protect API keys, use HTTPS, review audit logs, and observe Jira rate limits.

Jira Integration Skill Data Schema & Taxonomy

Request schema

Field Type Required Description
instruction string Yes Natural-language user command describing the Jira operation.
context string No Additional project, issue, tenant, workflow, or environment context.

Operation data

The skill maps instructions into operation-specific parameters. Common fields include:

  • Issue creation: issue type, project, title or summary, description, priority, assignee, and supported custom fields.
  • Status synchronization: issue ID or key and the target status or transition.
  • Workflow automation: issue ID, trigger conditions, and the requested automation action.
  • Tenant and authorization metadata: configured Jira tenant, authenticated user identity, permission scope, and API endpoint context.

Result schema

{
  "success": true,
  "data": {
    "result": "Skill-related configuration or Jira operation result"
  },
  "error": null
}

Generated and tracked information

  • Normalized API responses containing operation status, issue identifiers, transition results, or Jira error details.
  • Audit log entries for executed operations and returned outcomes.
  • Runtime configuration supplied by the agent or environment; the skill does not specify a required project file layout or persistent generated-file format.
  • Sensitive API keys, tokens, and credentials must never be written to results or logs.

Limits and taxonomy

Constraint Documented limit or behavior
Request size Up to 5 MB per API request input.
Encoding UTF-8 input is required.
Concurrent requests Up to 10 concurrent API requests.
API rate Up to 100 API calls per minute.
Per-key usage Up to 1,000 API calls per API key per day.
Statuses, actions, custom fields Supported values depend on Jira API documentation and tenant configuration.

Jira Integration Skill Advanced Features

  • Multi-tenant configuration with tenant-specific identity, permissions, and API settings.
  • Real-time issue-status monitoring for faster detection of workflow changes or anomalies.
  • Automatic retry handling for transient network errors, timeouts, and Jira server failures.
  • Conditional branching for flexible workflow automation and exception paths.
  • Visual orchestration support for complex workflows without requiring users to write integration code.
  • Standardized API request and response wrapping for reuse in larger Openclaw Skills automations.
  • Multiple data-format handling for integration, conversion, and response processing scenarios.
  • CRUD-oriented execution for issue and project-management operations.
  • Tool access through read, exec, and write, enabling file handling, controlled command execution, and integration workflows.
  • Permission validation before management operations, with structured errors for invalid input, authentication failures, unavailable services, and insufficient access.
  • Cross-functional integrations with CI/CD pipelines, customer support systems, and team collaboration processes.
  • Security-conscious operation: environment-based secrets, HTTPS communication, command allowlisting, sandbox testing, log review, and credential redaction.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*