skills$openclaw/confluence-v2
pangin4.5k

by pangin

confluence-v2 – OpenClaw Skill

confluence-v2 is an OpenClaw Skills integration for coding workflows. Full Confluence Cloud REST API v2 skill (pages, spaces, folders, databases, whiteboards, comments, labels, tasks, properties, etc.) with basic/OAuth auth, pagination, and migration from confluence-cli.

4.5k stars3.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameconfluence-v2
descriptionFull Confluence Cloud REST API v2 skill (pages, spaces, folders, databases, whiteboards, comments, labels, tasks, properties, etc.) with basic/OAuth auth, pagination, and migration from confluence-cli. OpenClaw Skills integration.
ownerpangin
repositorypangin/openclaw-confluence-skill
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @pangin/openclaw-confluence-skill
last updatedFeb 7, 2026

Maintainer

pangin

pangin

Maintains confluence-v2 in the OpenClaw Skills directory.

View GitHub profile
File Explorer
40 files
.
refs
endpoints.md
2.1 KB
openapi-v2.v3.json
582.2 KB
scopes.md
818 B
tests.md
361 B
usage.md
389 B
scripts
admin-key.js
674 B
ancestors.js
426 B
app-properties.js
985 B
attachments.js
1.3 KB
blogposts.js
1.1 KB
call.js
497 B
children.js
665 B
classification.js
1.5 KB
client.js
3.1 KB
comments.js
1.7 KB
content.js
440 B
data-policies.js
550 B
databases.js
688 B
descendants.js
430 B
embeds.js
676 B
folders.js
1010 B
labels.js
1.3 KB
likes.js
457 B
migrate-from-confluence-cli.js
1.1 KB
operations.js
504 B
pages.js
1.5 KB
properties.js
1.0 KB
redactions.js
398 B
space-permissions.js
705 B
space-properties.js
1004 B
space-roles.js
1.4 KB
spaces.js
977 B
tasks.js
800 B
users.js
800 B
versions.js
825 B
whiteboards.js
696 B
_meta.json
296 B
SKILL.md
1.9 KB
SKILL.md

name: confluence-v2 description: Full Confluence Cloud REST API v2 skill (pages, spaces, folders, databases, whiteboards, comments, labels, tasks, properties, etc.) with basic/OAuth auth, pagination, and migration from confluence-cli.

Confluence Cloud REST API v2

Use this skill to call Confluence Cloud REST API v2 endpoints directly. Supports all v2 groups (pages, spaces, folders, whiteboards, databases, embeds, comments, labels, properties, tasks, etc.).

Quick Start

  1. Configure credentials (one of):
  • Basic: email + API token
  • OAuth: access token
  1. Call endpoints using scripts in scripts/.

Config

Set these env vars (preferred) or store in a local config file:

CONFLUENCE_BASE_URL=https://pangin.atlassian.net/wiki
CONFLUENCE_AUTH_METHOD=basic   # basic | oauth
CONFLUENCE_EMAIL=chrono3412@gmail.com
CONFLUENCE_API_TOKEN=YOUR_TOKEN
# or for OAuth
# CONFLUENCE_OAUTH_TOKEN=YOUR_OAUTH_ACCESS_TOKEN

# Optional admin key header (Premium/Enterprise only)
# CONFLUENCE_ADMIN_KEY=true

Base URL is always https://<site>.atlassian.net/wiki.

Core Helpers

  • scripts/client.js — HTTP client wrapper, auth header, pagination
  • scripts/* — endpoint groups (pages, spaces, folders, etc.)

Example

# list everything
node scripts/spaces.js list --all
node scripts/pages.js list --all
node scripts/labels.js list --all

# get single items
node scripts/pages.js get 89522178
node scripts/folders.js direct-children 87457793

# ad-hoc call
node scripts/call.js GET /folders/87457793/direct-children

Migration from confluence-cli

If ~/.confluence-cli/config.json exists, map:

  • domainCONFLUENCE_BASE_URL (https://{domain}/wiki)
  • emailCONFLUENCE_EMAIL
  • tokenCONFLUENCE_API_TOKEN

References

  • OpenAPI spec: refs/openapi-v2.v3.json
  • Endpoints list: refs/endpoints.md
  • Scopes: refs/scopes.md
  • Tests: refs/tests.md
  • Usage tips: refs/usage.md
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

Set these env vars (preferred) or store in a local config file: ``` CONFLUENCE_BASE_URL=https://pangin.atlassian.net/wiki CONFLUENCE_AUTH_METHOD=basic # basic | oauth CONFLUENCE_EMAIL=chrono3412@gmail.com CONFLUENCE_API_TOKEN=YOUR_TOKEN

FAQ

How do I install confluence-v2?

Run openclaw add @pangin/openclaw-confluence-skill in your terminal. This installs confluence-v2 into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/pangin/openclaw-confluence-skill. Review commits and README documentation before installing.