Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

confluence-atlassian汇合阿特拉斯

Agent Skill

confluence-atlassian 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,717

周安装

111

GitHub Stars

公开资料未说明

下载量

870
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:confluence-atlassian(汇合阿特拉斯)
来源仓库:https://github.com/jeffersonling1217-png/confluence-atlassian
安装命令:
openclaw skills install confluence-atlassian
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install confluence-atlassian

简介

功能齐全的 Confluence Cloud REST API v2 技能,管理页面、空间、博客文章等。

  • 适合在 OpenClaw 中检查配置或整理部署步骤时使用。
  • 可结合来源仓库和原始 README 核验具体用法,通过 clawhub 安装。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • confluence-atlassian 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
confluence-atlassian
description
|
metadata
author
jeffersonling1217-png
version
1.0.0
clawdbot
emoji
📄
homepage
https://clawhub.ai/jeffersonling1217-png/confluence-atlassian
requires
env

Confluence REST API v2 Skill

Interact with Atlassian Confluence Cloud using the REST API v2. This skill enables reading, creating, updating, and deleting Confluence content including pages, blog posts, attachments, comments, spaces, labels, and more.

Authentication

Basic Auth (Email + API Token)

Required Environment Variables:

CONFLUENCE_EMAIL=your_email@example.com
CONFLUENCE_API_TOKEN=your_api_token
CONFLUENCE_DOMAIN=your_domain  # e.g. "yourcompany" for yourcompany.atlassian.net

Base URL

https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2

Generate API Token

  1. Go to https://id.atlassian.com/manage-profile/security/api-tokens
  2. Click "Create API token"
  3. Label it (e.g., "nanobot")
  4. Copy the token

curl Authentication

--user "$CONFLUENCE_EMAIL:$CONFLUENCE_API_TOKEN"

curl Authentication Header:

-H "Authorization: Basic $(echo -n '$CONFLUENCE_EMAIL:$CONFLUENCE_API_TOKEN' | base64)"

Generate Base64 Auth String

# Linux/Mac
echo -n "$CONFLUENCE_EMAIL:$CONFLUENCE_API_TOKEN" | base64

# Windows PowerShell
[Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes("$CONFLUENCE_EMAIL:$CONFLUENCE_API_TOKEN"))

Rate Limiting

  • If you encounter HTTP 429 (Too Many Requests), wait 5-10 seconds and retry automatically
  • Maximum 3 retries with exponential backoff

Common Headers

-H "Accept: application/json"
-H "Content-Type: application/json"
-H "Authorization: Basic <base64_encoded_auth>"

API Endpoints Reference

Total: 100+ API Endpoints across 29 API Groups


1. Admin Key (3 endpoints)

MethodEndpointDescription
GET/admin-keyGet Admin Key status
POST/admin-keyEnable Admin Key
DELETE/admin-keyDisable Admin Key

Get Admin Key:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/admin-key" \
  -H "Authorization: Basic <base64_auth>"

Enable Admin Key (10 min default):

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/admin-key" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{"durationInMinutes": 10}'

2. Attachment (8 endpoints)

MethodEndpointDescription
GET/attachmentsGet all attachments
GET/attachments/{id}Get attachment by ID
DELETE/attachments/{id}Delete attachment
GET/attachments/{id}/labelsGet labels for attachment
GET/attachments/{id}/operationsGet permitted operations
GET/attachments/{id}/versionsGet attachment versions
GET/attachments/{id}/versions/{version-number}Get version details
GET/attachments/{id}/footer-commentsGet attachment comments

Get All Attachments:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/attachments?limit=25" \
  -H "Authorization: Basic <base64_auth>"

Get Attachment by ID:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/attachments/att123456" \
  -H "Authorization: Basic <base64_auth>"

Delete Attachment (move to trash):

curl -X DELETE "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/attachments/att123456" \
  -H "Authorization: Basic <base64_auth>"

Purge (permanently delete) trashed attachment:

curl -X DELETE "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/attachments/att123456?purge=true" \
  -H "Authorization: Basic <base64_auth>"

3. Blog Post (15 endpoints)

MethodEndpointDescription
GET/blogpostsGet all blog posts
POST/blogpostsCreate blog post
GET/blogposts/{id}Get blog post by ID
PUT/blogposts/{id}Update blog post
DELETE/blogposts/{id}Delete blog post
GET/blogposts/{id}/attachmentsGet attachments
GET/blogposts/{id}/custom-contentGet custom content
GET/blogposts/{id}/labelsGet labels
GET/blogposts/{id}/likes/countGet like count
GET/blogposts/{id}/likes/usersGet users who liked
GET/blogposts/{id}/operationsGet operations
GET/blogposts/{id}/versionsGet versions
GET/blogposts/{id}/versions/{version-number}Get version details
GET/blogposts/{id}/footer-commentsGet footer comments
GET/blogposts/{id}/inline-commentsGet inline comments

Get All Blog Posts:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/blogposts?limit=25&space-id=123" \
  -H "Authorization: Basic <base64_auth>"

Create Blog Post:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/blogposts" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "spaceId": "SPACE_KEY",
    "title": "My Blog Post",
    "body": {
      "representation": "storage",
      "value": "<p>Blog post content here</p>"
    }
  }'

Get Blog Post with Body:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/blogposts/123?body-format=storage" \
  -H "Authorization: Basic <base64_auth>"

4. Comment (12 endpoints)

MethodEndpointDescription
GET/footer-commentsGet all footer comments
POST/footer-commentsCreate footer comment
GET/footer-comments/{comment-id}Get footer comment
PUT/footer-comments/{comment-id}Update footer comment
DELETE/footer-comments/{comment-id}Delete footer comment
GET/footer-comments/{id}/childrenGet child comments
GET/inline-commentsGet all inline comments
POST/inline-commentsCreate inline comment
GET/inline-comments/{comment-id}Get inline comment
PUT/inline-comments/{comment-id}Update inline comment
DELETE/inline-comments/{comment-id}Delete inline comment
GET/inline-comments/{id}/childrenGet child inline comments

Create Footer Comment on Page:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/footer-comments" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "pageId": "123456",
    "body": {
      "representation": "storage",
      "value": "<p>Comment content</p>"
    }
  }'

Create Inline Comment:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/inline-comments" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "pageId": "123456",
    "body": {
      "representation": "storage",
      "value": "<p>Inline comment</p>"
    },
    "inlineCommentProperties": {
      "textSelection": "selected text",
      "textSelectionMatchCount": 1,
      "textSelectionMatchIndex": 0
    }
  }'

Resolve Inline Comment:

curl -X PUT "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/inline-comments/123" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "version": {"number": 2},
    "resolved": true
  }'

5. Content Properties (40 endpoints)

For: Attachments, Blog Posts, Pages, Custom Content, Whiteboards, Databases, Folders, Comments, Smart Links

MethodEndpoint PatternDescription
GET/{type}/{id}/propertiesGet all properties
POST/{type}/{id}/propertiesCreate property
GET/{type}/{id}/properties/{property-id}Get property
PUT/{type}/{id}/properties/{property-id}Update property
DELETE/{type}/{id}/properties/{property-id}Delete property

Get Page Properties:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/properties" \
  -H "Authorization: Basic <base64_auth>"

Create Page Property:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/properties" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "key": "custom-key",
    "value": {"nested": "value"}
  }'

Update Page Property:

curl -X PUT "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/properties/789" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "key": "custom-key",
    "value": {"updated": "value"},
    "version": {"number": 2}
  }'

6. Label (14 endpoints)

MethodEndpointDescription
GET/labelsGet all labels
GET/labels/{id}/attachmentsGet attachments with label
GET/labels/{id}/blogpostsGet blog posts with label
GET/labels/{id}/pagesGet pages with label
GET/attachments/{id}/labelsGet attachment labels
GET/blogposts/{id}/labelsGet blog post labels
GET/custom-content/{id}/labelsGet custom content labels
GET/pages/{id}/labelsGet page labels
GET/spaces/{id}/labelsGet space labels
GET/spaces/{id}/content/labelsGet space content labels

Get Page Labels:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/labels" \
  -H "Authorization: Basic <base64_auth>"

7. Page (14 endpoints)

MethodEndpointDescription
GET/pagesGet all pages
POST/pagesCreate page
GET/pages/{id}Get page by ID
PUT/pages/{id}Update page
DELETE/pages/{id}Delete page
PUT/pages/{id}/titleUpdate page title
GET/pages/{id}/attachmentsGet attachments
GET/pages/{id}/custom-contentGet custom content
GET/pages/{id}/labelsGet labels
GET/pages/{id}/operationsGet operations
GET/pages/{id}/versionsGet versions
GET/pages/{id}/versions/{version-number}Get version details
GET/pages/{id}/footer-commentsGet footer comments
GET/pages/{id}/inline-commentsGet inline comments

Get All Pages in Space:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages?space-id=123&limit=50" \
  -H "Authorization: Basic <base64_auth>"

Get Page with Body:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456?body-format=storage" \
  -H "Authorization: Basic <base64_auth>"

Create Page:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "spaceId": "SPACE_KEY",
    "title": "My New Page",
    "parentId": "123456",
    "body": {
      "representation": "storage",
      "value": "<p>Page content in storage format</p>"
    }
  }'

Update Page:

curl -X PUT "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "123456",
    "status": "current",
    "title": "Updated Page Title",
    "body": {
      "representation": "storage",
      "value": "<p>Updated content</p>"
    },
    "version": {
      "number": 5,
      "message": "Updated page content"
    }
  }'

Delete Page (move to trash):

curl -X DELETE "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456" \
  -H "Authorization: Basic <base64_auth>"

8. Space (22 endpoints)

MethodEndpointDescription
GET/spacesGet all spaces
POST/spacesCreate space
GET/spaces/{id}Get space by ID
PUT/spaces/{id}Update space
DELETE/spaces/{id}Delete space
GET/spaces/{id}/pagesGet space pages
GET/spaces/{id}/pages/searchSearch pages in space
GET/spaces/{id}/blogpostsGet space blog posts
GET/spaces/{id}/contentGet space content
GET/spaces/{id}/content/typesGet content types
GET/spaces/{id}/labelsGet space labels
GET/spaces/{id}/content/labelsGet space content labels
GET/spaces/{id}/operationsGet space operations
GET/spaces/{id}/permissionsGet space permissions
GET/spaces/{id}/propertiesGet space properties
POST/spaces/{id}/propertiesCreate space property
GET/spaces/{id}/properties/{property-id}Get space property
PUT/spaces/{id}/properties/{property-id}Update space property
DELETE/spaces/{id}/properties/{property-id}Delete space property
GET/spaces/{id}/iconsGet space icons
POST/spaces/{id}/iconsSet space icon
GET/spaces/{id}/lookupsLookup space by key

Get All Spaces:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/spaces?limit=50" \
  -H "Authorization: Basic <base64_auth>"

Get Space by Key:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/spaces?keys=SPACE_KEY" \
  -H "Authorization: Basic <base64_auth>"

Create Space:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/spaces" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My New Space",
    "key": "MYSpace",
    "description": {
      "plain": {
        "value": "Space description"
      }
    }
  }'

9. User (9 endpoints)

MethodEndpointDescription
GET/users/meGet current user
GET/users/{id}Get user by ID
GET/users/bulkGet multiple users
POST/users/bulkBulk get users by emails
GET/user/access/check-access-by-emailCheck user access by email
POST/user/access/check-access-by-emailCheck user access
GET/user/access/invite-by-emailGet user invite by email
POST/user/access/invite-by-emailInvite user by email
POST/user/access/batch-invite-by-emailBatch invite users

Get Current User:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/users/me" \
  -H "Authorization: Basic <base64_auth>"

Get User by ID:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/users/123456" \
  -H "Authorization: Basic <base64_auth>"

Bulk Get Users:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/users/bulk?ids=123,456" \
  -H "Authorization: Basic <base64_auth>"

10. Version History (8 endpoints)

MethodEndpointDescription
GET/pages/{id}/versionsGet page versions
GET/pages/{id}/versions/{version-number}Get specific version
GET/blogposts/{id}/versionsGet blog post versions
GET/blogposts/{id}/versions/{version-number}Get specific version
GET/attachments/{id}/versionsGet attachment versions
GET/attachments/{id}/versions/{version-number}Get specific version
POST/pages/{id}/versions/restoreRestore page version
POST/blogposts/{id}/versions/restoreRestore blog post version

Get Page Versions:

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/versions?limit=10" \
  -H "Authorization: Basic <base64_auth>"

Restore Page Version:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/versions/restore" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{"newVersion": {"message": "Restoring previous version"}}'

11. Whiteboard (7 endpoints)

MethodEndpointDescription
GET/whiteboardsGet all whiteboards
POST/whiteboardsCreate whiteboard
GET/whiteboards/{id}Get whiteboard by ID
PUT/whiteboards/{id}Update whiteboard
DELETE/whiteboards/{id}Delete whiteboard
GET/whiteboards/{id}/connectionsGet whiteboard connections
GET/whiteboards/{id}/operationsGet whiteboard operations

Create Whiteboard:

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/whiteboards" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "spaceId": "123456",
    "title": "My Whiteboard"
  }'

Pagination

The V2 API uses cursor-based pagination. Responses include a _links.next URL when more results are available.

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages?space-id=123456&limit=100" \
  -H "Authorization: Basic <base64_auth>"

Response:

{
  "results": [...],
  "_links": {
    "next": "/wiki/api/v2/pages?cursor=abc123",
    "base": "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki"
  }
}

Search

Search Pages by Title

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages?title=My%20Page&space-id=123456" \
  -H "Authorization: Basic <base64_auth>"

Get Page with All Details

curl -X GET "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456?include-labels=true&include-properties=true&include-versions=true&body-format=storage" \
  -H "Authorization: Basic <base64_auth>"

Update Page Title

curl -X PUT "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/title" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{"value": "New Page Title"}'

Redact Page Content (remove sensitive content)

curl -X POST "https://$CONFLUENCE_DOMAIN.atlassian.net/wiki/api/v2/pages/123456/redact" \
  -H "Authorization: Basic <base64_auth>" \
  -H "Content-Type: application/json" \
  -d '{
    "version": {"number": 3},
    "body": {
      "representation": "storage",
      "value": "<p>Redacted content</p>"
    }
  }'

Error Handling

StatusMeaning
400Bad request or malformed data
401Invalid credentials or expired token
403Permission denied
404Resource not found
409Conflict (e.g., duplicate title)
429Rate limited - wait and retry
500Internal server error

Notes

  • Confluence Storage Format: Content uses XML-like storage format. Example: <p>Paragraph</p>, <h1>Heading</h1>, <ul><li>Item</li></ul>
  • Version Numbers: When updating pages, you must increment the version number
  • DELETE Returns 204: DELETE operations return 204 No Content
  • IDs are Strings: All IDs are passed as strings
  • Cursor Pagination: Use the cursor from _links.next for pagination

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95%
按下载量换算827

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills