/install lukaizj-confluence
Confluence Integration
Confluence integration skill for OpenClaw. Manage wiki pages, spaces, and content via REST API using pure curl/shell.
Capabilities
- Search Confluence pages using CQL
- Get, create, and update pages
- List and view spaces
- Upload attachments to pages
- Create child pages
Setup
- Create a Confluence API token or use password
- Get your Confluence base URL
- Configure environment variables
Environment Variables
| Variable | Required | Description |
|---|---|---|
CONFLUENCE_URL |
Yes | Your Confluence base URL (e.g., https://your-company.atlassian.net) |
CONFLUENCE_USER |
Yes | Your Confluence username or email |
CONFLUENCE_PASS |
Yes | Your password or API token |
Security Note: These credentials are only used locally and never exposed or stored externally.
Usage Examples
Check connection to Confluence
Search for pages containing "kyuubi"
Get page with ID 123456
Create a new page in space DAT with title "Project Notes"
Update page 123456 with new content
Upload attachment to page 123456
Commands
check
Verify connection to Confluence instance.
search
Search pages using Confluence Query Language (CQL).
text ~ "keyword"
space = "DAT" AND text ~ "spark"
type = page
page get
Get a page by ID. Returns title, content, space, version.
page create
Create a new page. Options:
--space: Space key (required)--title: Page title (required)--body: Page content (required)--parent: Parent page ID for child pages
page update
Update page content. Options:
--body: New content--title: New title--append: Append to existing content
page attach
Upload file attachment to a page.
space list
List all accessible spaces.
CQL Examples
| Search | Description |
|---|---|
text ~ "kyuubi" |
Pages containing "kyuubi" |
space = "DAT" |
Pages in DAT space |
type = page |
All pages |
text ~ "spark" AND space = "DEV" |
Pages about spark in DEV space |
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install lukaizj-confluence - 安装完成后,直接呼叫该 Skill 的名称或使用
/lukaizj-confluence触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Confluence Integration 是什么?
Confluence REST API integration via curl - lightweight solution without Python dependencies. Supports search, page operations, and file attachments. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 79 次。
如何安装 Confluence Integration?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install lukaizj-confluence」即可一键安装,无需额外配置。
Confluence Integration 是免费的吗?
是的,Confluence Integration 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Confluence Integration 支持哪些平台?
Confluence Integration 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Confluence Integration?
由 lukaizj(@lukaizj)开发并维护,当前版本 v0.1.0。