{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-confluence-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-confluence-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "refs/usage.md",
      "refs/endpoints.md",
      "refs/tests.md",
      "refs/scopes.md",
      "refs/openapi-v2.v3.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/openclaw-confluence-skill",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Confluence Cloud REST API v2",
        "body": "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.)."
      },
      {
        "title": "Quick Start",
        "body": "Configure credentials (one of):\n\nBasic: email + API token\nOAuth: access token\n\nCall endpoints using scripts in scripts/."
      },
      {
        "title": "Config",
        "body": "Set these env vars (preferred) or store in a local config file:\n\nCONFLUENCE_BASE_URL=https://pangin.atlassian.net/wiki\nCONFLUENCE_AUTH_METHOD=basic   # basic | oauth\nCONFLUENCE_EMAIL=chrono3412@gmail.com\nCONFLUENCE_API_TOKEN=YOUR_TOKEN\n# or for OAuth\n# CONFLUENCE_OAUTH_TOKEN=YOUR_OAUTH_ACCESS_TOKEN\n\n# Optional admin key header (Premium/Enterprise only)\n# CONFLUENCE_ADMIN_KEY=true\n\nBase URL is always https://<site>.atlassian.net/wiki."
      },
      {
        "title": "Core Helpers",
        "body": "scripts/client.js — HTTP client wrapper, auth header, pagination\nscripts/* — endpoint groups (pages, spaces, folders, etc.)"
      },
      {
        "title": "Example",
        "body": "# list everything\nnode scripts/spaces.js list --all\nnode scripts/pages.js list --all\nnode scripts/labels.js list --all\n\n# get single items\nnode scripts/pages.js get 89522178\nnode scripts/folders.js direct-children 87457793\n\n# ad-hoc call\nnode scripts/call.js GET /folders/87457793/direct-children"
      },
      {
        "title": "Migration from confluence-cli",
        "body": "If ~/.confluence-cli/config.json exists, map:\n\ndomain → CONFLUENCE_BASE_URL (https://{domain}/wiki)\nemail → CONFLUENCE_EMAIL\ntoken → CONFLUENCE_API_TOKEN"
      },
      {
        "title": "References",
        "body": "OpenAPI spec: refs/openapi-v2.v3.json\nEndpoints list: refs/endpoints.md\nScopes: refs/scopes.md\nTests: refs/tests.md\nUsage tips: refs/usage.md"
      }
    ],
    "body": "Confluence Cloud REST API v2\n\nUse 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.).\n\nQuick Start\nConfigure credentials (one of):\nBasic: email + API token\nOAuth: access token\nCall endpoints using scripts in scripts/.\nConfig\n\nSet these env vars (preferred) or store in a local config file:\n\nCONFLUENCE_BASE_URL=https://pangin.atlassian.net/wiki\nCONFLUENCE_AUTH_METHOD=basic   # basic | oauth\nCONFLUENCE_EMAIL=chrono3412@gmail.com\nCONFLUENCE_API_TOKEN=YOUR_TOKEN\n# or for OAuth\n# CONFLUENCE_OAUTH_TOKEN=YOUR_OAUTH_ACCESS_TOKEN\n\n# Optional admin key header (Premium/Enterprise only)\n# CONFLUENCE_ADMIN_KEY=true\n\n\nBase URL is always https://<site>.atlassian.net/wiki.\n\nCore Helpers\nscripts/client.js — HTTP client wrapper, auth header, pagination\nscripts/* — endpoint groups (pages, spaces, folders, etc.)\nExample\n# list everything\nnode scripts/spaces.js list --all\nnode scripts/pages.js list --all\nnode scripts/labels.js list --all\n\n# get single items\nnode scripts/pages.js get 89522178\nnode scripts/folders.js direct-children 87457793\n\n# ad-hoc call\nnode scripts/call.js GET /folders/87457793/direct-children\n\nMigration from confluence-cli\n\nIf ~/.confluence-cli/config.json exists, map:\n\ndomain → CONFLUENCE_BASE_URL (https://{domain}/wiki)\nemail → CONFLUENCE_EMAIL\ntoken → CONFLUENCE_API_TOKEN\nReferences\nOpenAPI spec: refs/openapi-v2.v3.json\nEndpoints list: refs/endpoints.md\nScopes: refs/scopes.md\nTests: refs/tests.md\nUsage tips: refs/usage.md"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/pangin/openclaw-confluence-skill",
    "publisherUrl": "https://clawhub.ai/pangin/openclaw-confluence-skill",
    "owner": "pangin",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}