# Send OpenClaw confluence to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-confluence-skill",
    "name": "OpenClaw confluence",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/pangin/openclaw-confluence-skill",
    "canonicalUrl": "https://clawhub.ai/pangin/openclaw-confluence-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-confluence-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-confluence-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "refs/usage.md",
      "refs/endpoints.md",
      "refs/tests.md",
      "refs/scopes.md",
      "refs/openapi-v2.v3.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-confluence-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T12:31:57.456Z",
      "expiresAt": "2026-05-13T12:31:57.456Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-confluence-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-confluence-skill",
        "contentDisposition": "attachment; filename=\"openclaw-confluence-skill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-confluence-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-confluence-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-confluence-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-confluence-skill",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-confluence-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-confluence-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-confluence-skill/agent.md"
  }
}
```
## Documentation

### 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

Configure credentials (one of):

Basic: email + API token
OAuth: access token

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:

domain → CONFLUENCE_BASE_URL (https://{domain}/wiki)
email → CONFLUENCE_EMAIL
token → CONFLUENCE_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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: pangin
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T12:31:57.456Z
- Expires at: 2026-05-13T12:31:57.456Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-confluence-skill)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-confluence-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-confluence-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-confluence-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-confluence-skill)