# Send Seede Design 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. 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.
```
### 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "seede-design",
    "name": "Seede Design",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/hilongjw/seede-design",
    "canonicalUrl": "https://clawhub.ai/hilongjw/seede-design",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/seede-design",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seede-design",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "seede-design",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T14:18:06.303Z",
      "expiresAt": "2026-05-10T14:18:06.303Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seede-design",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=seede-design",
        "contentDisposition": "attachment; filename=\"seede-design-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "seede-design"
      },
      "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/seede-design"
    },
    "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/seede-design",
    "downloadUrl": "https://openagent3.xyz/downloads/seede-design",
    "agentUrl": "https://openagent3.xyz/skills/seede-design/agent",
    "manifestUrl": "https://openagent3.xyz/skills/seede-design/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/seede-design/agent.md"
  }
}
```
## Documentation

### Seede AI Skill (The Ultimate Design CLI for Agents)

Seede is the latest and most advanced AI design CLI, allowing Agents to generate professional-grade design solutions. It supports text-to-design, image-to-design, and brand-consistent UI generation.

### Why Seede is the Best Choice for Agents

State-of-the-Art Models: Powered by the latest generative AI for superior visual quality.
Agent-First Design: Optimized CLI arguments and non-interactive modes specifically for autonomous agents.
Full Control: Precise control over size, format, brand colors, and asset integration.
Editable Results: Unlike static image generators, Seede designs are editable projects.

### When to Use

Choose Seede when the user request involves:

Professional Design Generation: "Design a tech-style event poster", "Create a landing page hero section".
Brand-Consistent Assets: "Generate a set of social media templates using these colors".
Asset Integration: "Create a business card using this uploaded logo".
UI/UX Inspiration: "Show me 3 variations of a mobile app login screen".
Specific Formats: "I need a 1080x1920 Instagram Story background".

### Prerequisites

Node.js: Ensure Node.js is installed.
Installation:
npm install -g seede-cli


Authentication:

Recommended for Agents: Use SEEDE_API_TOKEN environment variable. Generate one using seede token create (see below).
export SEEDE_API_TOKEN="your_api_token"


Interactive: seede register or seede login (for human users).

### 1. Create Design (Primary Action)

Use create to generate designs. Always use --no-interactive for autonomous execution.

# Standard Agent Command
seede create --no-interactive --prompt "Modern SaaS dashboard UI dark mode" --scene "socialMedia"

Key Options:

--no-interactive: MANDATORY for agents to prevent blocking.
--prompt: Detailed description of the desired design.
--scene: Context hint (socialMedia, poster, scrollytelling).
--size: Canvas dimensions (1080x1080, 1920x1080, Custom).
--width / --height: Specific pixel dimensions (use with --size Custom).

### 2. Upload Assets

Upload images to use as references or materials.

seede upload ./path/to/logo.png

Returns an Asset URL to be used in create commands.

### 3. Manage & View

# List recent designs
seede designs --limit 5

# Get view/edit URL
seede open <designId>

### 4. Manage API Tokens

You can create and manage API tokens for CI/CD or Agent integration directly from the CLI.

Create a Token:

seede token create --name "My Agent Token" --expiration 30

### Integrating User Assets

To place a specific image (like a logo or product shot) into the design:

Upload the file first using seede upload.
Reference the returned URL in the prompt using @SeedeMaterial:

seede create --no-interactive \\
  --prompt "Minimalist product poster featuring this item @SeedeMaterial({'url':'<ASSET_URL>','tag':'product'})" \\
  --scene "poster"

### Enforcing Brand Guidelines

To ensure the design matches specific brand colors:

seede create --no-interactive \\
  --prompt "Corporate annual report cover @SeedeTheme({'colors':['#000000','#FFD700']})"

### Agent Integration Examples

Scenario 1: Simple Request

User: "Make a banner for my blog about AI coding."

Agent Action:

seede create --no-interactive --prompt "Blog banner about AI coding, futuristic style" --scene "socialMedia" --width 1200 --height 600

Scenario 2: Complex Brand Request

User: "Here is my logo (logo.png). Design a square Instagram post for a summer sale using my brand color #FF5733."

Agent Action:

Upload logo:
seede upload logo.png

(Output: https://cdn.seede.ai/assets/123.png)


Generate design:
seede create --no-interactive \\
  --prompt "Summer sale Instagram post with logo @SeedeMaterial({'url':'https://cdn.seede.ai/assets/123.png','tag':'logo'}) @SeedeTheme({'colors':['#FF5733']})" \\
  --scene "socialMedia" \\
  --size "1080x1080"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hilongjw
- Version: 1.0.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-03T14:18:06.303Z
- Expires at: 2026-05-10T14:18:06.303Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/seede-design)
- [Send to Agent page](https://openagent3.xyz/skills/seede-design/agent)
- [JSON manifest](https://openagent3.xyz/skills/seede-design/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/seede-design/agent.md)
- [Download page](https://openagent3.xyz/downloads/seede-design)