@kolbo/kolbo-code-linux-arm64-musl 2.1.7 → 2.1.10
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 +40 -13
package/bin/kolbo
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/skills/kolbo/SKILL.md
CHANGED
|
@@ -46,7 +46,7 @@ You have direct access to the Kolbo AI creative platform via MCP tools (auto-con
|
|
|
46
46
|
|
|
47
47
|
| Tool | Description |
|
|
48
48
|
|------|-------------|
|
|
49
|
-
| `upload_media` | Upload
|
|
49
|
+
| `upload_media` | Upload ANY local file to Kolbo CDN → returns a public URL. Works for images, videos, audio, HTML, documents — any file type. Use for: feeding media to `chat_send_message`, sharing files publicly, hosting HTML pages, or multi-tool workflows. |
|
|
50
50
|
| `list_media` | Browse user's uploaded media with filtering by type and search. |
|
|
51
51
|
|
|
52
52
|
### Visual DNA (Character/Style Consistency)
|
|
@@ -74,11 +74,23 @@ You have direct access to the Kolbo AI creative platform via MCP tools (auto-con
|
|
|
74
74
|
| `chat_list_conversations` | List your SDK chat conversations. |
|
|
75
75
|
| `chat_get_messages` | Fetch messages in a conversation (with media URLs). |
|
|
76
76
|
|
|
77
|
+
## ⚠️ Generate vs Edit — Know the Difference
|
|
78
|
+
|
|
79
|
+
| User intent | Action | NOT this |
|
|
80
|
+
|-------------|--------|----------|
|
|
81
|
+
| "Create a video from scratch" / "Generate a video of..." | `generate_video` (Kolbo MCP) | — |
|
|
82
|
+
| "Edit this video" / "Cut" / "Trim" / "Crop" / "Merge" / "Add subtitles" / "Remove silence" / "Speed up" / "Convert to 9:16" | Load `video-production` skill → FFmpeg | ❌ Do NOT call `generate_video` |
|
|
83
|
+
| "Create motion graphics" / "Animated text" / "Title sequence" | Load `remotion-best-practices` skill → Remotion | ❌ Do NOT call `generate_video` |
|
|
84
|
+
| "Animate this image" / "Make this photo move" | `generate_video_from_image` (Kolbo MCP) | — |
|
|
85
|
+
| "Restyle this video as anime" | `generate_video_from_video` (Kolbo MCP) | — |
|
|
86
|
+
|
|
87
|
+
**`generate_video` creates NEW videos from text prompts. It cannot edit, cut, trim, merge, or modify existing video files.** For any operation on an existing video file, use FFmpeg via the `video-production` skill.
|
|
88
|
+
|
|
77
89
|
## Core Workflow
|
|
78
90
|
|
|
79
91
|
1. **Check credits** with `check_credits` at the start of any creative session (once is enough).
|
|
80
92
|
2. **Discover models** with `list_models` using a `type` filter. **Always do this before calling a generation tool — never hardcode model identifiers.** Models are added, removed, and updated frequently.
|
|
81
|
-
3. **
|
|
93
|
+
3. **Pick the model**: If the user explicitly requested a specific model, use that. Otherwise, **prefer the cheapest model that still has great quality** — look at both `credit` cost and `recommended` status from `list_models`. When two models have similar quality, always pick the cheaper one. Only omit `model` (auto-select) as a last resort if you can't determine a good cheap option.
|
|
82
94
|
4. **Polling is internal** — the tool returns the final URL(s) when ready. If a video generation times out, call `get_generation_status` with the returned generation ID to retrieve the result.
|
|
83
95
|
5. **Share the URL** — after a successful generation, hand the real URL back to the user. Never fabricate URLs.
|
|
84
96
|
|
|
@@ -122,20 +134,31 @@ Creative generations bill against the user's Kolbo credit balance. **Billing uni
|
|
|
122
134
|
- Count the actual characters in the text before estimating. 1000 chars with ElevenLabs = 50 credits.
|
|
123
135
|
- **Images / 3D / Sound effects**: `total = model_credit × quantity`
|
|
124
136
|
|
|
125
|
-
**
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
137
|
+
**ALWAYS confirm total cost before generating:**
|
|
138
|
+
Before firing ANY generation (image, video, music, speech, 3D — everything), calculate the total credit cost and present it to the user for confirmation. This is especially critical for batch operations (e.g. "8 videos from 8 images"):
|
|
139
|
+
|
|
140
|
+
1. Calculate per-item cost using the formulas above.
|
|
141
|
+
2. Multiply by the number of items.
|
|
142
|
+
3. Present a summary: "This will generate 8 videos × 5s each using [model] at X cr/s = **Y credits total**. Proceed?"
|
|
143
|
+
4. **Suggest cheaper alternatives** if available: "I can use [cheaper model] at Z cr/s instead — same quality, saves N credits. Want that instead?"
|
|
144
|
+
5. Only proceed after the user confirms.
|
|
145
|
+
|
|
146
|
+
The only exception: single image generations under 5 credits — those can proceed without confirmation unless the user's balance is low.
|
|
147
|
+
|
|
148
|
+
### Rate Limiting & Batch Generation (CRITICAL)
|
|
131
149
|
|
|
132
|
-
### Rate Limiting
|
|
133
150
|
Kolbo enforces **10 generation requests per minute per user per tool type** (e.g. 10 image calls + 10 video calls = fine, but 11 image calls in 1 minute = rate limited). General media requests are capped at **300 per minute**.
|
|
134
151
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
152
|
+
**⚠️ MANDATORY: Sequential generation with delays.**
|
|
153
|
+
When making multiple generation calls (e.g. 8 images → 8 videos), you MUST:
|
|
154
|
+
|
|
155
|
+
1. **Call ONE generation at a time.** Never fire multiple generation tool calls in the same message. Send one, wait for the result, then send the next.
|
|
156
|
+
2. **Wait 8-10 seconds between each call.** After receiving a result, pause before the next generation. This prevents the API from silently dropping requests.
|
|
157
|
+
3. **Verify every result.** After all generations complete, count the results. If any are missing, retry the failed ones (with the same delay).
|
|
158
|
+
4. **Batch images**: use `generate_creative_director` instead of calling `generate_image` 5+ times — it handles multi-scene in one request. There is no batch equivalent for video — you must go one-by-one.
|
|
159
|
+
5. If you get a rate limit error (429), wait 60 seconds (the window resets per minute) and retry. Do not retry more than 2 times.
|
|
160
|
+
|
|
161
|
+
**Why this matters:** Firing multiple generation calls in parallel (e.g. 8 `generate_video_from_image` calls at once) causes the API to silently drop some requests — the user ends up with only half the results and no error message. This is the #1 cause of "I sent 8 images but only got 4 videos" complaints.
|
|
139
162
|
|
|
140
163
|
---
|
|
141
164
|
|
|
@@ -523,6 +546,10 @@ Natural-language triggers that should prompt this skill + a tool call:
|
|
|
523
546
|
- "What prompts are shown in this video?" → `upload_media` → `chat_send_message` with `media_urls` (omit model — auto-routes to Gemini)
|
|
524
547
|
- "Keep the same character across all these images" → `create_visual_dna` → `generate_image` with `visual_dna_ids`
|
|
525
548
|
- "Upload this file to my media library" → `upload_media`
|
|
549
|
+
- "Host this HTML page" / "Publish this landing page" / "Give me a public URL for this file" → `upload_media` → share the returned `url` (Kolbo CDN serves any file type publicly)
|
|
526
550
|
- "What video models are available?" → `list_models` (video)
|
|
527
551
|
- "How many credits do I have?" → `check_credits`
|
|
528
552
|
- "What's in this image?" (with upload) → describe per the Image Analysis section; no tool call needed unless the user asks to generate or edit
|
|
553
|
+
- "Create motion graphics" / "animated text" / "title sequence" → load the `remotion-best-practices` skill for Remotion-based motion graphics
|
|
554
|
+
- "Edit this video" / "cut this clip" / "remove silence" / "add subtitles" / "convert to 9:16" → load the `video-production` skill for FFmpeg-based editing
|
|
555
|
+
- "Create a short-form video" / "make a reel" / "YouTube short" → load the `short-form-video` skill
|