From jira
Converts Markdown to Jira wiki markup, provides templates for bug reports and feature requests, and validates syntax before submission. Triggered on Jira content authoring tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/jira:jira-syntaxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Jira wiki markup syntax, templates, and validation. For API operations, use the **jira-communication** skill.
Jira wiki markup syntax, templates, and validation. For API operations, use the jira-communication skill.
| Jira Syntax | Purpose | NOT this (Markdown) |
|---|---|---|
h2. Title | Heading | ## Title |
*bold* | Bold | **bold** |
_italic_ | Italic | *italic* |
{{code}} | Inline code | `code` |
{code:java}...{code} | Code block | java ``` |
[text|url] | Link | [text](url) |
[PROJ-123] | Issue link | - |
[~username] | User mention | @username |
* item | Bullet list | - item |
# item | Numbered list | 1. item |
||Header|| | Table header | |Header| |
See references/jira-syntax-quick-reference.md for complete syntax documentation.
Path: templates/bug-report-template.md
Sections: Environment, Steps to Reproduce, Expected/Actual Behavior, Error Messages, Technical Notes
Path: templates/feature-request-template.md
Sections: Overview, User Stories, Acceptance Criteria, Technical Approach, Success Metrics
Run before submitting to Jira:
${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.sh path/to/content.txt
h2. Title (space after period)*text* (single asterisk){code:language}...{code}* for bullets, # for numbers[label|url] or [PROJ-123]||Header|| and |Cell|{color:red}text{color}{panel:title=X}...{panel}| ❌ Wrong | ✅ Correct |
|---|---|
## Heading | h2. Heading |
**bold** | *bold* |
`code` | {{code}} |
[text](url) | [text|url] |
- bullet | * bullet |
h2.Title | h2. Title |
MR !42 (bare GitLab ref) | [MR 42|url] or full group/project!42 — a bare !…! is image markup |
(/) on an open/proposed item | (x) — (/) renders as a green check (done); use (x) for open items |
( ) as a checkbox | (x) — ( ) is not a macro and renders literally |
Workflow:
${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.shreferences/jira-syntax-quick-reference.md - Complete syntax documentationreferences/cross-project-refs.md - GitLab cross-project ref convention (group/project!N, group/project#N, group/project@tag) when linking to GitLab from Jiratemplates/bug-report-template.md - Bug report templatetemplates/feature-request-template.md - Feature request template${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.sh - Automated syntax checkernpx claudepluginhub netresearch/claude-code-marketplace --plugin jira-integrationCreates Jira issues via CLI flags or work-item files. Converts Markdown body to ADF, previews payload, requires confirmation, then POSTs to Jira.
Converts Confluence spec pages into Jira backlogs with Epics and linked tickets. Use for generating backlogs from specs, breaking down requirements, or creating issues from Confluence.
Interact with Atlassian Jira and Confluence via REST APIs. Create, edit, search, and transition Jira issues; read and write Confluence pages. No MCP server needed.