← 返回 Skills 市场
332
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install confluence-2
功能描述
Confluence Cloud 集成。空间/页面 CRUD、标签、评论、子页面、CQL 搜索。通过 MorphixAI 代理安全访问 Confluence Cloud API(v2 CRUD + v1 搜索)。
使用说明 (SKILL.md)
Confluence Cloud
通过 mx_confluence 工具管理 Confluence 工作区:空间浏览、页面 CRUD、标签管理、评论、子页面导航、CQL 搜索。
前置条件
- 安装插件:
openclaw plugins install openclaw-morphixai - 获取 API Key: 访问 morphix.app/api-keys 生成
mk_xxxxxx密钥 - 配置环境变量:
export MORPHIXAI_API_KEY="mk_your_key_here" - 链接账号: 访问 morphix.app/connections 链接 Confluence 账号,或通过
mx_link工具链接(app:confluence)
核心操作
列出空间
mx_confluence:
action: list_spaces
limit: 10
type: "global"
type可选值:global(团队空间)、personal(个人空间)
获取空间详情
mx_confluence:
action: get_space
space_id: "163843"
列出页面
mx_confluence:
action: list_pages
space_id: "163843"
limit: 20
sort: "-modified-date"
省略
space_id列出所有空间的页面。
获取页面详情
mx_confluence:
action: get_page
page_id: "163923"
body_format: "storage"
body_format可选值:storage(HTML)、atlas_doc_format(ADF)、view(渲染后 HTML)
创建页面
mx_confluence:
action: create_page
space_id: "163843"
title: "会议纪要 2026-02-25"
body: "\x3Ch2>议题\x3C/h2>\x3Cp>1. 项目进度回顾\x3C/p>\x3Cp>2. 下周计划\x3C/p>"
parent_id: "163924"
body使用 Confluence Storage Format(HTML 子集)。parent_id可选,省略则创建为顶级页面。
更新页面
mx_confluence:
action: update_page
page_id: "163923"
title: "更新后的标题"
body: "\x3Cp>更新后的内容\x3C/p>"
version: 2
必须提供
version(当前版本号 + 1),否则更新失败。先用get_page获取当前版本号。
删除页面
mx_confluence:
action: delete_page
page_id: "163923"
获取子页面
mx_confluence:
action: get_child_pages
page_id: "163923"
limit: 20
sort: "-modified-date"
获取页面标签
mx_confluence:
action: get_page_labels
page_id: "163923"
添加标签
mx_confluence:
action: add_page_label
page_id: "163923"
label: "important"
删除标签
mx_confluence:
action: delete_page_label
page_id: "163923"
label_id: "12345"
先用
get_page_labels获取 label ID。
获取页面评论
mx_confluence:
action: get_page_comments
page_id: "163923"
body_format: "storage"
limit: 10
添加评论
mx_confluence:
action: add_page_comment
page_id: "163923"
body: "\x3Cp>这是一条评论\x3C/p>"
CQL 搜索
mx_confluence:
action: search
cql: "type=page AND space.key=SOP AND title~\"API\""
limit: 10
CQL 常用语法:
type=page/type=blogpost— 内容类型space.key=XX— 指定空间title~"关键词"— 标题模糊搜索text~"关键词"— 全文搜索creator=currentUser()— 当前用户创建的lastModified >= "2026-01-01"— 时间范围
常见工作流
浏览团队文档
1. mx_confluence: list_spaces → 找到目标空间
2. mx_confluence: list_pages, space_id: "xxx", sort: "-modified-date"
3. mx_confluence: get_page, page_id: "xxx", body_format: "storage" → 查看内容
创建并更新文档
1. mx_confluence: list_spaces → 选择空间
2. mx_confluence: create_page, space_id: "xxx", title: "...", body: "..."
3. mx_confluence: get_page → 获取版本号
4. mx_confluence: update_page, version: N+1 → 更新内容
注意事项
- CRUD 操作使用 Confluence Cloud v2 API;CQL 搜索使用 v1 API(v2 无搜索端点)
- 页面内容格式为 Confluence Storage Format(HTML 子集)
- 更新页面时必须提供正确的
version号(当前版本 + 1) - CQL 搜索功能强大,建议充分利用
account_id参数通常省略,工具自动检测已链接的 Confluence 账号
安全使用建议
This skill appears internally consistent: it proxies Confluence operations through MorphixAI and therefore requires only your Morphix API key plus a linked Confluence account. Before installing, confirm you trust morphix.app and the openclaw-morphixai plugin because Morphix will have the ability to act on your Confluence workspace. Consider these precautions: (1) limit the Confluence account or API-client permissions used for the connection (use a dedicated integration account if possible), (2) store and rotate the MORPHIXAI_API_KEY per your organization policy, (3) review Morphix's privacy/security docs and the OpenClaw plugin source if available, and (4) be aware that the skill can be invoked by the agent (normal behavior) — if you want to avoid autonomous calls, restrict when the skill may be used in your agent settings.
功能分析
Type: OpenClaw Skill
Name: confluence-2
Version: 0.1.1
The skill bundle provides a standard integration for Confluence Cloud via the MorphixAI platform (morphix.app). It defines typical CRUD operations for spaces, pages, labels, and comments, as well as CQL search functionality. The instructions in SKILL.md are transparent regarding the use of the MORPHIXAI_API_KEY and the third-party bridge, with no evidence of malicious intent, data exfiltration, or prompt injection attacks.
能力评估
Purpose & Capability
Name/description (Confluence CRUD, comments, labels, CQL search) matches the SKILL.md examples and required resources. The single required env var (MORPHIXAI_API_KEY) is directly referenced and justified by the use of the MorphixAI proxy.
Instruction Scope
Instructions only describe using an mx_confluence action API via the Morphix proxy, installing the openclaw-morphixai plugin, and linking a Confluence account via morphix.app; there are no instructions to read arbitrary files, access unrelated env vars, or transmit data to unexpected endpoints.
Install Mechanism
This is an instruction-only skill with no install spec and no code files—no downloads or archives are requested, which minimizes on-disk execution risk. It does instruct installing an OpenClaw plugin (openclaw-morphixai), which is expected for this proxy-based design.
Credentials
Only MORPHIXAI_API_KEY is required and explicitly used; no unrelated credentials or broad config paths are requested. The need for a Morphix API key is proportionate given the design where Morphix mediates Confluence API calls.
Persistence & Privilege
The skill is not marked always:true and does not request system-wide configuration changes or modify other skills. It follows normal agent-invocable defaults and does not demand elevated persistence.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install confluence-2 - 安装完成后,直接呼叫该 Skill 的名称或使用
/confluence-2触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- 新增详细前置条件说明,包括插件安装、API Key 获取与环境变量配置、Confluence 账号链接指引
- 明确 API Key 获取和账号授权需访问 morphix.app 的具体页面
- 保持核心功能、操作方法与工作流不变
- 其他内容无变动
v0.1.0
Confluence Cloud 集成初版发布!
- 支持空间/页面的浏览、创建、更新、删除、子页面、标签与评论管理
- 提供 CQL 检索工具,为内容查找和筛选带来强大能力
- 所有请求通过 MorphixAI 代理安全访问 Confluence Cloud API
- 操作流程、参数说明和常见工作流一目了然,便于上手
- 部署需配置 MORPHIXAI_API_KEY 环境变量并绑定 Confluence 账户
元数据
常见问题
Confluence 是什么?
Confluence Cloud 集成。空间/页面 CRUD、标签、评论、子页面、CQL 搜索。通过 MorphixAI 代理安全访问 Confluence Cloud API(v2 CRUD + v1 搜索)。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 332 次。
如何安装 Confluence?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install confluence-2」即可一键安装,无需额外配置。
Confluence 是免费的吗?
是的,Confluence 完全免费(开源免费),可自由下载、安装和使用。
Confluence 支持哪些平台?
Confluence 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Confluence?
由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。
推荐 Skills