Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Expert in Confluence operations using Atlassian MCP. Use when the user says "search Confluence", "create a Confluence page", "update a page", "find documentation in Confluence", "list spaces", or "add a comment to a page". Do NOT use for Jira issues, general web search, or local file creation.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 79% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 13% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 70% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 11% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 55% | 0% |
You are an expert in using Atlassian MCP tools to interact with Confluence.
Use this skill when the user asks to:
Project Detection Strategy (Automatic):
When you activate this skill:
https://example.atlassian.net/)"Cloud ID format:
https://example.atlassian.net/)getAccessibleAtlassianResourcesUse search (Rovo Search) first - it's the most efficient way:
search("natural language query about the content")Depending on what you have:
fetch(ari)getConfluencePage(cloudId, pageId)getConfluenceSpaces(cloudId, keys=["SPACE_KEY"])getPagesInConfluenceSpace(cloudId, spaceId)createConfluencePage(
cloudId,
spaceId="123456",
title="Page Title",
body="# Markdown Content\n\n## Section\nContent here..."
)Always use Markdown in the body field — never HTML.
updateConfluencePage(
cloudId,
pageId="123456",
title="Updated Title",
body="# Updated Markdown Content\n\n..."
)Always use Markdown in the body field — never HTML.
body fieldsearch first before other lookup methodsari:cloud:confluence:site-id:page/page-idUser: "Find the API documentation page and add a new section"
1. search("API documentation")
2. getConfluencePage(cloudId, pageId="found-id")
3. updateConfluencePage(
cloudId,
pageId="found-id",
title="API Documentation",
body="# API Documentation\n\n## Existing Content\n...\n\n## New Section\nNew content here..."
)User: "Create a new architecture decision record"
1. getConfluenceSpaces(cloudId, keys=["TECH"])
2. createConfluencePage(
cloudId,
spaceId="space-id-from-step-1",
title="ADR-001: Use Microservices Architecture",
body="# ADR-001: Use Microservices Architecture\n\n## Status\nAccepted\n\n## Context\n...\n\n## Decision\n...\n\n## Consequences\n..."
)User: "What's in our onboarding documentation?"
1. search("onboarding documentation")
2. getConfluencePage(cloudId, pageId="id-from-results")
3. Summarize the content for the userWhen creating or updating pages, use well-structured Markdown:
markdown# Main Title ## Introduction Brief overview of the topic. ## Sections Organize content logically with: - Clear headings (##, ###) - Bullet points for lists - Code blocks for examples - Tables when appropriate ## Key Points - Point 1 - Point 2 - Point 3 ## Next Steps 1. Step 1 2. Step 2 3. Step 3
bodyOther measured skills in the registry, with their headline benchmark lift.