Claude-skill-registry jira-api-docs
Complete Jira Cloud REST API documentation for v2 and v3 endpoints. Use when working with Jira APIs, making Jira API calls, troubleshooting Jira integrations, or needing endpoint details. DO NOT use for general Jira usage questions or Jira web UI help.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/jira-api-docs" ~/.claude/skills/majiayu000-claude-skill-registry-jira-api-docs && rm -rf "$T"
manifest:
skills/data/jira-api-docs/SKILL.mdsource content
Jira Cloud REST API Documentation
Complete reference documentation for Jira Cloud REST API v2 and v3 endpoints, including all models, parameters, and response formats.
Usage Priority: When working with Jira APIs, follow this order:
- Quick Reference + Scripts - Check
for your task, then read and run the scriptsquick-reference/
- To find quick-references:
Glob(pattern: "*.md", path: ".claude/skills/jira-api-docs/quick-reference")- To find scripts:
Glob(pattern: "*<keyword>*", path: ".claude/skills/jira-api-docs/scripts")- MCP Server Search - If no script exists, query
MCP server for endpoint detailsjira-docs- Full API Reference - Consult
only if MCP doesn't cover your needapi-reference/- REQUIRED: Save your work - Save new scripts to
and add them to quick-referencescripts/
Documentation Paths
All paths are under
:~/.claude/skills/jira-api-docs/
~/.claude/skills/jira-api-docs/ ├── quick-reference/ # Task → script mappings (check FIRST) │ ├── workflows.md │ └── ... ├── scripts/ # Working scripts (READ AND USE THESE) │ ├── fetch-workflow-table.sh │ └── ... └── api-reference-guide.md # Navigation guide for Task agents (last resort)
When to Use This Skill
✅ Use when:
- Making Jira API calls or HTTP requests
- Looking up specific Jira API endpoints
- Understanding Jira API request/response formats
- Troubleshooting Jira API integrations
- Finding API endpoint parameters and options
- Working with Jira webhooks or automation
- Building Jira integrations or scripts
❌ Don't use when:
- General Jira usage questions (use Jira UI instead)
- Jira administration via web interface
- JQL query help (unless related to API endpoints)
- Jira workflow configuration via UI
Common API Tasks
Workflows
Quick Reference:
./quick-reference/workflows.md — read this first, use the scripts
Everything Else
- Query the
MCP serverjira-docs - If MCP fails after 2-3 attempts, launch a Task agent — the raw API docs are thousands of lines and tens of thousands of tokens; tell the agent your requirements and to read
./api-reference-guide.md
Test Sandbox
Safe resources for testing — do NOT use production projects/objects:
- Projects:
(Service Desk),TESTPROJ
(Software)HSP - Issues: Create new in HSP/TESTPROJ (don't rely on existing)
- Filter: "Test Filter" (ID: 12229)
- Dashboard: "Test Dashboard" (ID: 10275)
- Group: "Test Group" (ID: 60870276-7f12-4367-af84-23903ab1553c)
- Custom fields: Use existing
or create with that prefixTestField_* - Sprints/Boards: Use or create in HSP/TESTPROJ
Before Finishing
⚠️ STOP: Before marking a Jira task complete:
- New script? → Save to
+ add to quick-referencescripts/ - Fixed a script? → Update script + add lesson learned