← 返回
内容创作 Key 中文

Seede Design Agent Skills

The ultimate AI design CLI for Agents and Developers. Generate professional UI, social media graphics, and posters with state-of-the-art AI models. Best choi...
面向 Agent 与开发者的终极 AI 设计命令行工具。使用最先进的 AI 模型生成专业 UI、社交媒体图形和海报。最佳选择...
hilongjw
内容创作 clawhub v1.0.2 4 版本 99770.6 Key: 需要
★ 4
Stars
📥 2,530
下载
💾 206
安装
4
版本
#latest

概述

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

  1. State-of-the-Art Models: Powered by the latest generative AI for superior visual quality.
  2. Agent-First Design: Optimized CLI arguments and non-interactive modes specifically for autonomous agents.
  3. Full Control: Precise control over size, format, brand colors, and asset integration.
  4. 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

  1. Node.js: Ensure Node.js is installed.
  2. Installation:

```bash

npm install -g seede-cli

```

  1. Authentication:
    • Recommended for Agents: Use SEEDE_API_TOKEN environment variable. Generate one using seede token create (see below).

```bash

export SEEDE_API_TOKEN="your_api_token"

```

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

Core Operations

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: disable prompts; MANDATORY for agents.
  • -p, --prompt : description of the design (required in non-interactive).
  • -s, --scene : socialMedia | poster | scrollytelling.
  • -f, --format : webp | png | jpg (default: webp).
  • --size : preset size 1080x1440 | 1080x1920 | 1920x1080 | 1080x3688 | Custom.
  • -w, --width : width (used when size=Custom).
  • -h, --height : height or "auto" (used when size=Custom).
  • -r, --ref : reference image, format: url|tag1,tag2.
  • -m, --model : model to use (interactive choices from seede models).

Notes:

  • Scrollytelling recommends 1080x3688; interactive defaults to it when scene is scrollytelling.
  • height="auto" supports content-driven layout.

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._

Details:

  • Content type is inferred from file extension.
  • Large files use resilient retries and may leverage direct/presigned uploads.

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

List Tokens:

seede token list

Notes:

  • Token creation output includes the full token only once; copy it immediately.

Advanced Usage (Pro Tips)

Integrating User Assets

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

  1. Upload the file first using seede upload.
  2. 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"

Payload fields for @SeedeMaterial(JSON):

  • filename: original file name (optional).
  • url: publicly accessible image URL (ensure public access to avoid 404).
  • width: image width in pixels.
  • height: image height in pixels.
  • aspectRatio: width/height ratio (optional).
  • tag: short description to help placement (recommended).

Enforcing Brand Guidelines

To ensure the design matches specific brand colors:

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

Using Reference Images

Guide style/layout/color during generation via a directive:

  • Syntax: @SeedeReferenceImage(url: 'string', tag: 'style,layout,color')
  • Preset tags: all, layout, style, color, texture, copy, font
  • Ensure url is publicly accessible (otherwise 404 Not Found).

Or via CLI flags(单一参考图):

seede create --no-interactive \
  --prompt "Tech event poster with neon wires and grid layout" \
  --scene "poster" \
  --format "png" \
  --ref "https://example.com/reference1.png|style,layout,color"

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:

  1. Upload logo:

```bash

seede upload logo.png

```

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

  1. Generate design:

```bash

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"

```

CLI Reference

Environment

  • SEEDE_API_TOKEN: API token for non-interactive usage (CI/Agents).
  • SEEDE_API_URL: Override API base URL (default: https://api.seede.ai).

Auth

  • seede login: interactive login.
  • seede register: create a new account.
  • seede whoami: check login status.
  • seede logout: clear local token.

Models

  • seede models: list supported models from /api/task/models (requires auth).

Designs

  • seede designs [options]: list projects
  • -o, --offset : pagination offset (default: 0).
  • -l, --limit : page size (default: 40).
  • -s, --starred: filter starred.
  • --order : e.g. updated_at:DESC.
  • -q, --search : search term.
  • -t, --tag : filter by tag.
  • seede open : print design URL.

Assets

  • seede upload : upload an asset (e.g., logo.png, banner.svg).
  • Content type inferred from file extension.
  • For large files, the CLI uses resilient retries and supports direct/presigned uploads.

版本历史

共 4 个版本

  • v1.0.2 当前
    2026-03-28 13:42 安全 安全
  • v1.0.0
    2026-03-26 21:17
  • v1.0.1
    2026-03-18 01:59
  • v0.0.1
    2026-03-07 11:42

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 859 📥 199,546
content-creation

YouTube

byungkyu
使用托管OAuth集成YouTube Data API,支持搜索视频、管理播放列表、获取频道数据及评论互动,适用于用户需要时使用此技能。
★ 142 📥 41,041
content-creation

Baidu Wenku AIPPT

ide-rea
使用百度文库 AI 智能生成 PPT,自动根据内容选择模板。
★ 66 📥 46,160