From atlassian-suite
This skill should be used when the user asks to "publish release notes to confluence", "post the changelog to confluence", "publish to confluence", "create confluence release notes page", "post release notes", or runs `/atlassian-suite:publish-release-notes`. Creates or updates a Confluence page with release notes in the chosen space.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suiteThis skill is limited to using the following tools:
Push prepared release notes to Confluence. Pairs with the `release-notes` skill.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Push prepared release notes to Confluence. Pairs with the release-notes skill.
$1 = Confluence space key (e.g. ENG, PROD).
$2 = Optional parent page ID or title (page goes under it).
$3 = Optional page title (defaults to Release Notes — {today}).
The user should have just generated release notes content (via /atlassian-suite:release-notes or pasted into context). If no release notes are in context, ask the user to provide them or to run release-notes first.
Validate the space. If $1 is missing or unknown, call mcp__acendas-atlassian__getConfluenceSpaces and ask the user to pick.
Resolve parent page.
$2 is numeric → use as page ID.$2 is a string → call mcp__acendas-atlassian__confluence_search with CQL space = "{key}" AND title = "{$2}".Determine title. Default Release Notes — {today YYYY-MM-DD}. If the user provided a release version (e.g. v1.4.0), use Release Notes — {version} — {today}.
Check for existing page. Search by exact title in the space. If found, ASK the user whether to:
mcp__acendas-atlassian__confluence_update_page)Convert markdown to Confluence format. The MCP server accepts markdown for both confluence_create_page and confluence_update_page (it converts internally). Pass the release notes body as-is.
Create or update. Call the appropriate tool with space_key, title, parent_id (if any), and content.
Report. Print the page URL and a one-line summary: Published to {space}/{title}: {url}.