{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cubox",
    "name": "Cubox Integration (International & China)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Liam8/cubox",
    "canonicalUrl": "https://clawhub.ai/Liam8/cubox",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cubox",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cubox",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/save_url.py",
      "scripts/save_memo.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/cubox"
    },
    "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/cubox",
    "agentPageUrl": "https://openagent3.xyz/skills/cubox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cubox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cubox/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Cubox Integration Skill",
        "body": "This skill enables saving content to Cubox using the Open API. Cubox is a read-it-later and bookmarking service that supports saving web URLs and quick memos."
      },
      {
        "title": "Prerequisites",
        "body": "Cubox Premium Membership - The Open API is a premium feature\nAPI Key - Get your API URL from Cubox settings:\n\nGo to Cubox Preferences > Extension Center and Automation > API Extension\nEnable \"API Link\" to get your personal API URL\n\n⚠️ Security: Your API URL is a unique credential. Keep it private and never share it."
      },
      {
        "title": "Environment Setup",
        "body": "Set the CUBOX_API_URL environment variable with your personal API URL:\n\nexport CUBOX_API_URL=\"https://cubox.pro/c/api/save/YOUR_TOKEN\""
      },
      {
        "title": "1. Save URL (scripts/save_url.py)",
        "body": "Save a web page URL to Cubox.\n\npython scripts/save_url.py <url> [--title \"Title\"] [--description \"Description\"] [--tags \"tag1,tag2\"] [--folder \"Folder Name\"]\n\nParameters:\n\nurl (required): The web page URL to save\n--title: Optional title for the bookmark\n--description: Optional description\n--tags: Comma-separated list of tags\n--folder: Target folder name (defaults to Inbox)\n\nExample:\n\npython scripts/save_url.py \"https://example.com/article\" --title \"Great Article\" --tags \"tech,reading\" --folder \"Articles\""
      },
      {
        "title": "2. Save Memo (scripts/save_memo.py)",
        "body": "Save a quick memo/note to Cubox.\n\npython scripts/save_memo.py <content> [--title \"Title\"] [--description \"Description\"] [--tags \"tag1,tag2\"] [--folder \"Folder Name\"]\n\nParameters:\n\ncontent (required): The memo text content\n--title: Optional title (Cubox will auto-generate if not provided)\n--description: Optional description\n--tags: Comma-separated list of tags\n--folder: Target folder name (defaults to Inbox)\n\nExample:\n\npython scripts/save_memo.py \"Remember to review the quarterly report\" --title \"Todo\" --tags \"work,reminder\""
      },
      {
        "title": "API Rate Limits",
        "body": "Premium users: 500 API calls per day"
      },
      {
        "title": "Notes",
        "body": "After saving, Cubox cloud will automatically process the content (article parsing, snapshot archiving, etc.), which may take some time\nIf title or description is not specified, Cubox will attempt to generate them automatically\nIf no folder is specified, content will be saved to your Inbox by default"
      }
    ],
    "body": "Cubox Integration Skill\n\nThis skill enables saving content to Cubox using the Open API. Cubox is a read-it-later and bookmarking service that supports saving web URLs and quick memos.\n\nPrerequisites\nCubox Premium Membership - The Open API is a premium feature\nAPI Key - Get your API URL from Cubox settings:\nGo to Cubox Preferences > Extension Center and Automation > API Extension\nEnable \"API Link\" to get your personal API URL\n\n⚠️ Security: Your API URL is a unique credential. Keep it private and never share it.\n\nEnvironment Setup\n\nSet the CUBOX_API_URL environment variable with your personal API URL:\n\nexport CUBOX_API_URL=\"https://cubox.pro/c/api/save/YOUR_TOKEN\"\n\nAvailable Tools\n1. Save URL (scripts/save_url.py)\n\nSave a web page URL to Cubox.\n\npython scripts/save_url.py <url> [--title \"Title\"] [--description \"Description\"] [--tags \"tag1,tag2\"] [--folder \"Folder Name\"]\n\n\nParameters:\n\nurl (required): The web page URL to save\n--title: Optional title for the bookmark\n--description: Optional description\n--tags: Comma-separated list of tags\n--folder: Target folder name (defaults to Inbox)\n\nExample:\n\npython scripts/save_url.py \"https://example.com/article\" --title \"Great Article\" --tags \"tech,reading\" --folder \"Articles\"\n\n2. Save Memo (scripts/save_memo.py)\n\nSave a quick memo/note to Cubox.\n\npython scripts/save_memo.py <content> [--title \"Title\"] [--description \"Description\"] [--tags \"tag1,tag2\"] [--folder \"Folder Name\"]\n\n\nParameters:\n\ncontent (required): The memo text content\n--title: Optional title (Cubox will auto-generate if not provided)\n--description: Optional description\n--tags: Comma-separated list of tags\n--folder: Target folder name (defaults to Inbox)\n\nExample:\n\npython scripts/save_memo.py \"Remember to review the quarterly report\" --title \"Todo\" --tags \"work,reminder\"\n\nAPI Rate Limits\nPremium users: 500 API calls per day\nNotes\nAfter saving, Cubox cloud will automatically process the content (article parsing, snapshot archiving, etc.), which may take some time\nIf title or description is not specified, Cubox will attempt to generate them automatically\nIf no folder is specified, content will be saved to your Inbox by default"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Liam8/cubox",
    "publisherUrl": "https://clawhub.ai/Liam8/cubox",
    "owner": "Liam8",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cubox",
    "downloadUrl": "https://openagent3.xyz/downloads/cubox",
    "agentUrl": "https://openagent3.xyz/skills/cubox/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cubox/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cubox/agent.md"
  }
}