원클릭으로
confluence
Read Confluence pages and comments. Use to fetch design docs, ADRs, runbooks, or any wiki content for context when working on tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read Confluence pages and comments. Use to fetch design docs, ADRs, runbooks, or any wiki content for context when working on tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Query an independent peer or a configurable local/OpenRouter review panel, with distinct quorum and evidence-backed consensus interpretation policies.
Safely coordinate bounded delegation while preserving observable outcome and acceptance-evidence pairs through one-writer execution, independent review, and parent validation. Explicit invocation only.
Detect whether a beads repository needs classic-to-Dolt migration or an in-place Dolt schema upgrade.
Migrate beads from classic SQLite/JSONL to Dolt, or safely upgrade an existing Dolt schema after a bd upgrade.
Read-only current-session and UTC-week token telemetry dashboard for Pi, Claude Code, Codex, and optional OpenRouter management analytics.
Read-only audit of Pi routing and configured second-opinion panel model IDs against the active Pi catalog and public live model metadata; reports when Pi or configured models merit review without editing config.
| name | confluence |
| description | Read Confluence pages and comments. Use to fetch design docs, ADRs, runbooks, or any wiki content for context when working on tasks. |
| allowed-tools | Read,AskUserQuestion,mcp__jira__jira_get,mcp__confluence__* |
| model-tier | economy |
| model | haiku |
| effort | medium |
| version | 1.1.0 |
| author | flurdy |
Fetch content from Confluence pages and their comments via the Atlassian MCP.
Confluence lives under the same Atlassian Cloud tenant as Jira. In most setups the Jira MCP (mcp__jira__jira_get) can reach Confluence endpoints too — just pass a Confluence path (/wiki/rest/api/content/...).
Priority order:
mcp__jira__jira_get — preferred, already configured in most environments.mcp__confluence__confluence_get — use if a dedicated Confluence MCP is configured.WebFetch on authenticated Confluence URLs.All examples below use mcp__jira__jira_get. If you fall back to the dedicated Confluence MCP, the paths are the same; only the tool name changes.
# Search for a page by title
/confluence search "Authentication Design Doc"
# Get a page by ID
/confluence 123456
# Get a page by URL
/confluence https://myorg.atlassian.net/wiki/spaces/ENG/pages/123456
Determine intent from the arguments provided.
If the user provides a search term (not a numeric ID or URL):
mcp__jira__jira_get with:
path: /wiki/rest/api/content/search
queryParams:
cql: 'title ~ "<search term>" OR text ~ "<search term>"'
limit: "10"
jq: '{results: [.results[] | {id: .id, title: .title, space: .space.key, url: ._links.webui}]}'
Present results as a table and ask the user which page to fetch.
If the user provides a page ID or after selecting from search results:
mcp__jira__jira_get with:
path: /wiki/rest/api/content/<pageId>
queryParams:
expand: "body.storage,version,space,ancestors"
jq: '{id: id, title: title, space: space.key, version: version.number, ancestors: [ancestors[].title], body: body.storage.value}'
If the user asks for comments on a page:
mcp__jira__jira_get with:
path: /wiki/rest/api/content/<pageId>/child/comment
queryParams:
expand: "body.storage,version"
jq: '{comments: [.results[] | {author: .version.by.displayName, date: .version.when, body: .body.storage.value}]}'
If the user provides a Confluence URL, extract the page ID:
https://<domain>/wiki/spaces/<spaceKey>/pages/<pageId>/<title><pageId> with step 2.Provide:
Strip HTML/XML tags from the storage format body to present clean readable text.
Page: Authentication Design Doc
Space: ENG
Version: 12
Path: Engineering > Architecture > Auth
---
## Overview
This document describes the authentication flow for...
---
Comments (3):
- Alice (2026-01-15): Approved, looks good.
- Bob (2026-01-14): Can we add a sequence diagram?
- Carol (2026-01-13): Initial review — see inline comments.