소스 정보
- 저장소
- ChenKuanSun/teamclaw
- 최근 소스 활동
- 2026년 4월 16일 22:25
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ChenKuanSun/teamclaw --skill confluence명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | confluence |
| description | Search, read, and create Confluence pages and spaces via the Atlassian REST API |
| homepage | https://developer.atlassian.com/cloud/confluence/rest/v2/ |
| metadata | {"openclaw":{"emoji":"📄","requires":{"env":"[Truncated]"},"primaryEnv":"CONFLUENCE_TOKEN"}} |
Search, read, create, and update Confluence Cloud pages and spaces using the Atlassian REST API v2.
All requests use HTTP Basic Auth with $CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN. The base URL points to your Confluence Cloud instance (e.g. https://yourteam.atlassian.net/wiki).
Common headers for every request:
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Use CQL (Confluence Query Language) to find pages and blog posts.
curl -s -X GET \
"$CONFLUENCE_BASEURL/rest/api/content/search?cql=type%3Dpage%20AND%20text%7E%22deployment%20runbook%22&limit=10" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Accept: application/json"
Key response fields: results[].id, results[].title, results[].space.key, results[].status, results[]._links.webui.
Useful CQL examples:
type = page AND space = "ENG" AND title ~ "architecture"type = page AND label = "runbook" AND lastModified >= "2026-01-01"creator = currentUser() AND type = pageancestor = 123456 (pages under a parent)curl -s -X GET \
"$CONFLUENCE_BASEURL/api/v2/pages/123456?body-format=storage" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Accept: application/json"
Key response fields: id, title, spaceId, status, body.storage.value (HTML storage format), version.number.
The storage format is XHTML-based markup. Example content:
<h1>Heading</h1>
<p>Paragraph text with <strong>bold</strong> and <em>italic</em>.</p>
<ac:structured-macro ac:name="code">
<ac:parameter ac:name="language">python</ac:parameter>
<ac:plain-text-body><![CDATA[print("hello")]]></ac:plain-text-body>
</ac:structured-macro>
Common macros: ac:structured-macro for code blocks, info panels, tables of contents. Use <ac:link> for internal links.
curl -s -X POST \
"$CONFLUENCE_BASEURL/api/v2/pages" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"spaceId": "65541",
"status": "current",
"title": "Q2 Deployment Runbook",
"parentId": "98765",
"body": {
"representation": "storage",
"value": "<h1>Deployment Steps</h1><p>Follow these steps to deploy the Q2 release.</p><ol><li>Run preflight checks</li><li>Deploy to staging</li><li>Run smoke tests</li><li>Deploy to production</li></ol>"
}
}'
Response: id, title, version.number, _links.webui.
Updating requires the current version number (increment by 1).
curl -s -X PUT \
"$CONFLUENCE_BASEURL/api/v2/pages/123456" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"id": "123456",
"status": "current",
"title": "Q2 Deployment Runbook (Updated)",
"body": {
"representation": "storage",
"value": "<h1>Deployment Steps</h1><p>Updated procedure for Q2.</p>"
},
"version": {
"number": 3,
"message": "Updated deployment steps"
}
}'
Always fetch the page first to get the current version.number, then increment it.
curl -s -X GET \
"$CONFLUENCE_BASEURL/api/v2/spaces?limit=25&sort=name" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Accept: application/json"
Key response fields: results[].id, results[].key, results[].name, results[].type (global or personal).
curl -s -X GET \
"$CONFLUENCE_BASEURL/api/v2/pages/123456/children?limit=25" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Accept: application/json"
curl -s -X POST \
"$CONFLUENCE_BASEURL/rest/api/content/123456/label" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Content-Type: application/json" \
-d '[{ "prefix": "global", "name": "runbook" }, { "prefix": "global", "name": "q2-release" }]'
curl -s -X GET \
"$CONFLUENCE_BASEURL/api/v2/pages/123456/footer-comments?body-format=storage&limit=25" \
-u "$CONFLUENCE_EMAIL:$CONFLUENCE_TOKEN" \
-H "Accept: application/json"
Confluence uses XHTML-based "storage format" for page bodies. Key elements:
| Element | Purpose |
|---|---|
<h1> to <h6> | Headings |
<p> | Paragraphs |
<ul>, <ol>, <li> | Lists |
<table>, <tr>, <td> | Tables (use <th> for headers) |
<ac:structured-macro ac:name="code"> | Code block |
<ac:structured-macro ac:name="info"> | Info panel |
<ac:structured-macro ac:name="warning"> | Warning panel |
<ac:structured-macro ac:name="toc"> | Table of contents |
<ac:image><ri:attachment ri:filename="img.png"/></ac:image> | Embedded image |
/api/v2/pages. Search and labels still use /rest/api/content. Both work with the same auth.storage representation when creating/updating pages. The view format is rendered HTML for display only._links.next in the response for the next page URL.spaceId. To find a space ID from its key, use GET /api/v2/spaces?keys=ENG.body-format) and fetching the body only when needed.