{
  "schemaVersion": "1.0",
  "item": {
    "slug": "confluence",
    "name": "Confluence",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/francisbrero/confluence",
    "canonicalUrl": "https://clawhub.ai/francisbrero/confluence",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/confluence",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=confluence",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/confluence"
    },
    "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/confluence",
    "agentPageUrl": "https://openagent3.xyz/skills/confluence/agent",
    "manifestUrl": "https://openagent3.xyz/skills/confluence/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/confluence/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",
        "body": "Search and manage Confluence pages using confluence-cli."
      },
      {
        "title": "REQUIRED: First-Time Setup",
        "body": "Before using this skill, complete these steps:\n\nStep 1: Install the CLI\n\nnpm install -g confluence-cli\n\nStep 2: Get an API token\n\nGo to https://id.atlassian.com/manage-profile/security/api-tokens\nClick \"Create API token\"\nGive it a label (e.g., \"confluence-cli\")\nCopy the token\n\nStep 3: Configure the CLI\n\nconfluence init\n\nWhen prompted, enter:\n\nDomain: yourcompany.atlassian.net (without https://)\nEmail: Your Atlassian account email\nAPI token: Paste the token from Step 2\n\nStep 4: Verify setup\n\nconfluence spaces\n\nIf you see your spaces listed, you're ready to use Confluence."
      },
      {
        "title": "Search Pages",
        "body": "confluence search \"deployment guide\""
      },
      {
        "title": "Read Page",
        "body": "confluence read <page-id>\n\nPage IDs are in the URL: https://yoursite.atlassian.net/wiki/spaces/SPACE/pages/123456/Title → ID is 123456"
      },
      {
        "title": "Get Page Info",
        "body": "confluence info <page-id>"
      },
      {
        "title": "Find Page by Title",
        "body": "confluence find \"Page Title\""
      },
      {
        "title": "List Spaces",
        "body": "confluence spaces"
      },
      {
        "title": "Create Page",
        "body": "confluence create \"Page Title\" SPACEKEY --body \"Page content here\""
      },
      {
        "title": "Create Child Page",
        "body": "confluence create-child \"Child Page Title\" <parent-page-id> --body \"Content\"\n\nOr from a file:\n\nconfluence create-child \"Page Title\" <parent-id> --file content.html --format storage"
      },
      {
        "title": "Update Page",
        "body": "confluence update <page-id> --body \"Updated content\"\n\nOr from a file:\n\nconfluence update <page-id> --file content.html --format storage"
      },
      {
        "title": "List Child Pages",
        "body": "confluence children <page-id>"
      },
      {
        "title": "Export Page with Attachments",
        "body": "confluence export <page-id> --output ./exported-page/"
      },
      {
        "title": "Tips",
        "body": "Domain in config should NOT include https:// - just yourcompany.atlassian.net\nUse --format storage when content is in Confluence storage format (HTML-like)\nPage IDs are numeric and found in page URLs\nConfig is stored at ~/.confluence-cli/config.json"
      }
    ],
    "body": "Confluence\n\nSearch and manage Confluence pages using confluence-cli.\n\nREQUIRED: First-Time Setup\n\nBefore using this skill, complete these steps:\n\nStep 1: Install the CLI\n\nnpm install -g confluence-cli\n\n\nStep 2: Get an API token\n\nGo to https://id.atlassian.com/manage-profile/security/api-tokens\nClick \"Create API token\"\nGive it a label (e.g., \"confluence-cli\")\nCopy the token\n\nStep 3: Configure the CLI\n\nconfluence init\n\n\nWhen prompted, enter:\n\nDomain: yourcompany.atlassian.net (without https://)\nEmail: Your Atlassian account email\nAPI token: Paste the token from Step 2\n\nStep 4: Verify setup\n\nconfluence spaces\n\n\nIf you see your spaces listed, you're ready to use Confluence.\n\nSearch Pages\nconfluence search \"deployment guide\"\n\nRead Page\nconfluence read <page-id>\n\n\nPage IDs are in the URL: https://yoursite.atlassian.net/wiki/spaces/SPACE/pages/123456/Title → ID is 123456\n\nGet Page Info\nconfluence info <page-id>\n\nFind Page by Title\nconfluence find \"Page Title\"\n\nList Spaces\nconfluence spaces\n\nCreate Page\nconfluence create \"Page Title\" SPACEKEY --body \"Page content here\"\n\nCreate Child Page\nconfluence create-child \"Child Page Title\" <parent-page-id> --body \"Content\"\n\n\nOr from a file:\n\nconfluence create-child \"Page Title\" <parent-id> --file content.html --format storage\n\nUpdate Page\nconfluence update <page-id> --body \"Updated content\"\n\n\nOr from a file:\n\nconfluence update <page-id> --file content.html --format storage\n\nList Child Pages\nconfluence children <page-id>\n\nExport Page with Attachments\nconfluence export <page-id> --output ./exported-page/\n\nTips\nDomain in config should NOT include https:// - just yourcompany.atlassian.net\nUse --format storage when content is in Confluence storage format (HTML-like)\nPage IDs are numeric and found in page URLs\nConfig is stored at ~/.confluence-cli/config.json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/francisbrero/confluence",
    "publisherUrl": "https://clawhub.ai/francisbrero/confluence",
    "owner": "francisbrero",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/confluence",
    "downloadUrl": "https://openagent3.xyz/downloads/confluence",
    "agentUrl": "https://openagent3.xyz/skills/confluence/agent",
    "manifestUrl": "https://openagent3.xyz/skills/confluence/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/confluence/agent.md"
  }
}