confluence

A Confluence Cloud workspace tool for Confluence, a service teams use to store and organize shared documentation. It can browse spaces and pages, search with CQL, and manage page content, labels, comments, and child pages.

In plain words
What is it for?
Listing spaces and pages, searching documentation, creating or updating pages, organizing labels and child pages, and adding or viewing comments.
Why use it?
It removes the need to manually navigate Confluence when finding or maintaining team documentation. It supports both reading and changing workspace content.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/morphicai/openclaw-morphixai/confluence
Any agent
npx skills add Morphicai/openclaw-morphixai --skill confluence
Clone the repo
git clone --depth 1 https://github.com/Morphicai/openclaw-morphixai

Made for: Claude Code, Codex.

Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,350 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.01350
Opus 5 $0.00024 $0.00675
Sonnet 5 $0.00010 $0.00270
Haiku 4.5 $0.00005 $0.00135

Measured 2d ago against content hash 4afed88c1e15, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

confluence scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/openclaw-plugin/skills/confluence/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Confluence Cloud

通过 mx_confluence 工具管理 Confluence 工作区:空间浏览、页面 CRUD、标签管理、评论、子页面导航、CQL 搜索。

前置条件

  1. 安装插件: openclaw plugins install openclaw-morphixai
  2. 获取 API Key: 访问 morphix.app/api-keys 生成 mk_xxxxxx 密钥
  3. 配置环境变量: export MORPHIXAI_API_KEY="mk_your_key_here"
  4. 链接账号: 访问 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: "<h2>议题</h2><p>1. 项目进度回顾</p><p>2. 下周计划</p>"
  parent_id: "163924"

body 使用 Confluence Storage Format(HTML 子集)。parent_id 可选,省略则创建为顶级页面。

更新页面

mx_confluence:
  action: update_page
  page_id: "163923"
  title: "更新后的标题"
  body: "<p>更新后的内容</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

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 204 lines · 48 tokens per session scan A 4afed88c1e15

Subscribe to this mod's changes

confluence is a skill published in the GitHub repository Morphicai/openclaw-morphixai (0 stars, last pushed 3mo ago), licensed MIT. It adds 48 tokens to every session and 1,350 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.

Related

Other skills, from other repositories

notion

Notion API for creating and managing pages, databases, and blocks. Use when the user wants to create a Notion page, query a Notion database, update Notion properties, search Notion, add content to Notion, manage Notion blocks, or interact with Notion data sources and workspaces via the API.

elizaOS/eliza · 69 tokens

feishu

Work with Feishu or Lark bots, docs, sheets, bitables, approval flows, and OpenAPI/MCP setup without hardcoding credentials.

Hmbown/CodeWhale · 33 tokens

sn-da-large-file-analysis

万行以上 Excel 数据集的高性能分析引擎。提供 openpyxl readonly 流式读取(iterrows 支持 10 万行以上)、Parquet 转换加速、内存优化、分块处理和大文件写入模式。遇到以下任一情况就主动使用本 skill:①数据行数 ≥ 10k(由 sn-da-excel-workflow 的行数评估步骤触发);②用户出现触发词:大文件 / 大数据量 / 性能优化 / 内存不足 / OOM / 百万行 / 十万行 / 流式读取 / Parquet / 分块处理 / large file / big data / streaming read / chunked processing;③直接使用…

OpenSenseNova/SenseNova-Skills · 218 tokens

resilient-document-pipeline

Unified document generation with tool failure detection, domain knowledge fallback, progressive conversion, and Unicode safety.

HKUDS/OpenSpace · 25 tokens

category-filtering-and-difficulty-analysis

对Excel数据进行自定义分类统计、交叉分析与可视化,并基于多维度指标(如文本长度、术语密度、正则匹配等)进行综合评分与分级,适用于多类别数据分布统计及文本内容难度/质量评估场景。.

OpenSenseNova/SenseNova-Skills · 74 tokens

summarize-document

Summarize a long PDF, scan, office file, text file, or markdown file through the connected Superlinked MCP edge instead of reading the whole source into model context. Use when the user asks for a summary, overview, digest, or "what does this document say" about a large file.

superlinked/sie · 66 tokens