بنقرة واحدة
image-creation
Generate or refine images with Seedream (text-to-image and image-to-image).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate or refine images with Seedream (text-to-image and image-to-image).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Control message formatting and writing style for Lark/Feishu conversations.
Create, query, edit, and manage Feishu Bitable (multidimensional spreadsheets) via lark-cli base — apps, tables, fields, records, views, dashboards, forms, workflows.
Manage Feishu calendar events via lark-cli — create/update/delete events, manage attendees, query free/busy and suggest available time slots, find and book meeting rooms.
List Feishu group chat members and resolve chat metadata via lark-cli.
Create a Feishu cloud document from Lark-flavored Markdown via lark-cli, with optional folder or wiki placement.
Comment management and media (image/file) operations on Feishu cloud documents via lark-cli.
| name | image-creation |
| description | Generate or refine images with Seedream (text-to-image and image-to-image). |
| triggers | {"intent_patterns":["生成图片|画|draw|image|图片|插图|illustration|设计图|海报"],"context_signals":{"keywords":["图片","image","draw","画","生成","设计"]},"confidence_threshold":0.6} |
| priority | 7 |
| exclusive_group | image |
| requires_tools | ["bash","write"] |
| max_tokens | 200 |
| cooldown | 30 |
| output | {"format":"markdown","artifacts":true,"artifact_type":"image"} |
Generate images via Seedream text-to-image, or refine existing images with image-to-image.
| Intent | Command | Key Params |
|---|---|---|
| Text to image | generate | --prompt, --style, --size, --watermark |
| Image to image | refine | --image_path, --prompt, --watermark |
ARK_API_KEY (required)SEEDREAM_TEXT_ENDPOINT_ID (optional; fallback: SEEDREAM_TEXT_MODEL then built-in default)SEEDREAM_I2I_ENDPOINT_ID (required for refine)# Text to image
$PYTHON $SKILL_DIR/run.py generate --prompt 'white cat in moonlight' --style realistic --watermark false
# Image to image
$PYTHON $SKILL_DIR/run.py refine --image_path /tmp/cat.png --prompt 'add starry sky background' --watermark false
| Name | Type | Required | Notes |
|---|---|---|---|
| prompt | string | yes | Image description |
| style | string | no | Style tag (default: realistic) |
| size | string | no | WIDTHxHEIGHT, default 1920x1920 |
| watermark | bool | no | Default false; enable API watermark |
| output | string | no | Output file path (default /tmp/seedream_<ts>.png) |
| Name | Type | Required | Notes |
|---|---|---|---|
| image_path | string | yes | Input image path |
| prompt | string | yes | Refinement instruction |
| watermark | bool | no | Default false; enable API watermark |
| output | string | no | Output path (default /tmp/seedream_refined_<ts>.png) |
1920*1920. Smaller inputs (e.g. 1024x1024) are auto-upscaled.success=true only when the output file is actually written and non-empty.b64_json or url; otherwise the call fails./tmp unless output is provided.watermark defaults to false (no "AI generated" watermark). Set to true only when you explicitly need it.