@kolbo/mcp 1.22.0 → 1.22.2
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/README.md +1 -1
- package/package.json +1 -1
- package/skill/GENERATED.md +8 -0
- package/skill/SKILL.md +15 -25
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ No API key needed — on first use a Kolbo login opens in my browser and I click
|
|
|
28
28
|
The plugin below is an optional slash-command upgrade.
|
|
29
29
|
-->
|
|
30
30
|
|
|
31
|
-
Run this once — it
|
|
31
|
+
Run this once — it sets up the **full** Kolbo experience (the MCP tools **and** the routing skill) for every installed agent (Claude Desktop, Claude Code, Cursor), keyless:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
npx -y @kolbo/mcp install
|
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# AUTO-GENERATED — do not edit
|
|
2
|
+
|
|
3
|
+
This skill/ tree is mirrored from kolbo-code (the single source of truth)
|
|
4
|
+
by .github/workflows/sync-skill-to-plugin.yml — synced from kolbo-code@2d43295.
|
|
5
|
+
|
|
6
|
+
It is the skill that 'npx @kolbo/mcp install' deploys into the user's agent.
|
|
7
|
+
To change it, edit packages/opencode/skills/kolbo/ in kolbo-code and push;
|
|
8
|
+
this workflow re-mirrors the whole tree here. Hand-edits here are overwritten.
|
package/skill/SKILL.md
CHANGED
|
@@ -2,31 +2,21 @@
|
|
|
2
2
|
version: 0.4.0
|
|
3
3
|
name: kolbo
|
|
4
4
|
description: |
|
|
5
|
-
Generate, edit, or analyze creative media via the Kolbo AI MCP server
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"TTS / voice", "sound effect", "3D model", "build me an app".
|
|
21
|
-
|
|
22
|
-
Chain: train Visual DNA → use vdna_id in any DNA-aware tool;
|
|
23
|
-
research-first → persist brand kit (.kolbo/brand-kits/) → DTC ads /
|
|
24
|
-
product photoshoot / marketplace cards; generate frames (Creative
|
|
25
|
-
Director) → animate each frame (generate_video_from_image).
|
|
26
|
-
|
|
27
|
-
NOT for: video editing / FFmpeg work (use video-production skill),
|
|
28
|
-
motion graphics (use remotion-best-practices skill), code editing,
|
|
29
|
-
general chat outside media generation.
|
|
5
|
+
Generate, edit, or analyze creative media via the Kolbo AI MCP server:
|
|
6
|
+
images (GPT Image, Nano Banana, Flux), video (Seedance, Veo, Kling, Hailuo),
|
|
7
|
+
music (Suno), TTS (ElevenLabs), 3D, transcription, Visual DNA (character
|
|
8
|
+
consistency), Marketing Studio (UGC + DTC ads + product photoshoot +
|
|
9
|
+
marketplace cards), Creative Director (multi-scene batches), HTML artifact
|
|
10
|
+
publishing (presentations, landing pages, dashboards), and the App Builder.
|
|
11
|
+
|
|
12
|
+
Use when the user wants to generate, create, make, edit, animate, or
|
|
13
|
+
transcribe media: images, video, music, voice/TTS, sound effects, 3D models,
|
|
14
|
+
UGC or TV-spot ads, product / lifestyle / hero shots, Amazon or marketplace
|
|
15
|
+
listings, presentations, landing pages, dashboards, or 'build me an app';
|
|
16
|
+
or to reuse a character or brand (Visual DNA, brand kits).
|
|
17
|
+
|
|
18
|
+
NOT for: video editing / FFmpeg (use video-production), motion graphics
|
|
19
|
+
(use remotion-best-practices), code editing, or general chat.
|
|
30
20
|
argument-hint: "[prompt-or-command] [--model <name>] [--image <path>] [--video <path>]"
|
|
31
21
|
allowed-tools: Bash, Read, Write, Edit
|
|
32
22
|
---
|