Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
alirezarezvani avatar

Atlassian Templates

  • 670 installs
  • 23.5k repo stars
  • Updated July 17, 2026
  • alirezarezvani/claude-skills

atlassian-templates is an agent skill that defines ownership, usage tracking, and quality rules for reusable Confluence prompt templates and agent workflow patterns in developer organizations.

About

atlassian-templates is an agent skill from alirezarezvani/claude-skills that implements a Template Governance Framework for managing Confluence page templates and reusable agent prompt patterns. The framework assigns Template Owner and Template Steward roles, sets concrete thresholds such as archiving templates with fewer than 5 uses in 90 days, requires quarterly checks on 3 random pages per template, and mandates 14-day change-request response windows with escalation when changes affect more than 50 users. Developers reach for atlassian-templates when establishing or auditing template lifecycle policy, monthly CQL usage pulls, and deprecation criteria across Atlassian workspaces.

  • Defines three distinct roles: Template Owner, Template Steward, and Template Committee
  • Includes concrete decision criteria such as usage thresholds (<5 uses in 90 days triggers archive) and content overlap l
  • Provides specific operational cadences: quarterly accuracy checks, monthly usage pulls via CQL, and quarterly committee
  • Assignment matrix maps responsibilities across engineering, product, and other template categories
  • Hard-gate enforcement via quarterly reviews and escalation paths before template changes affect >50 users

Atlassian Templates by the numbers

  • 670 all-time installs (skills.sh)
  • Ranked #616 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/alirezarezvani/claude-skills --skill atlassian-templates

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs670
repo stars23.5k
Security audit2 / 3 scanners passed
Last updatedJuly 17, 2026
Repositoryalirezarezvani/claude-skills

How do you govern Confluence template lifecycle and usage?

Establish clear ownership, usage tracking, and quality rules for reusable agent prompt templates and workflow patterns.

Who is it for?

Engineering teams operating Confluence template libraries and reusable agent prompt catalogs that need measurable ownership and deprecation rules.

Skip if: Developers who only need to write a single Confluence page once without ongoing template governance or usage analytics.

When should I use this skill?

User asks to govern Confluence templates, track template usage, define template owners, or set deprecation thresholds for reusable prompt patterns.

What you get

Template ownership model, CQL usage queries, archival rules, quarterly review checklist, and escalation criteria for template changes.

  • Template governance policy
  • CQL usage queries
  • Role and escalation matrix

By the numbers

  • Archives templates with fewer than 5 uses in 90 days
  • Quarterly check samples 3 random pages per template
  • 14-calendar-day change-request response SLA

Files

SKILL.mdMarkdownGitHub ↗

Atlassian Template & Files Creator Expert

Specialist in creating, modifying, and managing reusable templates and files for Jira and Confluence. Ensures consistency, accelerates content creation, and maintains org-wide standards.

---

Workflows

Template Creation Process

1. Discover: Interview stakeholders to understand needs 2. Analyze: Review existing content patterns 3. Design: Create template structure and placeholders 4. Implement: Build template with macros and formatting 5. Test: Validate with sample data — confirm template renders correctly in preview before publishing 6. Document: Create usage instructions 7. Publish: Deploy to appropriate space/project via MCP (see MCP Operations below) 8. Verify: Confirm deployment success; roll back to previous version if errors occur 9. Train: Educate users on template usage 10. Monitor: Track adoption and gather feedback 11. Iterate: Refine based on usage

Template Modification Process

1. Assess: Review change request and impact 2. Version: Create new version, keep old available 3. Modify: Update template structure/content 4. Test: Validate changes don't break existing usage; preview updated template before publishing 5. Migrate: Provide migration path for existing content 6. Communicate: Announce changes to users 7. Support: Assist users with migration 8. Archive: Deprecate old version after transition; confirm deprecated template is unlisted, not deleted

Blueprint Development

1. Define blueprint scope and purpose 2. Design multi-page structure 3. Create page templates for each section 4. Configure page creation rules 5. Add dynamic content (Jira queries, user data) 6. Test blueprint creation flow end-to-end with a sample space 7. Verify all macro references resolve correctly before deployment 8. HANDOFF TO: Atlassian Admin for global deployment

---

Confluence Templates Library

See references/template-design-patterns.md for template design patterns and references/governance-framework.md for the governance model. For deployment-ready storage-format markup, use the bundled scaffolder (see Template scaffolder below). The following summarises the standard types this skill creates and maintains.

Confluence Template Types

TemplatePurposeKey Macros Used
Meeting NotesStructured meeting records with agenda, decisions, and action items{date}, {tasks}, {panel}, {info}, {note}
Project CharterOrg-level project scope, stakeholder RACI, timeline, and budget{panel}, {status}, {timeline}, {info}
Sprint RetrospectiveAgile ceremony template with What Went Well / Didn't Go Well / Actions{panel}, {expand}, {tasks}, {status}
PRDFeature definition with goals, user stories, functional/non-functional requirements, and release plan{panel}, {status}, {jira}, {warning}
Decision LogStructured option analysis with decision matrix and implementation tracking{panel}, {status}, {info}, {tasks}

Standard Sections included across all Confluence templates:

  • Header panel with metadata (owner, date, status)
  • Clearly labelled content sections with inline placeholder instructions
  • Action items block using {tasks} macro
  • Related links and references

Complete Example: Meeting Notes Template

Format warning: The example below is legacy wiki markup ({panel}, h2., {tasks}), shown for human readability. Wiki markup is NOT Confluence storage format and will be rejected by mcp__atlassian__createConfluencePage / updateConfluencePage, which expect storage format (XHTML, <ac:structured-macro> elements) or ADF. To get the deployment-ready storage-format equivalent, run the scaffolder: python3 scripts/template_scaffolder.py meeting-notes (see Template scaffolder).
{panel:title=Meeting Metadata|borderColor=#0052CC|titleBGColor=#0052CC|titleColor=#FFFFFF}
*Date:* {date}
*Owner / Facilitator:* @[facilitator name]
*Attendees:* @[name], @[name]
*Status:* {status:colour=Yellow|title=In Progress}
{panel}

h2. Agenda
# [Agenda item 1]
# [Agenda item 2]
# [Agenda item 3]

h2. Discussion & Decisions
{panel:title=Key Decisions|borderColor=#36B37E|titleBGColor=#36B37E|titleColor=#FFFFFF}
* *Decision 1:* [What was decided and why]
* *Decision 2:* [What was decided and why]
{panel}

{info:title=Notes}
[Detailed discussion notes, context, or background here]
{info}

h2. Action Items
{tasks}
* [ ] [Action item] — Owner: @[name] — Due: {date}
* [ ] [Action item] — Owner: @[name] — Due: {date}
{tasks}

h2. Next Steps & Related Links
* Next meeting: {date}
* Related pages: [link]
* Related Jira issues: {jira:key=PROJ-123}
Storage-format examples for the other built-in types (decision-log, runbook, project-kickoff) come from python3 scripts/template_scaffolder.py --list; design patterns for the remaining types (Project Charter, Sprint Retrospective, PRD) are in references/template-design-patterns.md.

---

Jira Templates Library

Jira Template Types

TemplatePurposeKey Sections
User StoryFeature requests in As a / I want / So that formatAcceptance Criteria (Given/When/Then), Design links, Technical Notes, Definition of Done
Bug ReportDefect capture with reproduction stepsEnvironment, Steps to Reproduce, Expected vs Actual Behavior, Severity, Workaround
EpicHigh-level initiative scopeVision, Goals, Success Metrics, Story Breakdown, Dependencies, Timeline

Standard Sections included across all Jira templates:

  • Clear summary line
  • Acceptance or success criteria as checkboxes
  • Related issues and dependencies block
  • Definition of Done (for stories)

---

Macro Usage Guidelines

Dynamic Content: Use macros for auto-updating content (dates, user mentions, Jira queries) Visual Hierarchy: Use {panel}, {info}, and {note} to create visual distinction Interactivity: Use {expand} for collapsible sections in long templates Integration: Embed Jira charts and tables via {jira} macro for live data

---

Template scaffolder — generate storage-format markup

The bundled scaffolder emits Confluence storage-format XHTML — the exact body format createConfluencePage/updateConfluencePage accept. It is the canonical deployment path for this skill:

# List available template types (meeting-notes, decision-log, runbook, project-kickoff, custom)
python3 scripts/template_scaffolder.py --list

# Generate a template body (storage-format XHTML)
python3 scripts/template_scaffolder.py meeting-notes

# Custom template with chosen sections and macros, JSON output for programmatic use
python3 scripts/template_scaffolder.py custom --sections "Overview,Goals,Action Items" --macros "toc,status,info" --format json

Consume the output: take the CONFLUENCE STORAGE FORMAT MARKUP block (text mode) or the markup field (JSON mode) and pass it verbatim as the body of mcp__atlassian__createConfluencePage. Apply the suggested labels via the Confluence UI afterwards (label tools are not on the MCP).

Atlassian MCP Integration

Primary Tool: Atlassian Remote MCP server (bundled .mcp.json, server key atlassian). Tools surface as mcp__atlassian__<toolName> (camelCase). Canonical tool list: project-management/references/atlassian-mcp-tools.md. Never invent tool names — if a capability isn't in that list, it is not available via MCP; route to the web UI or REST API.

Template Operations via MCP

Obtain cloudId once via mcp__atlassian__getAccessibleAtlassianResources. Replace angle-bracket placeholders with real values; discover exact parameter names from each tool's schema at call time.

Create a Confluence template page (body from the scaffolder above):

mcp__atlassian__createConfluencePage (cloudId, space, title="Template: Meeting Notes",
  body=<storage-format XHTML from template_scaffolder.py>, parent page id optional)

Labels (template, meeting-notes) must be applied in the Confluence UI — there is no MCP label tool.

Update an existing template page (read first to get the current version):

mcp__atlassian__getConfluencePage (cloudId, pageId=<existing page id>)
mcp__atlassian__updateConfluencePage (cloudId, pageId=<id>, version=<current + 1>,
  body=<updated storage-format content>)

Jira issue description templates: there is no MCP tool for field configuration (default_value on the description field, screens, field contexts). Configure description defaults in the Jira admin UI (Settings > Issues > Field configurations) or via REST (/rest/api/3/fieldconfiguration). What MCP CAN do: create issues pre-filled with template text via mcp__atlassian__createJiraIssue (pass the template body as the description), and inspect required fields per issue type with mcp__atlassian__getJiraIssueTypeMetaWithFields.

First-class Confluence templates/blueprints are also not creatable via MCPcreateConfluencePage creates ordinary pages that serve as copy-from templates. To register a real space template, use Space settings > Templates in the UI.

Deploy a template page to multiple spaces (batch):

# Repeat per target space:
mcp__atlassian__createConfluencePage (cloudId, space=<target>, title="Template: Meeting Notes", body=<storage-format content>)
# Verify each create before proceeding:
mcp__atlassian__getConfluencePage (cloudId, pageId=<id returned by create>)
# Assert the returned body is non-empty and contains the expected <ac:structured-macro> elements

Validation checkpoint after deployment:

  • Retrieve the created/updated page via mcp__atlassian__getConfluencePage and assert it renders without macro errors
  • Check that Jira-macro embeds resolve against the target Jira project
  • Confirm task blocks are interactive in the published view
  • If any check fails: revert using mcp__atlassian__updateConfluencePage with version: <current + 1> and the previous version body

---

Best Practices & Governance

Org-Specific Standards:

  • Track template versions with version notes in the page header
  • Mark outdated templates with a {warning} banner before archiving; archive (do not delete)
  • Maintain usage guides linked from each template
  • Gather feedback on a quarterly review cycle; incorporate usage metrics before deprecating

Quality Gates (apply before every deployment):

  • Example content provided for each section
  • Tested with sample data in preview
  • Version comment added to change log
  • Feedback mechanism in place (comments enabled or linked survey)

Governance Process: 1. Request and justification 2. Design and review 3. Testing with pilot users 4. Documentation 5. Approval 6. Deployment (via MCP or manual) 7. Training 8. Monitoring

---

Handoff Protocols

Handoff summary (governance context in references/governance-framework.md):

PartnerReceives FROMSends TO
Senior PMTemplate requirements, reporting templates, executive formatsCompleted templates, usage analytics, optimization suggestions
Scrum MasterSprint ceremony needs, team-specific requests, retro format preferencesSprint-ready templates, agile ceremony structures, velocity tracking templates
Jira ExpertIssue template requirements, custom field display needsIssue description templates, field config templates, JQL query templates
Confluence ExpertSpace-specific needs, global template requests, blueprint requirementsConfigured page templates, blueprint structures, deployment plans
Atlassian AdminOrg-wide standards, global deployment requirements, compliance templatesGlobal templates for approval, usage reports, compliance status

Related skills

How it compares

Pick atlassian-templates over generic documentation skills when the task is ongoing Confluence template governance with usage metrics—not one-off page authoring.

FAQ

When should a Confluence template be archived?

atlassian-templates instructs Template Owners to archive templates with fewer than 5 uses in the past 90 days. Owners also run quarterly accuracy checks on 3 random pages created from each template to verify content matches current process.

What roles does atlassian-templates define?

atlassian-templates assigns one Template Owner per template for quarterly reviews and change requests, plus one Template Steward per team or domain for monthly CQL usage pulls and stewardship of reusable workflow patterns.

Is Atlassian Templates safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.