/install confluence-publish
Confluence Publish
Publish, create, and update Confluence pages from HTML content.
What this skill does
This skill upserts Confluence pages through the Confluence REST API:
- If a page with the same title exists in the target space, it updates the page.
- If no page exists, it creates a new page.
It supports credentials from config, env file, or process environment variables.
Actions
publish_page
Create or update a Confluence page.
Expected input:
input: HTML content, optionally with metadata JSON in the first HTML comment.config: runtime options and credentials.
Metadata comment format:
\x3C!--
{"space_key":"SPACE","page_title":"My Page","parent_page_id":"12345"}
-->
\x3Ch1>Body content\x3C/h1>
Alternative config keys:
space_keypage_titleparent_page_id(optional)body_htmlpage_path(path to a file in the current workspace containing metadata comment + body)
Credential options:
config.credentials.EMAIL,config.credentials.DOMAIN,config.credentials.API_TOKENconfig.env_filepointing to a.envstyle file in the current workspace- Environment vars:
EMAIL,DOMAIN,API_TOKEN
Security constraints:
config.env_fileandconfig.page_pathmust resolve to files under the current workspace directory.DOMAINand optionalbase_urlmust target Atlassian Cloud (https://\x3Ctenant>.atlassian.net/wiki).
Success output includes:
status: "success"operation: "created" | "updated"page_idtitleurlspace_key
test_connection
Checks Confluence authentication and returns user identity info.
Example call payload
{
"action": "publish_page",
"input": "\x3C!-- {\"space_key\":\"SPACE\",\"page_title\":\"Demo\"} -->\x3Ch1>Hello\x3C/h1>",
"config": {
"credentials": {
"EMAIL": "[email protected]",
"DOMAIN": "exampletenant",
"API_TOKEN": "your-token"
}
}
}
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install confluence-publish - 安装完成后,直接呼叫该 Skill 的名称或使用
/confluence-publish触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
confluence-publish 是什么?
Publish, create, and update Confluence pages from HTML content. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 154 次。
如何安装 confluence-publish?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install confluence-publish」即可一键安装,无需额外配置。
confluence-publish 是免费的吗?
是的,confluence-publish 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
confluence-publish 支持哪些平台?
confluence-publish 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 confluence-publish?
由 aeincx(@aeincx)开发并维护,当前版本 v1.0.2。