원클릭으로
cowork-with-wiki
Use when the user works with or mentions Confluence wiki, product docs, documentation pages, or knowledge base content
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user works with or mentions Confluence wiki, product docs, documentation pages, or knowledge base content
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guides MCP setup for Atlassian and Figma integration. Use when the user needs to set up, configure, or troubleshoot MCP server connections for Jira, Confluence, or Figma.
Use when the user works with or mentions Jira issues, tickets, stories, bugs, tasks, sprints, epics, or any agile workflow
Use when the user works with or mentions Figma designs, prototypes, mockups, UI specs, design tokens, or design-to-code workflows
| name | cowork-with-wiki |
| description | Use when the user works with or mentions Confluence wiki, product docs, documentation pages, or knowledge base content |
| argument-hint | [search term or page title] |
| allowed-tools | Read, Glob, Grep, Bash, Agent, AskUserQuestion |
Confluence wiki workflow for Claude Code via the Atlassian Rovo MCP server.
Requires globally installed Atlassian MCP server (named atlassian). If not set up, run /cowork-with:cowork-with-onboarding.
For product doc queries, navigate from root via getConfluencePageDescendants.
New page creation skips the creator check (current user is the creator), but always confirm with the user before creating.
Spawn via: Agent tool → name: "explorer" (the plugin ships agents/explorer.md — haiku model, read-only: MCP reads + codebase + git).
| Task | Who |
|---|---|
| Read pages, search, list spaces | explorer agent |
| Browse page tree (descendants) | explorer agent |
| Read comments (footer, inline) | explorer agent |
| Verify page creator before writes | explorer agent |
| Draft page content | Main model |
| Preview to user and get confirmation | Main model |
| Write to Confluence (create, update, comment) | Main model |
Read (explorer agent):
getConfluencePage — get a page by ID, body returned as MarkdowngetConfluencePageDescendants — list child pages under a parentgetConfluencePageFooterComments — list footer comments on a pagegetConfluencePageInlineComments — list inline comments on a pagegetConfluenceCommentChildren — list replies to a commentgetConfluenceSpaces — list available spacesgetPagesInConfluenceSpace — list pages in a spacesearchConfluenceUsingCql — search using CQL (Confluence Query Language)search — cross-service Atlassian search (searches Confluence + Jira together)Write (main model, after creator check + user confirmation):
createConfluencePage — create a new page (Markdown body)updateConfluencePage — update existing page (title, body, location)createConfluenceFooterComment — add a footer commentcreateConfluenceInlineComment — add an inline comment1. `explorer` agent → Read page to get current content AND verify creator (getConfluencePage)
2. HARD-GATE → If creator != current user, REFUSE and stop
3. Main model → Draft updated content
4. Main model → Preview changes to user for confirmation
5. Main model → Apply update after user approves (updateConfluencePage)
1. `explorer` agent → Read parent page to verify location (getConfluencePage)
2. Main model → Draft page title and content
3. Main model → Preview to user for confirmation
4. Main model → Create page after user approves (createConfluencePage)
Comments on existing pages follow the same gate as page updates: verify creator first, then confirm with user.
Before creating or updating page content, you MUST use `AskUserQuestion` to present a structured confirmation. Show title, parent page, and body content in the `markdown` preview field. Options: "Submit" (Recommended), "Edit", "Cancel". Do NOT call any Confluence write tool without explicit user approval via this confirmation. This is NOT optional — text-based confirmation does NOT satisfy this gate. You MUST call the `AskUserQuestion` tool.| Goal | CQL |
|---|---|
| Pages in a space | space = "ONEKEY" AND type = page |
| Search by title | space = "ONEKEY" AND title ~ "search term" |
| Pages containing text | space = "ONEKEY" AND text ~ "search term" |
| Recently modified | space = "ONEKEY" AND lastModified > now("-7d") |
| Pages I created | space = "ONEKEY" AND creator = currentUser() |
| Pages I modified | space = "ONEKEY" AND contributor = currentUser() |
/cowork-with:cowork-with-jira with type Task and label documentation.explorer agent to search Jira for related issues via searchJiraIssuesUsingJql./cowork-with:cowork-with-figma to extract design specs for implementation.The following operations are not available via MCP and require the Confluence web UI: