Jira-skill jira-syntax
Use when writing or formatting Jira descriptions, comments, or any text destined for Jira. Converts Markdown to Jira wiki markup, provides templates (bug reports, feature requests), and validates syntax before submission. Trigger on any Jira content authoring task.
install
source · Clone the upstream repo
git clone https://github.com/netresearch/jira-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/netresearch/jira-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/jira-syntax" ~/.claude/skills/netresearch-jira-skill-jira-syntax && rm -rf "$T"
manifest:
skills/jira-syntax/SKILL.mdsource content
Jira Syntax
Jira wiki markup syntax, templates, and validation. For API operations, use the jira-communication skill.
Quick Syntax Reference
| Jira Syntax | Purpose | NOT this (Markdown) |
|---|---|---|
| Heading | |
| Bold | |
| Italic | |
| Inline code | |
| Code block | java ``` |
| Link | |
| Issue link | - |
| User mention | |
| Bullet list | |
| Numbered list | |
| Table header | |
See
references/jira-syntax-quick-reference.md for complete syntax documentation.
Available Templates
Bug Report
Path:
templates/bug-report-template.md
Sections: Environment, Steps to Reproduce, Expected/Actual Behavior, Error Messages, Technical Notes
Feature Request
Path:
templates/feature-request-template.md
Sections: Overview, User Stories, Acceptance Criteria, Technical Approach, Success Metrics
Syntax Validation
Run before submitting to Jira:
${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.sh path/to/content.txt
Validation Checklist
- Headings:
(space after period)h2. Title - Bold:
(single asterisk)*text* - Code blocks:
{code:language}...{code} - Lists:
for bullets,*
for numbers# - Links:
or[label|url][PROJ-123] - Tables:
and||Header|||Cell| - Colors:
{color:red}text{color} - Panels:
{panel:title=X}...{panel}
Common Mistakes
| ❌ Wrong | ✅ Correct |
|---|---|
| |
| |
| |
| |
| |
| |
Integration with jira-communication Skill
Workflow:
- Get template from jira-syntax
- Fill content using Jira wiki markup
- Validate with
${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.sh - Submit via jira-communication skill
References
- Complete syntax documentationreferences/jira-syntax-quick-reference.md
- Bug report templatetemplates/bug-report-template.md
- Feature request templatetemplates/feature-request-template.md
- Automated syntax checker${CLAUDE_SKILL_DIR}/scripts/validate-jira-syntax.sh- Official Jira Wiki Markup