{
  "schemaVersion": "1.0",
  "item": {
    "slug": "colormind",
    "name": "Colormind",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/boilerrat/colormind",
    "canonicalUrl": "https://clawhub.ai/boilerrat/colormind",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/colormind",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=colormind",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "SECURITY.md",
      "SKILL.md",
      "scripts/combine_results.py",
      "scripts/generate_palette.mjs",
      "scripts/get_base_rgb.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. 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/colormind"
    },
    "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/colormind",
    "agentPageUrl": "https://openagent3.xyz/skills/colormind/agent",
    "manifestUrl": "https://openagent3.xyz/skills/colormind/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/colormind/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": "Colormind (Color Palette Generator)",
        "body": "⚠️ Privacy & Security Notice:\n\nThis skill sends color data to an external service (colormind.io)\nThe API uses unencrypted HTTP (HTTPS has a self-signed certificate)\nWhen using image_to_palette.sh, derived color data from your images is sent externally\nDo not use with sensitive/private images unless you accept this data sharing\nConsider running in a sandbox when processing untrusted images (ImageMagick safety)\n\nColormind exposes a simple API:\n\nPOST http://colormind.io/api/ → generate a palette (optionally with locked colors)\nGET  http://colormind.io/list/ → list available models"
      },
      {
        "title": "List models",
        "body": "node {baseDir}/scripts/list_models.mjs"
      },
      {
        "title": "Generate a random palette",
        "body": "node {baseDir}/scripts/generate_palette.mjs --model default\nnode {baseDir}/scripts/generate_palette.mjs --model ui"
      },
      {
        "title": "Generate a palette with locked colors",
        "body": "Provide 5 slots. Use:\n\nan RGB triple: \"r,g,b\" (locks that slot)\nN (free slot)\n\nExamples:\n\n# lock 2 colors, let colormind fill the rest\nnode {baseDir}/scripts/generate_palette.mjs --model default \\\n  --input \"44,43,44\" \"90,83,82\" N N N\n\n# lock a brand color, keep a free gradient\nnode {baseDir}/scripts/generate_palette.mjs --model ui \\\n  --input \"0,122,255\" N N N N\n\nOutput:\n\nalways prints JSON\nif --pretty is set, also prints a small Markdown block (hex + RGB)\n\nnode {baseDir}/scripts/generate_palette.mjs --model default --pretty"
      },
      {
        "title": "Sample an image → get a palette",
        "body": "Requires ImageMagick (convert). This samples a small palette from an image, picks the most frequent color as the \"base\", then generates a Colormind palette from it.\n\n# returns JSON with sampled colors + a generated Colormind palette\nbash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model ui\nbash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model default\n\nNotes:\n\nColormind may slightly adjust locked colors.\nModels refresh daily (UTC+8)."
      }
    ],
    "body": "Colormind (Color Palette Generator)\n\n⚠️ Privacy & Security Notice:\n\nThis skill sends color data to an external service (colormind.io)\nThe API uses unencrypted HTTP (HTTPS has a self-signed certificate)\nWhen using image_to_palette.sh, derived color data from your images is sent externally\nDo not use with sensitive/private images unless you accept this data sharing\nConsider running in a sandbox when processing untrusted images (ImageMagick safety)\n\nColormind exposes a simple API:\n\nPOST http://colormind.io/api/ → generate a palette (optionally with locked colors)\nGET http://colormind.io/list/ → list available models\nList models\nnode {baseDir}/scripts/list_models.mjs\n\nGenerate a random palette\nnode {baseDir}/scripts/generate_palette.mjs --model default\nnode {baseDir}/scripts/generate_palette.mjs --model ui\n\nGenerate a palette with locked colors\n\nProvide 5 slots. Use:\n\nan RGB triple: \"r,g,b\" (locks that slot)\nN (free slot)\n\nExamples:\n\n# lock 2 colors, let colormind fill the rest\nnode {baseDir}/scripts/generate_palette.mjs --model default \\\n  --input \"44,43,44\" \"90,83,82\" N N N\n\n# lock a brand color, keep a free gradient\nnode {baseDir}/scripts/generate_palette.mjs --model ui \\\n  --input \"0,122,255\" N N N N\n\n\nOutput:\n\nalways prints JSON\nif --pretty is set, also prints a small Markdown block (hex + RGB)\nnode {baseDir}/scripts/generate_palette.mjs --model default --pretty\n\nSample an image → get a palette\n\nRequires ImageMagick (convert). This samples a small palette from an image, picks the most frequent color as the \"base\", then generates a Colormind palette from it.\n\n# returns JSON with sampled colors + a generated Colormind palette\nbash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model ui\nbash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model default\n\n\nNotes:\n\nColormind may slightly adjust locked colors.\nModels refresh daily (UTC+8)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/boilerrat/colormind",
    "publisherUrl": "https://clawhub.ai/boilerrat/colormind",
    "owner": "boilerrat",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/colormind",
    "downloadUrl": "https://openagent3.xyz/downloads/colormind",
    "agentUrl": "https://openagent3.xyz/skills/colormind/agent",
    "manifestUrl": "https://openagent3.xyz/skills/colormind/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/colormind/agent.md"
  }
}