Atlassian Template & Files Creator Expert
Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content structures.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/atlassian-templates, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit alirezarezvani/claude-skills/project-management/skills/atlassian-templates#main ~/.claude/skills/atlassian-templatesFor one project only, change the path to .claude/skills/atlassian-templates. This skill also uses template_scaffolder.py — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Atlassian Template & Files Creator Expert
Show the full text234 lines
| name | description |
|---|---|
| atlassian-templates | Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content structures. Use when building org-wide templates, custom blueprints, page layouts, and automated content generation. |
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
- Discover: Interview stakeholders to understand needs
- Analyze: Review existing content patterns
- Design: Create template structure and placeholders
- Implement: Build template with macros and formatting
- Test: Validate with sample data — confirm template renders correctly in preview before publishing
- Document: Create usage instructions
- Publish: Deploy to appropriate space/project via MCP (see MCP Operations below)
- Verify: Confirm deployment success; roll back to previous version if errors occur
- Train: Educate users on template usage
- Monitor: Track adoption and gather feedback
- Iterate: Refine based on usage
Template Modification Process
- Assess: Review change request and impact
- Version: Create new version, keep old available
- Modify: Update template structure/content
- Test: Validate changes don't break existing usage; preview updated template before publishing
- Migrate: Provide migration path for existing content
- Communicate: Announce changes to users
- Support: Assist users with migration
- Archive: Deprecate old version after transition; confirm deprecated template is unlisted, not deleted
Blueprint Development
- Define blueprint scope and purpose
- Design multi-page structure
- Create page templates for each section
- Configure page creation rules
- Add dynamic content (Jira queries, user data)
- Test blueprint creation flow end-to-end with a sample space
- Verify all macro references resolve correctly before deployment
- 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
| Template | Purpose | Key Macros Used |
|---|---|---|
| Meeting Notes | Structured meeting records with agenda, decisions, and action items | {date}, {tasks}, {panel}, {info}, {note} |
| Project Charter | Org-level project scope, stakeholder RACI, timeline, and budget | {panel}, {status}, {timeline}, {info} |
| Sprint Retrospective | Agile ceremony template with What Went Well / Didn't Go Well / Actions | {panel}, {expand}, {tasks}, {status} |
| PRD | Feature definition with goals, user stories, functional/non-functional requirements, and release plan | {panel}, {status}, {jira}, {warning} |
| Decision Log | Structured 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 bymcp__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 inreferences/template-design-patterns.md.
Jira Templates Library
Jira Template Types
| Template | Purpose | Key Sections |
|---|---|---|
| User Story | Feature requests in As a / I want / So that format | Acceptance Criteria (Given/When/Then), Design links, Technical Notes, Definition of Done |
| Bug Report | Defect capture with reproduction steps | Environment, Steps to Reproduce, Expected vs Actual Behavior, Severity, Workaround |
| Epic | High-level initiative scope | Vision, 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 MCP — createConfluencePage 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__getConfluencePageand 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__updateConfluencePagewithversion: <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:
- Request and justification
- Design and review
- Testing with pilot users
- Documentation
- Approval
- Deployment (via MCP or manual)
- Training
- Monitoring
Handoff Protocols
Handoff summary (governance context in references/governance-framework.md):
| Partner | Receives FROM | Sends TO |
|---|---|---|
| Senior PM | Template requirements, reporting templates, executive formats | Completed templates, usage analytics, optimization suggestions |
| Scrum Master | Sprint ceremony needs, team-specific requests, retro format preferences | Sprint-ready templates, agile ceremony structures, velocity tracking templates |
| Jira Expert | Issue template requirements, custom field display needs | Issue description templates, field config templates, JQL query templates |
| Confluence Expert | Space-specific needs, global template requests, blueprint requirements | Configured page templates, blueprint structures, deployment plans |
| Atlassian Admin | Org-wide standards, global deployment requirements, compliance templates | Global templates for approval, usage reports, compliance status |
| 1 | |
| 2 | name "atlassian-templates" |
| 3 | description Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content structures. Use when building org-wide templates, custom blueprints, page layouts, and automated content generation. |
| 4 | |
| 5 | |
| 6 | # Atlassian Template & Files Creator Expert |
| 7 | |
| 8 | Specialist in creating, modifying, and managing reusable templates and files for Jira and Confluence. Ensures consistency, accelerates content creation, and maintains org-wide standards. |
| 9 | |
| 10 | |
| 11 | |
| 12 | ## Workflows |
| 13 | |
| 14 | ### Template Creation Process |
| 15 | **Discover**: Interview stakeholders to understand needs |
| 16 | **Analyze**: Review existing content patterns |
| 17 | **Design**: Create template structure and placeholders |
| 18 | **Implement**: Build template with macros and formatting |
| 19 | **Test**: Validate with sample data — confirm template renders correctly in preview before publishing |
| 20 | **Document**: Create usage instructions |
| 21 | **Publish**: Deploy to appropriate space/project via MCP (see MCP Operations below) |
| 22 | **Verify**: Confirm deployment success; roll back to previous version if errors occur |
| 23 | **Train**: Educate users on template usage |
| 24 | **Monitor**: Track adoption and gather feedback |
| 25 | **Iterate**: Refine based on usage |
| 26 | |
| 27 | ### Template Modification Process |
| 28 | **Assess**: Review change request and impact |
| 29 | **Version**: Create new version, keep old available |
| 30 | **Modify**: Update template structure/content |
| 31 | **Test**: Validate changes don't break existing usage; preview updated template before publishing |
| 32 | **Migrate**: Provide migration path for existing content |
| 33 | **Communicate**: Announce changes to users |
| 34 | **Support**: Assist users with migration |
| 35 | **Archive**: Deprecate old version after transition; confirm deprecated template is unlisted, not deleted |
| 36 | |
| 37 | ### Blueprint Development |
| 38 | Define blueprint scope and purpose |
| 39 | Design multi-page structure |
| 40 | Create page templates for each section |
| 41 | Configure page creation rules |
| 42 | Add dynamic content (Jira queries, user data) |
| 43 | Test blueprint creation flow end-to-end with a sample space |
| 44 | Verify all macro references resolve correctly before deployment |
| 45 | **HANDOFF TO**: Atlassian Admin for global deployment |
| 46 | |
| 47 | |
| 48 | |
| 49 | ## Confluence Templates Library |
| 50 | |
| 51 | 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. |
| 52 | |
| 53 | ### Confluence Template Types |
| 54 | | Template | Purpose | Key Macros Used | |
| 55 | |----------|---------|-----------------| |
| 56 | | **Meeting Notes** | Structured meeting records with agenda, decisions, and action items | `{date}`, `{tasks}`, `{panel}`, `{info}`, `{note}` | |
| 57 | | **Project Charter** | Org-level project scope, stakeholder RACI, timeline, and budget | `{panel}`, `{status}`, `{timeline}`, `{info}` | |
| 58 | | **Sprint Retrospective** | Agile ceremony template with What Went Well / Didn't Go Well / Actions | `{panel}`, `{expand}`, `{tasks}`, `{status}` | |
| 59 | | **PRD** | Feature definition with goals, user stories, functional/non-functional requirements, and release plan | `{panel}`, `{status}`, `{jira}`, `{warning}` | |
| 60 | | **Decision Log** | Structured option analysis with decision matrix and implementation tracking | `{panel}`, `{status}`, `{info}`, `{tasks}` | |
| 61 | |
| 62 | **Standard Sections** included across all Confluence templates: |
| 63 | Header panel with metadata (owner, date, status) |
| 64 | Clearly labelled content sections with inline placeholder instructions |
| 65 | Action items block using `{tasks}` macro |
| 66 | Related links and references |
| 67 | |
| 68 | ### Complete Example: Meeting Notes Template |
| 69 | |
| 70 | > **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]). |
| 71 | |
| 72 | |
| 73 | {panel:title=Meeting Metadata|borderColor=#0052CC|titleBGColor=#0052CC|titleColor=#FFFFFF} |
| 74 | *Date:* {date} |
| 75 | *Owner / Facilitator:* @[facilitator name] |
| 76 | *Attendees:* @[name], @[name] |
| 77 | *Status:* {status:colour=Yellow|title=In Progress} |
| 78 | {panel} |
| 79 | |
| 80 | h2. Agenda |
| 81 | # [Agenda item 1] |
| 82 | # [Agenda item 2] |
| 83 | # [Agenda item 3] |
| 84 | |
| 85 | h2. Discussion & Decisions |
| 86 | {panel:title=Key Decisions|borderColor=#36B37E|titleBGColor=#36B37E|titleColor=#FFFFFF} |
| 87 | * *Decision 1:* [What was decided and why] |
| 88 | * *Decision 2:* [What was decided and why] |
| 89 | {panel} |
| 90 | |
| 91 | {info:title=Notes} |
| 92 | [Detailed discussion notes, context, or background here] |
| 93 | {info} |
| 94 | |
| 95 | h2. Action Items |
| 96 | {tasks} |
| 97 | * [ ] [Action item] — Owner: @[name] — Due: {date} |
| 98 | * [ ] [Action item] — Owner: @[name] — Due: {date} |
| 99 | {tasks} |
| 100 | |
| 101 | h2. Next Steps & Related Links |
| 102 | * Next meeting: {date} |
| 103 | * Related pages: [link] |
| 104 | * Related Jira issues: {jira:key=PROJ-123} |
| 105 | |
| 106 | |
| 107 | > 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`. |
| 108 | |
| 109 | |
| 110 | |
| 111 | ## Jira Templates Library |
| 112 | |
| 113 | ### Jira Template Types |
| 114 | | Template | Purpose | Key Sections | |
| 115 | |----------|---------|--------------| |
| 116 | | **User Story** | Feature requests in As a / I want / So that format | Acceptance Criteria (Given/When/Then), Design links, Technical Notes, Definition of Done | |
| 117 | | **Bug Report** | Defect capture with reproduction steps | Environment, Steps to Reproduce, Expected vs Actual Behavior, Severity, Workaround | |
| 118 | | **Epic** | High-level initiative scope | Vision, Goals, Success Metrics, Story Breakdown, Dependencies, Timeline | |
| 119 | |
| 120 | **Standard Sections** included across all Jira templates: |
| 121 | Clear summary line |
| 122 | Acceptance or success criteria as checkboxes |
| 123 | Related issues and dependencies block |
| 124 | Definition of Done (for stories) |
| 125 | |
| 126 | |
| 127 | |
| 128 | ## Macro Usage Guidelines |
| 129 | |
| 130 | **Dynamic Content**: Use macros for auto-updating content (dates, user mentions, Jira queries) |
| 131 | **Visual Hierarchy**: Use `{panel}`, `{info}`, and `{note}` to create visual distinction |
| 132 | **Interactivity**: Use `{expand}` for collapsible sections in long templates |
| 133 | **Integration**: Embed Jira charts and tables via `{jira}` macro for live data |
| 134 | |
| 135 | |
| 136 | |
| 137 | ## Template scaffolder — generate storage-format markup |
| 138 | |
| 139 | The bundled scaffolder emits **Confluence storage-format XHTML** — the exact body format `createConfluencePage`/`updateConfluencePage` accept. It is the canonical deployment path for this skill: |
| 140 | |
| 141 | |
| 142 | # List available template types (meeting-notes, decision-log, runbook, project-kickoff, custom) |
| 143 | python3 scripts/template_scaffolder.py --list |
| 144 | |
| 145 | # Generate a template body (storage-format XHTML) |
| 146 | python3 scripts/template_scaffolder.py meeting-notes |
| 147 | |
| 148 | # Custom template with chosen sections and macros, JSON output for programmatic use |
| 149 | python3 scripts/template_scaffolder.py custom --sections "Overview,Goals,Action Items" --macros "toc,status,info" --format json |
| 150 | |
| 151 | |
| 152 | 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). |
| 153 | |
| 154 | ## Atlassian MCP Integration |
| 155 | |
| 156 | **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. |
| 157 | |
| 158 | ### Template Operations via MCP |
| 159 | |
| 160 | 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. |
| 161 | |
| 162 | **Create a Confluence template page** (body from the scaffolder above): |
| 163 | |
| 164 | mcp__atlassian__createConfluencePage (cloudId, space, title="Template: Meeting Notes", |
| 165 | body=<storage-format XHTML from template_scaffolder.py>, parent page id optional) |
| 166 | |
| 167 | Labels (`template`, `meeting-notes`) must be applied in the Confluence UI — there is no MCP label tool. |
| 168 | |
| 169 | **Update an existing template page** (read first to get the current version): |
| 170 | |
| 171 | mcp__atlassian__getConfluencePage (cloudId, pageId=<existing page id>) |
| 172 | mcp__atlassian__updateConfluencePage (cloudId, pageId=<id>, version=<current + 1>, |
| 173 | body=<updated storage-format content>) |
| 174 | |
| 175 | |
| 176 | **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`. |
| 177 | |
| 178 | **First-class Confluence templates/blueprints** are also **not creatable via MCP** — `createConfluencePage` creates ordinary pages that serve as copy-from templates. To register a real space template, use `Space settings > Templates` in the UI. |
| 179 | |
| 180 | **Deploy a template page to multiple spaces (batch):** |
| 181 | |
| 182 | # Repeat per target space: |
| 183 | mcp__atlassian__createConfluencePage (cloudId, space=<target>, title="Template: Meeting Notes", body=<storage-format content>) |
| 184 | # Verify each create before proceeding: |
| 185 | mcp__atlassian__getConfluencePage (cloudId, pageId=<id returned by create>) |
| 186 | # Assert the returned body is non-empty and contains the expected <ac:structured-macro> elements |
| 187 | |
| 188 | |
| 189 | **Validation checkpoint after deployment:** |
| 190 | Retrieve the created/updated page via `mcp__atlassian__getConfluencePage` and assert it renders without macro errors |
| 191 | Check that Jira-macro embeds resolve against the target Jira project |
| 192 | Confirm task blocks are interactive in the published view |
| 193 | If any check fails: revert using `mcp__atlassian__updateConfluencePage` with `version: <current + 1>` and the previous version body |
| 194 | |
| 195 | |
| 196 | |
| 197 | ## Best Practices & Governance |
| 198 | |
| 199 | **Org-Specific Standards:** |
| 200 | Track template versions with version notes in the page header |
| 201 | Mark outdated templates with a `{warning}` banner before archiving; archive (do not delete) |
| 202 | Maintain usage guides linked from each template |
| 203 | Gather feedback on a quarterly review cycle; incorporate usage metrics before deprecating |
| 204 | |
| 205 | **Quality Gates (apply before every deployment):** |
| 206 | Example content provided for each section |
| 207 | Tested with sample data in preview |
| 208 | Version comment added to change log |
| 209 | Feedback mechanism in place (comments enabled or linked survey) |
| 210 | |
| 211 | **Governance Process**: |
| 212 | Request and justification |
| 213 | Design and review |
| 214 | Testing with pilot users |
| 215 | Documentation |
| 216 | Approval |
| 217 | Deployment (via MCP or manual) |
| 218 | Training |
| 219 | Monitoring |
| 220 | |
| 221 | |
| 222 | |
| 223 | ## Handoff Protocols |
| 224 | |
| 225 | Handoff summary (governance context in `references/governance-framework.md`): |
| 226 | |
| 227 | | Partner | Receives FROM | Sends TO | |
| 228 | |---------|--------------|---------| |
| 229 | | **Senior PM** | Template requirements, reporting templates, executive formats | Completed templates, usage analytics, optimization suggestions | |
| 230 | | **Scrum Master** | Sprint ceremony needs, team-specific requests, retro format preferences | Sprint-ready templates, agile ceremony structures, velocity tracking templates | |
| 231 | | **Jira Expert** | Issue template requirements, custom field display needs | Issue description templates, field config templates, JQL query templates | |
| 232 | | **Confluence Expert** | Space-specific needs, global template requests, blueprint requirements | Configured page templates, blueprint structures, deployment plans | |
| 233 | | **Atlassian Admin** | Org-wide standards, global deployment requirements, compliance templates | Global templates for approval, usage reports, compliance status | |
| 234 |
Discussion
Browse more free Claude skills.