@kolbo/kolbo-code-linux-arm64-musl 2.1.11 → 2.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/kolbo +0 -0
- package/package.json +1 -1
- package/skills/kolbo/SKILL.md +13 -6
package/bin/kolbo
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/skills/kolbo/SKILL.md
CHANGED
|
@@ -13,9 +13,9 @@ You have direct access to the Kolbo AI creative platform via MCP tools (auto-con
|
|
|
13
13
|
|
|
14
14
|
| Tool | Description |
|
|
15
15
|
|------|-------------|
|
|
16
|
-
| `generate_image` | Create
|
|
16
|
+
| `generate_image` | Create a **single** image from a text prompt. Supports Visual DNA, moodboards, reference images, web-search grounding. |
|
|
17
17
|
| `generate_image_edit` | Edit/transform an existing image (background removal, color changes, compositing). Pass source images + edit prompt. |
|
|
18
|
-
| `generate_creative_director` | Generate
|
|
18
|
+
| `generate_creative_director` | **Generate 2–8 related images or videos as one coherent set.** Use this INSTEAD of multiple `generate_image` calls whenever the user wants more than one related output (storyboards, ad campaigns, product sets, character sheets, scene variations). Handles style consistency and runs scenes in parallel internally. |
|
|
19
19
|
| `generate_video` | Create videos from text prompts. Supports Visual DNA and reference images for consistency. |
|
|
20
20
|
| `generate_video_from_image` | Animate a still image into video. Prompt describes the motion, not the subject. |
|
|
21
21
|
| `generate_video_from_video` | Restyle/transform an existing video (style transfer, scene restyling, subject swap). Keeps the original motion. |
|
|
@@ -90,7 +90,10 @@ You have direct access to the Kolbo AI creative platform via MCP tools (auto-con
|
|
|
90
90
|
|
|
91
91
|
1. **Check credits** ONCE per conversation with `check_credits`. Skip if you already checked earlier in this session.
|
|
92
92
|
2. **Discover models** with `list_models` using a `type` filter — but **skip this when the user names a specific model** (e.g. "seedance 2 fast"). Only call `list_models` when you need to discover or compare models.
|
|
93
|
-
3. **Pick the model**:
|
|
93
|
+
3. **Pick the model**: Follow this priority order:
|
|
94
|
+
- **User named a model** (e.g. "use Kling v2") → use that identifier directly, no questions asked.
|
|
95
|
+
- **Auto-select** → only from the **"Auto-selectable"** section of `list_models` results (models with a `summary`). Pick the cheapest one whose summary fits the task. Prefer `[RECOMMENDED]` when cost is similar.
|
|
96
|
+
- **Never auto-select** a model from the **"Named-only"** section (no summary) — you have no quality signal for it. Only use it if the user explicitly requested it by name.
|
|
94
97
|
4. **How generation calls work**: Each tool call blocks until the generation is fully complete (the MCP server polls the API internally). For images this is seconds; for video it can be minutes. If a call times out, use `get_generation_status` with the returned generation ID. When you output multiple tool calls in a single response, they run concurrently — so batch calls finish in the time of the slowest one, not the sum.
|
|
95
98
|
5. **Share the URL** — after a successful generation, hand the real URL back to the user. Never fabricate URLs.
|
|
96
99
|
|
|
@@ -151,7 +154,8 @@ Creative generations bill against the user's Kolbo credit balance. **Billing uni
|
|
|
151
154
|
### Rate Limiting & Batch Generation (CRITICAL)
|
|
152
155
|
|
|
153
156
|
**Rate limits** (per user, enforced server-side):
|
|
154
|
-
- **
|
|
157
|
+
- **Image generation**: 30 requests per minute (higher because images are fast and cheap)
|
|
158
|
+
- **All other generation types**: 10 requests per minute per type (e.g. 10 video + 10 image = fine, but 11 video in 1 minute = 429)
|
|
155
159
|
- **300 requests per minute** global across all media endpoints
|
|
156
160
|
- **Uploads** (`upload_media`): 300/min, no credit cost — much lighter than generation
|
|
157
161
|
- The API **queues** requests internally — it never silently drops them. If you're within limits, every request will be processed.
|
|
@@ -171,7 +175,10 @@ Before calling any generation tool, check your conversation history. If you alre
|
|
|
171
175
|
5. After all complete, present all results together.
|
|
172
176
|
6. If any fail with 429: wait 60 seconds and retry only the failed ones (max 2 retries).
|
|
173
177
|
|
|
174
|
-
**
|
|
178
|
+
**Multi-image decision:**
|
|
179
|
+
- User gives a **general brief** ("make 4 product shots", "create a storyboard") → use `generate_creative_director` (you plan the scenes, it handles consistency + parallel execution)
|
|
180
|
+
- User gives **explicit separate prompts** ("Image 1: X, Image 2: Y, Image 3: Z") → fire all as **parallel `generate_image` calls** in one response
|
|
181
|
+
- Never call `generate_image` sequentially in a loop — either use `generate_creative_director` or fire all calls in one parallel batch
|
|
175
182
|
|
|
176
183
|
**Don't narrate, just generate.** When the user says "make 5 videos", output all 5 tool calls in one response. Don't explain your plan, don't calculate step-by-step, don't say "Generating Video 1 of 5..." — just call the tools.
|
|
177
184
|
|
|
@@ -469,7 +476,7 @@ Describe **genre → mood → instrumentation → tempo → era**, in that order
|
|
|
469
476
|
- `get_moodboard` to see full details before applying
|
|
470
477
|
|
|
471
478
|
**Presets** bundle prompt templates + style direction for specific creative looks. Pass a `preset_id` to generation tools.
|
|
472
|
-
- `list_presets` with optional `type` filter ("image", "video", "
|
|
479
|
+
- `list_presets` with optional `type` filter ("image", "video", "video_from_image", "music")
|
|
473
480
|
|
|
474
481
|
---
|
|
475
482
|
|