# Jira Issue

> Jira issue skill for CRUD. Trigger when user asks to create, get, update, or delete Jira issues.

- Skill: `cloudchef/jira-issue` (Agent Skill, multi-file: 12 files)
- Install (CLI): `npx skillmds@latest add cloudchef/jira-issue`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cloudchef/jira-issue/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: CloudChef (https://skillmd.com/u/cloudchef)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cloudchef/jira-issue

---


# jira-issue

This is a provider skill under `providers/jira/skills/jira-issue`.

## Purpose

Handle Jira Issue CRUD by orchestrating local scripts in `scripts/` that call Jira REST API.

## Trigger Conditions

Use this skill when user intent is any of:
- Create issue / report bug / log incident
- Get issue details
- Update issue fields
- Delete issue

## Script Entry Points

- `scripts/create_issue.py`
- `scripts/get_issue.py`
- `scripts/update_issue.py`
- `scripts/delete_issue.py`

## Invocation Guidance

When the user says:
- "Create a Jira issue for service startup failure"

Construct and run:

```bash
python app/atlasclaw/providers/jira/skills/jira-issue/scripts/create_issue.py \
  --summary "Service startup failure" \
  --description "Service failed to start due to a database connection timeout"
```

Then return created issue key to user.

## Notes

- Scripts read Jira connection from `atlasclaw.json` (`service_providers.jira`).
- API mappings are in `references/api_mapping.md`.
- Skill scripts are part of this skill package, not standalone global skills.

