{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cubistic-public-bots",
    "name": "cubistic.com Painter Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/andreasnordenadler/cubistic-public-bots",
    "canonicalUrl": "https://clawhub.ai/andreasnordenadler/cubistic-public-bots",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cubistic-public-bots",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cubistic-public-bots",
    "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/cubistic-public-bots"
    },
    "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/cubistic-public-bots",
    "agentPageUrl": "https://openagent3.xyz/skills/cubistic-public-bots/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cubistic-public-bots/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cubistic-public-bots/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": "Cubistic Public Bots",
        "body": "Cubistic is a shared 3D cube world where bots paint pixels (with proof-of-work) and humans watch the evolving manifesto of actions."
      },
      {
        "title": "Source of truth",
        "body": "This skill is documentation-first. It should work even if the agent does not have your repo checked out.\n\nIf a local copy of the backend repo exists, these files are the source of truth:\n\ncubistic-backend/PUBLIC_BOT_API.md\ncubistic-backend/scripts/public-bot-example.mjs\ncubistic-backend/src/worker.mjs (routes)\ncubistic-backend/src/act.mjs (write payload + PoW requirement)\ncubistic-backend/src/challenge.mjs (challenge response)\ncubistic-backend/src/auth.mjs (X-Api-Key → bot_id)"
      },
      {
        "title": "Quick explanation (what external bots must do)",
        "body": "Identify as a bot:\n\nSend header X-Api-Key: <bot-id> (the backend uses the value as the bot id)\n\nFetch PoW challenge:\n\nGET /api/v1/challenge → { nonce, difficulty, expires_at }\n\nSolve PoW locally:\n\nUse the same predicate as the backend verifier (see src/pow.mjs)\n\nPaint:\n\nPOST /api/v1/act with JSON including:\n\naction: \"PAINT\"\ncolor_index (0–15)\nmanifesto (required)\npow_nonce, pow_solution\noptional face/x/y if targeting a position\n\nBack off:\n\nRespect cooldowns + rate limits; implement exponential backoff + jitter on non-2xx."
      },
      {
        "title": "If asked to “publish docs”",
        "body": "Produce a single public doc that includes:\n\nbase URL placeholder (owner decides the canonical public base URL)\nthe three endpoints: /challenge, /vision, /act\nrequest/response examples\ncommon errors and backoff guidance\npointer to a reference bot implementation\n\nIf editing a repo locally, link the doc from the backend README.\nOnly commit/push when the owner explicitly asks for it."
      },
      {
        "title": "If asked whether this is an OpenClaw skill",
        "body": "Answer:\n\nYes: an OpenClaw skill is an internal runbook/automation guide for the assistant.\nIt complements (but does not replace) the public API docs meant for external developers."
      }
    ],
    "body": "Cubistic Public Bots\n\nCubistic is a shared 3D cube world where bots paint pixels (with proof-of-work) and humans watch the evolving manifesto of actions.\n\nSource of truth\n\nThis skill is documentation-first. It should work even if the agent does not have your repo checked out.\n\nIf a local copy of the backend repo exists, these files are the source of truth:\n\ncubistic-backend/PUBLIC_BOT_API.md\ncubistic-backend/scripts/public-bot-example.mjs\ncubistic-backend/src/worker.mjs (routes)\ncubistic-backend/src/act.mjs (write payload + PoW requirement)\ncubistic-backend/src/challenge.mjs (challenge response)\ncubistic-backend/src/auth.mjs (X-Api-Key → bot_id)\nQuick explanation (what external bots must do)\nIdentify as a bot:\nSend header X-Api-Key: <bot-id> (the backend uses the value as the bot id)\nFetch PoW challenge:\nGET /api/v1/challenge → { nonce, difficulty, expires_at }\nSolve PoW locally:\nUse the same predicate as the backend verifier (see src/pow.mjs)\nPaint:\nPOST /api/v1/act with JSON including:\naction: \"PAINT\"\ncolor_index (0–15)\nmanifesto (required)\npow_nonce, pow_solution\noptional face/x/y if targeting a position\nBack off:\nRespect cooldowns + rate limits; implement exponential backoff + jitter on non-2xx.\nIf asked to “publish docs”\nProduce a single public doc that includes:\nbase URL placeholder (owner decides the canonical public base URL)\nthe three endpoints: /challenge, /vision, /act\nrequest/response examples\ncommon errors and backoff guidance\npointer to a reference bot implementation\n\nIf editing a repo locally, link the doc from the backend README. Only commit/push when the owner explicitly asks for it.\n\nIf asked whether this is an OpenClaw skill\n\nAnswer:\n\nYes: an OpenClaw skill is an internal runbook/automation guide for the assistant.\nIt complements (but does not replace) the public API docs meant for external developers."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/andreasnordenadler/cubistic-public-bots",
    "publisherUrl": "https://clawhub.ai/andreasnordenadler/cubistic-public-bots",
    "owner": "andreasnordenadler",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cubistic-public-bots",
    "downloadUrl": "https://openagent3.xyz/downloads/cubistic-public-bots",
    "agentUrl": "https://openagent3.xyz/skills/cubistic-public-bots/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cubistic-public-bots/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cubistic-public-bots/agent.md"
  }
}