01000001-01001110

Agent Jira Skills — Development skill for Claude Code

Development community

Jira Cloud REST API integration skills for Claude Code CLI with cross-platform script support (Node.js and Python).

How to install Agent Jira Skills

This entry records only its repository, not the path inside it, so there is no exact command to give. Open 01000001-01001110/agent-jira-skills and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agent Jira Skills does

Jira Cloud REST API integration skills for Claude Code CLI with cross-platform script support (Node.js and Python).

Alternatives in Development

README

Jira Skills for Claude Code

Jira Cloud REST API skills for Claude Code CLI. Built for Next-Gen (team-managed) projects.

Table of Contents

What This Is

A collection of Claude Code skills for interacting with Jira's REST API. Each skill is a self-contained folder with:

  • SKILL.md - Markdown with YAML frontmatter that Claude reads
  • scripts/ - Runnable Node.js and Python scripts for that domain

Skills cover: authentication, issues, search, transitions, agile boards, projects, SAFe patterns, and Confluence spaces.

Structure

jira/
├── .env                    # Your credentials (not committed)
├── .env.example            # Template
├── .gitignore
├── README.md
├── run.js                  # Script runner
├── .github/
│   ├── workflows/
│   │   └── ci.yml          # CI checks
│   └── hooks/
│       └── pre-commit      # Local pre-commit hook
├── templates/              # Organization standard templates
│   ├── TEMPLATES.md        # Template documentation
│   ├── epic-template.json  # Epic structure template
│   ├── story-template.json # User Story SAFe template
│   ├── subtask-template.json # Subtask patterns
│   └── python-jira-utils.py  # Reusable Python utilities
├── jira-auth/
│   ├── SKILL.md
│   └── scripts/
│       ├── test.mjs
│       └── test.py
├── jira-issues/
│   ├── SKILL.md
│   └── scripts/
│       ├── create-one.mjs
│       ├── create-one.py
│       ├── delete-all.mjs
│       └── delete-all.py
├── jira-search/
│   ├── SKILL.md
│   └── scripts/
│       ├── check-issues.mjs
│       └── check-issues.py
├── jira-transitions/
│   ├── SKILL.md
│   └── scripts/
│       ├── workflow-d