Atlassian Template Creator Expert
Designs, deploys and versions reusable Jira and Confluence templates and blueprints.
What it does
This skill turns Claude into an Atlassian template specialist. It defines standard Confluence page templates (meeting notes, project charter, sprint retrospective, PRD, decision log) and Jira issue templates (user story, bug report, epic), and ships a template_scaffolder.py script that emits real Confluence storage-format XHTML — the body format createConfluencePage/updateConfluencePage actually accept.
It also encodes an end-to-end workflow (discover → design → test in preview → publish via MCP → verify → roll back) plus governance rules for versioning, deprecation banners and quarterly reviews. Usefully, it is explicit about MCP limits: true blueprints, labels and Jira field defaults must be handled in the UI or REST API.
Who it's for
- PMs, Scrum Masters and Atlassian admins standardising docs across teams
- Teams that rebuild the same meeting-note or PRD structure by hand
- Anyone who struggles to hand-write Confluence storage-format XHTML
Examples
- "Publish a meeting notes template to our team space" → scaffolder generates markup, page is created via MCP, then fetched back to confirm macros render.
- "Add a Risks section to the PRD template but keep the old one" → new version created, change announcement drafted, old version banner-warned and archived.
- "Standardise our bug report descriptions" → structured Environment / Steps to Reproduce / Expected vs Actual body pre-filled into new Jira issues.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .gemini/skills/atlassian-templates folder from the GitHub repo alirezarezvani/claude-skills into my ~/.claude/skills/atlassian-templates/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/alirezarezvani/claude-skills.git /tmp/claude-skills && mkdir -p ~/.claude/skills && cp -r /tmp/claude-skills/.gemini/skills/atlassian-templates ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/alirezarezvani/claude-skills.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r claude-skills/.gemini/skills/atlassian-templates ~/.claude/skills/ - Verify Python 3 is available with
python3 --version(needed by the scaffolder script). - For real deployments, connect the Atlassian Remote MCP server in Claude Code and confirm your Jira/Confluence permissions.
- Restart Claude Code and try a prompt like "Create a Confluence meeting notes template for our space".