@kolbo/mcp 1.22.1 → 1.22.3
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/package.json +1 -1
- package/skill/GENERATED.md +8 -0
- package/skill/SKILL.md +15 -25
- package/src/tools/visual_dna.js +1 -1
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
|
---
|
package/src/tools/visual_dna.js
CHANGED
|
@@ -21,7 +21,7 @@ function registerVisualDnaTools(server, client) {
|
|
|
21
21
|
'Create a Visual DNA profile from reference media. Each item in images/video/audio can be a public URL or an absolute local file path. Max 4 images, 1 video, 1 audio. Files capped at 25MB each.',
|
|
22
22
|
{
|
|
23
23
|
name: z.string().describe('Name of the Visual DNA profile. **Pick a short, lowercase, no-space single token** (e.g. `maya`, `tokyo_neon`, `brand_red`, `esther_model`) — never names with spaces (`Sarah Johnson` ❌). The user/LLM types this as `@<name>` inside generation prompts, and the @ parser stops at the first space, so `@Sarah Johnson` matches only `Sarah` and the binding silently drops. Multi-word concepts should use underscores or be a single token. Names are case-insensitive on lookup, but **reserved** values rejected on creation: `Image1`, `Image2`, …, `Video1`, …, `Audio1`, … (any-language characters allowed; max 100 chars).'),
|
|
24
|
-
dna_type: z.string().optional().describe('Type: "character", "style", "product", "scene". Default: "character"'),
|
|
24
|
+
dna_type: z.string().optional().describe('Type: "character", "style", "product", "scene", "environment". Default: "character"'),
|
|
25
25
|
prompt_helper: z.string().optional().describe('Optional description/notes to guide DNA extraction'),
|
|
26
26
|
images: z.array(z.string()).optional().describe('Array of image sources (URLs or absolute local paths). Max 4.'),
|
|
27
27
|
video: z.string().optional().describe('Optional video source (URL or absolute local path)'),
|