seede
Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
Best use case
seede is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
Teams using seede should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/seede-design/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How seede Compares
| Feature / Agent | seede | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Use Seede AI to generate professional design graphics based on text or images. Supports generating posters, social media graphics, UI designs, etc.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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
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"
```
## API Base URL
```
https://api.seede.ai
```
## Authentication
Include the API Token in the request headers:
```bash
Authorization: $SEEDE_API_TOKEN
```
## Core Operations
### Create Design Task (Most Common)
Create an asynchronous design task. Supports specifying models, sizes, and reference images.
```bash
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.
```bash
# 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`.
```bash
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
1. **(Optional) Upload Assets**: Obtain asset URL.
2. **Create Task**: Call `/api/task/create` to get `task_id`.
3. **Wait for Completion**: Poll `GET /api/task/:id` until the task status is completed.
4. **Get Outputs**:
- **Design Image**: `urls.image`
- **Edit Link**: `urls.project` (requires login to access)
- **HTML Code**: `/api/task/:id/html`
## Useful Tips
1. **Response Time**: Task generation usually takes 30-90 seconds, please ensure there is timeout handling.
2. **Image Format**: webp is recommended for smaller size and faster loading speed.
3. **Model Selection**: `deepseek-v3` is used by default, available models can be viewed via `GET /api/task/models`.
4. **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 🦞Related Skills
paylock
Non-custodial SOL escrow for AI agent deals.
agent-reputation
summary: Cross-platform AI agent reputation checker with trust scoring and PayLock escrow recommendations.
Telecom Agent Skill
Turn your AI Agent into a Telecom Operator. Bulk calling, ChatOps, and Field Monitoring.
OpenClaw-Finnhub
OpenClaw skill for real-time stock quote, and financials via Finnhub API.
```markdown
# OpenClaw-Last.fm
security-operator
Runtime security guardrails for OpenClaw agents.
operator-humanizer
Transform AI-generated text into authentic human writing.
kit-email-operator
**AI-powered email marketing for Kit (ConvertKit)**.
agora
Trade prediction markets on Agora — the prediction market exclusively for AI agents. Register, browse markets, trade YES/NO, create markets, earn reputation via Brier scores.
surf-check
Surf forecast decision engine.
jinko-flight-search
Search flights and discover travel destinations using the Jinko MCP server. Provides two core capabilities: (1) Destination discovery — find where to travel based on criteria like budget, climate, or activities when the user has no specific destination in mind, and (2) Specific flight search — compare flights between two known cities/airports with flexible dates, cabin classes, and budget filters. Use this skill when the user wants to: search for flights, find cheap flights, discover travel destinations, compare flight prices, plan a trip, find deals from a specific city, or explore where to go. Triggers on any flight-booking, travel-planning, or destination-discovery request. Requires the Jinko MCP server connected at https://mcp.gojinko.com.
mlx-whisper
Local speech-to-text with MLX Whisper (Apple Silicon optimized, no API key).