@kolbo/kolbo-code-linux-arm64-musl 2.1.11 → 2.1.12

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 CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolbo/kolbo-code-linux-arm64-musl",
3
- "version": "2.1.11",
3
+ "version": "2.1.12",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -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 images from text prompts. Supports Visual DNA, moodboards, reference images, batch generation, web-search grounding. |
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 a coordinated multi-scene set (1–8 scenes) from one creative brief. Ideal for storyboards, ad campaigns, product showcases. Supports image and video modes. |
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. |
@@ -151,7 +151,8 @@ Creative generations bill against the user's Kolbo credit balance. **Billing uni
151
151
  ### Rate Limiting & Batch Generation (CRITICAL)
152
152
 
153
153
  **Rate limits** (per user, enforced server-side):
154
- - **10 generation requests per minute per tool type** (e.g. 10 video + 10 image = fine, but 11 video in 1 minute = 429)
154
+ - **Image generation**: 30 requests per minute (higher because images are fast and cheap)
155
+ - **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
156
  - **300 requests per minute** global across all media endpoints
156
157
  - **Uploads** (`upload_media`): 300/min, no credit cost — much lighter than generation
157
158
  - The API **queues** requests internally — it never silently drops them. If you're within limits, every request will be processed.
@@ -171,7 +172,10 @@ Before calling any generation tool, check your conversation history. If you alre
171
172
  5. After all complete, present all results together.
172
173
  6. If any fail with 429: wait 60 seconds and retry only the failed ones (max 2 retries).
173
174
 
174
- **Batch images**: use `generate_creative_director` for 5+ coordinated images — one request handles multi-scene.
175
+ **Multi-image decision:**
176
+ - 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)
177
+ - User gives **explicit separate prompts** ("Image 1: X, Image 2: Y, Image 3: Z") → fire all as **parallel `generate_image` calls** in one response
178
+ - Never call `generate_image` sequentially in a loop — either use `generate_creative_director` or fire all calls in one parallel batch
175
179
 
176
180
  **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
181
 
@@ -469,7 +473,7 @@ Describe **genre → mood → instrumentation → tempo → era**, in that order
469
473
  - `get_moodboard` to see full details before applying
470
474
 
471
475
  **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", "music", "text_to_video")
476
+ - `list_presets` with optional `type` filter ("image", "video", "video_from_image", "music")
473
477
 
474
478
  ---
475
479