How this skill is triggered — by the user, by Claude, or both
Slash command
/atlassian-suite:as-confluence-comment <page-id-or-title> [parent-comment-id]<page-id-or-title> [parent-comment-id]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Add a page-level "footer" comment to a Confluence page, or reply into an existing footer thread. Footer comments are the bottom-of-page conversation area — distinct from inline comments, which anchor to specific highlighted text (see `/atlassian-suite:as-confluence-inline-comment`).
Add a page-level "footer" comment to a Confluence page, or reply into an existing footer thread. Footer comments are the bottom-of-page conversation area — distinct from inline comments, which anchor to specific highlighted text (see /atlassian-suite:as-confluence-inline-comment).
$1 = Page id or title.
$2 = Optional parent comment id — if set, posts as a threaded reply.
Resolve page id.
confluence_get_page_by_title(space_id, title) if you know the space id; else confluence_search with CQL./pages/{id}/.Gather the comment body. Markdown by default — auto-converted to ADF. To post storage XML or wiki markup verbatim, use body_storage / body_wiki on the tool call instead of body_markdown.
Preview & confirm before posting. For replies, also surface the parent comment's current content (via confluence_get_comments + filter by id) so the reply isn't out of context.
Post:
$2 set → confluence_reply_to_comment(parent_comment_id=$2, body_markdown=...).confluence_add_comment(page_id, body_markdown=...).Print the returned CommentProjection — id, authorId, versionNumber — so the user can quote the id in follow-ups.
confluence_get_comments(page_id) returns { comments: [...], nextCursor } — cursor-paginated via v2. Iterate until nextCursor is null if you need all comments.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suite