@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolbo/mcp",
3
- "version": "1.22.1",
3
+ "version": "1.22.3",
4
4
  "description": "Kolbo AI MCP Server - Generate images, videos, music, speech, and sound effects from Claude Code",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -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
- Covers images (GPT Image 2, Nano Banana, Flux, ...), video (Seedance 2,
7
- Veo 3.1, Kling, Hailuo, ...), music (Suno), TTS (ElevenLabs), 3D,
8
- transcription, Visual DNA (character consistency), Marketing Studio
9
- (UGC + DTC ads + product photoshoot + marketplace cards),
10
- Creative Director (multi-scene batches), HTML artifact publishing
11
- (presentations, landing pages, dashboards), and the App Builder.
12
-
13
- Use when: "generate", "create", "make me a", "edit", "animate",
14
- "transcribe", "Visual DNA", "the same character", "UGC ad",
15
- "TikTok / Reels / Shorts", "unboxing", "product review", "TV spot",
16
- "Pinterest pin", "product photo", "lifestyle shot", "hero banner",
17
- "ad pack", "social carousel", "virtual try-on", "Amazon listing",
18
- "marketplace cards", "A+ content", "build a presentation/slide deck",
19
- "landing page", "dashboard / widget / game", "music / song / jingle",
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
  ---
@@ -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)'),