@kolbo/kolbo-code-linux-arm64-musl 2.1.12 → 2.1.14
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 +32 -5
package/bin/kolbo
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/skills/kolbo/SKILL.md
CHANGED
|
@@ -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
|
|
|
@@ -173,10 +176,16 @@ Before calling any generation tool, check your conversation history. If you alre
|
|
|
173
176
|
6. If any fail with 429: wait 60 seconds and retry only the failed ones (max 2 retries).
|
|
174
177
|
|
|
175
178
|
**Multi-image decision:**
|
|
176
|
-
- User gives a **general brief** ("make 4 product shots", "create a storyboard") → use `generate_creative_director`
|
|
179
|
+
- User gives a **general brief** ("make 4 product shots", "create a storyboard", "show the character in 4 different settings") → use `generate_creative_director` with `scene_count`. Pass `visual_dna_ids` to keep a character consistent across all scenes.
|
|
177
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
|
|
178
181
|
- Never call `generate_image` sequentially in a loop — either use `generate_creative_director` or fire all calls in one parallel batch
|
|
179
182
|
|
|
183
|
+
**⚠️ Parameter names — do NOT confuse these:**
|
|
184
|
+
- `generate_image` → `num_images` (1–4): all images use the **same prompt**, just different random seeds — use this for "give me 4 variations of this image"
|
|
185
|
+
- `generate_creative_director` → `scene_count` (1–8): each scene gets its **own distinct prompt** — use this for "make 8 different campaign shots" OR "show the character in 8 different scenes/outfits/moods". Always pass `visual_dna_ids` when character consistency matters. **Never pass `num_images` to `generate_creative_director`.**
|
|
186
|
+
|
|
187
|
+
**After `generate_creative_director` completes — share results as individual URLs, one per scene. Do NOT create an HTML grid artifact or any combined layout. Just list each scene's title and its image URL on separate lines.**
|
|
188
|
+
|
|
180
189
|
**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.
|
|
181
190
|
|
|
182
191
|
**Handling interruptions:** If the user aborts or interrupts mid-batch (e.g. cancels Video 1, then says "do the rest" or "continue with 2-5"), pick up where you left off. Check which generations you already fired, skip those, and fire only the remaining ones. Never restart a batch from the beginning. Remember: aborted tool calls still process server-side — don't re-fire them.
|
|
@@ -310,9 +319,9 @@ Use `generate_image_edit` when the user wants to modify an existing image. Pass
|
|
|
310
319
|
Simple edits deserve simple prompts. Only elaborate for genuinely complex, multi-step transformations.
|
|
311
320
|
|
|
312
321
|
### Multi-Scene / Campaigns
|
|
313
|
-
|
|
322
|
+
`generate_creative_director` is not only for storyboards and campaigns — use it whenever the user wants a character shown across multiple scenes, outfits, moods, or settings. It generates 1–8 scenes from one brief, each with its own distinct prompt, and keeps style consistent internally. Always pass `visual_dna_ids` when a character must look the same across scenes, and optionally `moodboard_id` for art direction.
|
|
314
323
|
|
|
315
|
-
|
|
324
|
+
You can also do multiple parallel `generate_image` calls with the same `visual_dna_ids` when the user provides explicit per-image prompts.
|
|
316
325
|
|
|
317
326
|
---
|
|
318
327
|
|
|
@@ -323,9 +332,27 @@ Visual DNA profiles capture the visual "identity" of a character, style, product
|
|
|
323
332
|
### Workflow
|
|
324
333
|
1. **Create** a profile with `create_visual_dna` — provide reference images (max 4), optionally video and audio
|
|
325
334
|
2. **Types**: `character` (default), `style`, `product`, `scene`
|
|
326
|
-
3. **Use** the profile by passing its `id` in `visual_dna_ids` when calling any generation tool
|
|
335
|
+
3. **Use** the profile by passing its `id` in `visual_dna_ids` when calling any generation tool — including `generate_creative_director`
|
|
327
336
|
4. **List/inspect** profiles with `list_visual_dnas` / `get_visual_dna`
|
|
328
337
|
|
|
338
|
+
### ⚠️ Visual DNA Creation — Always Generate Reference Images First (MANDATORY)
|
|
339
|
+
|
|
340
|
+
**Before calling `create_visual_dna` for a character**, always generate 2 reference images first and include them alongside any user-provided images. These give the Visual DNA engine multi-angle coverage and dramatically improve consistency:
|
|
341
|
+
|
|
342
|
+
**Step 1 — Generate both images in parallel (one `generate_image` call each, fire simultaneously):**
|
|
343
|
+
|
|
344
|
+
1. **Close-up portrait** — prompt: `"[character description], close-up portrait, face and shoulders, neutral solid background, soft studio lighting, photorealistic"`, aspect ratio `1:1`
|
|
345
|
+
2. **4-angle character sheet** — prompt: `"[character description], character reference sheet showing front view, back view, left side view, right side view, four panels arranged in a 2x2 grid, neutral solid background, full body, photorealistic"`, aspect ratio `16:9`
|
|
346
|
+
|
|
347
|
+
**Step 2 — Call `create_visual_dna`** with:
|
|
348
|
+
- `images`: user's reference image(s) + the 2 generated URLs above (up to 4 total)
|
|
349
|
+
- `type`: `"character"`
|
|
350
|
+
- `name`: descriptive name
|
|
351
|
+
|
|
352
|
+
**Why:** A single reference photo only shows one angle. The close-up gives the engine facial detail; the 4-angle sheet gives it body geometry and pose range. Together they produce far more consistent generations.
|
|
353
|
+
|
|
354
|
+
**Skip this only if** the user explicitly says "just use my image as-is" or provides 3+ reference images already covering multiple angles.
|
|
355
|
+
|
|
329
356
|
### When to Use
|
|
330
357
|
- User wants the same character across multiple images/videos
|
|
331
358
|
- User wants a consistent brand style across a campaign
|