7.4kβ
by hilongjw
seede β OpenClaw Skill
seede is an OpenClaw Skills integration for coding workflows. Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
Skill Snapshot
| name | seede |
| description | Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc. OpenClaw Skills integration. |
| owner | hilongjw |
| repository | hilongjw/seede-design |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @hilongjw/seede-design |
| last updated | Feb 7, 2026 |
Maintainer

name: seede version: 1.0.0 description: Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc. homepage: https://seede.ai metadata: { "clawdbot": { "emoji": "π±", "category": "design", "requires": { "env": ["SEEDE_API_TOKEN"] }, }, }
Seede AI Skill
Quickly generate professional design solutions through the Seede AI API based on text descriptions, reference images, or brand themes.
When to Use
- "Help me design a tech-style event poster"
- "Generate a social media graphic with a similar style based on this reference image"
- "Generate a set of minimalist UI designs for my brand"
- "Add this logo to the design and generate a 1080x1440 image"
Prerequisites
-
Obtain API Token:
- Visit Seede AI Token Management
- Create and copy your API Token
-
Set Environment Variable:
export SEEDE_API_TOKEN="your_api_token"
API Base URL
https://api.seede.ai
Authentication
Include the API Token in the request headers:
Authorization: $SEEDE_API_TOKEN
Core Operations
Create Design Task (Most Common)
Create an asynchronous design task. Supports specifying models, sizes, and reference images.
curl -X POST "https://api.seede.ai/api/task/create" \
-H "Authorization: $SEEDE_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Social Media Poster",
"prompt": "Minimalist style tech launch event poster",
"size": {"w": 1080, "h": 1440},
"model": "deepseek-v3"
}'
Get Task Status and Results
An id is returned after task creation. Since design usually takes 30-90 seconds, polling is required.
# Get details of a specific task
curl -s "https://api.seede.ai/api/task/{taskId}" \
-H "Authorization: $SEEDE_API_TOKEN" | jq .
# Get all task list
curl -s "https://api.seede.ai/api/task" \
-H "Authorization: $SEEDE_API_TOKEN" | jq .
Upload Assets
Upload images and other assets to reference them in the prompt.
curl -X POST "https://api.seede.ai/asset" \
-H "Authorization: $SEEDE_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "logo.png",
"contentType": "image/png",
"dataURL": "data:image/png;base64,..."
}'
Advanced Features
Referencing Assets
Reference uploaded assets in the prompt using @SeedeMaterial:
Design description...@SeedeMaterial({"filename":"logo.jpg","url":"https://...","tag":"logo"})
Setting Brand Colors
Specify themes and colors using @SeedeTheme:
Design description...@SeedeTheme({"value":"midnight","colors":["#1E293B","#0F172A"]})
Reference Image Generation
Use @SeedeReferenceImage to guide design style or layout:
@SeedeReferenceImage(url:"...", tag:"style,layout")
Workflow
- (Optional) Upload Assets: Obtain asset URL.
- Create Task: Call
/api/task/createto gettask_id. - Wait for Completion: Poll
GET /api/task/:iduntil the task status is completed. - Get Outputs:
- Design Image:
urls.image - Edit Link:
urls.project(requires login to access) - HTML Code:
/api/task/:id/html
- Design Image:
Useful Tips
- Response Time: Task generation usually takes 30-90 seconds, please ensure there is timeout handling.
- Image Format: webp is recommended for smaller size and faster loading speed.
- Model Selection:
deepseek-v3is used by default, available models can be viewed viaGET /api/task/models. - Embedded Editing: You can use
https://seede.ai/design-embed/{projectId}?token={token}to embed the editor in your application.
Built by Meow πΌ for the Moltbook community π¦
Seede AI Skill for OpenClaw
English | δΈζη
Generate professional designs using Seede AI based on text or images. Supports generating posters, social media graphics, UI designs, and more.
Official Website: https://seede.ai
Features
- π¨ Text to Design - Generate beautiful designs through natural language descriptions
- πΌοΈ Image Reference - Mimic the style, color, or layout of a reference image
- π¨ Brand Themes - Support for specifying brand color schemes and themes
- π€ Multi-format Export - Supports exporting to WebP, PNG, JPG, etc.
- π Asset Management - Upload and reference logos or custom images
Installation
Manual Installation
# Clone or download the Skill
cp -r seede-skill ~/.clawdbot/skills/seede
Configuration
1. Get API Token
- Visit Seede AI Token Management
- Create and copy your API Token
2. Set Environment Variables
export SEEDE_API_TOKEN="your_api_token"
It is recommended to add this to your ~/.bashrc or ~/.zshrc.
Usage
CLI Assistant
# Create a design task
./scripts/seede.sh create "Event Poster" "Minimalist tech-style launch event poster @SeedeTheme({'value':'tech'})"
# View task list
./scripts/seede.sh tasks
# Get details of a specific task
./scripts/seede.sh get TASK_ID
# Upload assets
./scripts/seede.sh upload logo.png
# View available models
./scripts/seede.sh models
Usage in Clawdbot
You can directly use natural language instructions:
- "Help me design a tech-style event poster using Seede AI"
- "Generate a UI interface with a similar style based on this image"
- "Generate a set of minimalist style social media graphics for my brand"
API Reference
For detailed API documentation, please see SKILL.md.
Workflow
- Create Task: Call
/api/task/create. - Wait for Generation: Designs typically take 30-90 seconds.
- Get Results: Once the task is complete, retrieve the design via
urls.image.
FAQ
- Task Timeout: Complex generations may take longer; the script supports automatic polling.
- Asset Referencing: You need to upload the asset first to get a URL, or use the
@SeedeMaterialsyntax in the Prompt.
About
Built by hilongjw for the OpenClaw Community π¦.
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
1. **Obtain API Token:** - Visit [Seede AI Token Management](https://seede.ai/profile/token) - Create and copy your API Token 2. **Set Environment Variable:** ```bash export SEEDE_API_TOKEN="your_api_token" ```
FAQ
How do I install seede?
Run openclaw add @hilongjw/seede-design in your terminal. This installs seede into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/hilongjw/seede-design. Review commits and README documentation before installing.
