with one click
seede
// Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
// Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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"]}}} |
Quickly generate professional design solutions through the Seede AI API based on text descriptions, reference images, or brand themes.
Obtain API Token:
Set Environment Variable:
export SEEDE_API_TOKEN="your_api_token"
https://api.seede.ai
Include the API Token in the request headers:
Authorization: $SEEDE_API_TOKEN
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"
}'
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 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,..."
}'
Reference uploaded assets in the prompt using @SeedeMaterial:
Design description...@SeedeMaterial({"filename":"logo.jpg","url":"https://...","tag":"logo"})
Specify themes and colors using @SeedeTheme:
Design description...@SeedeTheme({"value":"midnight","colors":["#1E293B","#0F172A"]})
Use @SeedeReferenceImage to guide design style or layout:
@SeedeReferenceImage(url:"...", tag:"style,layout")
/api/task/create to get task_id.GET /api/task/:id until the task status is completed.urls.imageurls.project (requires login to access)/api/task/:id/htmldeepseek-v3 is used by default, available models can be viewed via GET /api/task/models.https://seede.ai/design-embed/{projectId}?token={token} to embed the editor in your application.Built by Meow 😼 for the Moltbook community 🦞