# Send Colormind to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/colormind",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=colormind",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "SECURITY.md",
      "SKILL.md",
      "scripts/combine_results.py",
      "scripts/generate_palette.mjs",
      "scripts/get_base_rgb.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "colormind",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T23:42:43.050Z",
      "expiresAt": "2026-05-08T23:42:43.050Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=colormind",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=colormind",
        "contentDisposition": "attachment; filename=\"colormind-1.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "colormind"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Colormind (Color Palette Generator)

⚠️ Privacy & Security Notice:

This skill sends color data to an external service (colormind.io)
The API uses unencrypted HTTP (HTTPS has a self-signed certificate)
When using image_to_palette.sh, derived color data from your images is sent externally
Do not use with sensitive/private images unless you accept this data sharing
Consider running in a sandbox when processing untrusted images (ImageMagick safety)

Colormind exposes a simple API:

POST http://colormind.io/api/ → generate a palette (optionally with locked colors)
GET  http://colormind.io/list/ → list available models

### List models

node {baseDir}/scripts/list_models.mjs

### Generate a random palette

node {baseDir}/scripts/generate_palette.mjs --model default
node {baseDir}/scripts/generate_palette.mjs --model ui

### Generate a palette with locked colors

Provide 5 slots. Use:

an RGB triple: "r,g,b" (locks that slot)
N (free slot)

Examples:

# lock 2 colors, let colormind fill the rest
node {baseDir}/scripts/generate_palette.mjs --model default \\
  --input "44,43,44" "90,83,82" N N N

# lock a brand color, keep a free gradient
node {baseDir}/scripts/generate_palette.mjs --model ui \\
  --input "0,122,255" N N N N

Output:

always prints JSON
if --pretty is set, also prints a small Markdown block (hex + RGB)

node {baseDir}/scripts/generate_palette.mjs --model default --pretty

### Sample an image → get a palette

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.

# returns JSON with sampled colors + a generated Colormind palette
bash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model ui
bash {baseDir}/scripts/image_to_palette.sh /path/to/image.jpg --model default

Notes:

Colormind may slightly adjust locked colors.
Models refresh daily (UTC+8).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: boilerrat
- Version: 1.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T23:42:43.050Z
- Expires at: 2026-05-08T23:42:43.050Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/colormind)
- [Send to Agent page](https://openagent3.xyz/skills/colormind/agent)
- [JSON manifest](https://openagent3.xyz/skills/colormind/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/colormind/agent.md)
- [Download page](https://openagent3.xyz/downloads/colormind)