@kolbo/kolbo-code-linux-arm64-musl 2.0.9 → 2.1.5
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 +30 -6
package/bin/kolbo
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/skills/kolbo/SKILL.md
CHANGED
|
@@ -98,12 +98,36 @@ You have direct access to the Kolbo AI creative platform via MCP tools (auto-con
|
|
|
98
98
|
|
|
99
99
|
### Cost Awareness
|
|
100
100
|
|
|
101
|
-
Creative generations bill against the user's Kolbo credit balance.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
101
|
+
Creative generations bill against the user's Kolbo credit balance. **Billing units differ by type** — always apply the correct formula before generating.
|
|
102
|
+
|
|
103
|
+
| Type | Billing unit | Credit range | Example |
|
|
104
|
+
|------|-------------|-------------|---------|
|
|
105
|
+
| **Image** | per image (flat) | 1–30 cr | Flux.1 Fast = 1 cr, Midjourney = 4 cr, 4K variants cost more |
|
|
106
|
+
| **Image edit** | per image (flat) | 2–20 cr | |
|
|
107
|
+
| **Video** | **cr/s × duration** | 2–30 cr/s | Kandinsky 5 Fast × 5s = 10 cr; Seedance 2.0 × 10s = 300 cr |
|
|
108
|
+
| **Video from image** | **cr/s × duration** | 4–30 cr/s | Same per-second rule as text-to-video |
|
|
109
|
+
| **Lipsync** | **cr/s × duration** | 5–20 cr/s | |
|
|
110
|
+
| **Music** | per generation (flat) | 15–60 cr | Suno v5 = 15 cr; ElevenLabs Music = 60 cr |
|
|
111
|
+
| **Speech (TTS)** | per 100 characters | 2–5 cr/100 chars | ElevenLabs (5) × 500 chars = 25 cr; Google (2) × 500 chars = 10 cr |
|
|
112
|
+
| **Sound effects** | per generation (flat) | 4–7 cr | |
|
|
113
|
+
| **3D model** | per model (flat) | 5–300 cr | Trellis = 5 cr; Meshy v6 = 150 cr; Marble 1.1 = 300 cr |
|
|
114
|
+
| **Transcription (stt)** | per minute of audio | model.credit × duration_minutes | |
|
|
115
|
+
|
|
116
|
+
**Calculation formulas — always apply before generating:**
|
|
117
|
+
- **Video / Lipsync**: `total = model_credit_per_second × duration_seconds`
|
|
118
|
+
- Always call `list_models` first to get the exact `credit` value, then multiply by the requested duration.
|
|
119
|
+
- Never assume the credit shown is a flat per-generation cost for these types.
|
|
120
|
+
- **Music**: flat per generation — `total = model_credit` (duration does not change the cost).
|
|
121
|
+
- **TTS**: `total = model_credit × ceil(character_count / 100)`
|
|
122
|
+
- Count the actual characters in the text before estimating. 1000 chars with ElevenLabs = 50 credits.
|
|
123
|
+
- **Images / 3D / Sound effects**: `total = model_credit × quantity`
|
|
124
|
+
|
|
125
|
+
**When to confirm before generating:**
|
|
126
|
+
- Any video or lipsync generation — always state the estimated credit cost before firing. Formula: `credit/s × seconds`.
|
|
127
|
+
- Music — state the flat credit cost (from `list_models`) before generating.
|
|
128
|
+
- TTS with more than 500 characters — mention the cost first.
|
|
129
|
+
- 3D models with `credit ≥ 100` — confirm before generating.
|
|
130
|
+
- Images: just generate unless the balance is low.
|
|
107
131
|
|
|
108
132
|
### Rate Limiting
|
|
109
133
|
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**.
|