From atlassian-suite
This skill should be used when the user asks to "show confluence page X", "read this confluence page", "rewrite confluence page", "create a child page", or runs `/atlassian-suite:confluence-page`. Reads a page or performs a FULL-PAGE rewrite/create. For partial edits (sections, find/replace, append), prefer `/atlassian-suite:confluence-edit`.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suiteThis skill is limited to using the following tools:
Operate on a single Confluence page — full-page reads, full-page rewrites, child page creation.
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.
Operate on a single Confluence page — full-page reads, full-page rewrites, child page creation.
For surgical edits (replace one section, append, find/replace, insert after heading) use /atlassian-suite:confluence-edit instead. This skill replaces or creates entire pages.
$1 = Page ID, title, or full URL.
$2 = Action (read, rewrite, create-child); default read.
$3 = Optional body (path to a file or inline text) for rewrite/create.
Resolve the page.
/pages/{id}/ or use confluence_search with title.confluence_search with space = X AND title = "Y". If multiple match, ask the user.Branch on action:
read → confluence_get_page with representation=atlas_doc_format. Render title + first 1500 chars + comment count.
representation=storage instead so macros are visible.rewrite → fetch current page first to get version number. Choose the right body input:
body_storage with raw XHTMLbody_adfbody_markdown (auto-converted; heading levels reconciled)confluence_get_page_diff after the update if the user wants to inspect)confluence_update_page with version_number = current + 1.body_markdown — those macros will be stripped.create-child → ask for title and parent (default = the resolved page). Same body-format choice as rewrite. Call confluence_create_page with parent_id.
Always confirm writes. Page version increments on update; surface this in the confirmation prompt.
/atlassian-suite:confluence-edit. That skill preserves macros/images by working in storage format.