@kolbo/kolbo-code-linux-arm64-musl 2.1.22 → 2.2.0

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 CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolbo/kolbo-code-linux-arm64-musl",
3
- "version": "2.1.22",
3
+ "version": "2.2.0",
4
4
  "os": [
5
5
  "linux"
6
6
  ],
@@ -1203,9 +1203,20 @@ This composes with `@image1` / `@image2` positional tags for plain
1203
1203
  reference/source images — see "Tagging references inside the prompt" above
1204
1204
  for the full system.
1205
1205
 
1206
- **Naming hint for `create_visual_dna`:** pick a short, lowercase, no-space
1207
- Latin string for `name` (`esther_model`, `dana`, `tokyo_neon`) so it's
1208
- trivially typable inside any prompt regardless of the user's language.
1206
+ **⚠️ Naming rule for `create_visual_dna` NO SPACES (MANDATORY).** The
1207
+ `name` you set MUST be a **single token, lowercase, no spaces, ASCII-safe**
1208
+ `esther_model`, `dana`, `tokyo_neon`, `brand_red`. Never `Sarah Johnson`,
1209
+ never `the red dress`. Reason: the prompt parser stops the `@<token>`
1210
+ match at the first space (and at `.,!?` punctuation). So `@Sarah Johnson`
1211
+ matches *only* `Sarah` — if no DNA named `Sarah` exists, the mention is
1212
+ silently dropped and the DNA never binds. A single-token name is the only
1213
+ way to guarantee inline `@name` works in any sentence, in any language,
1214
+ without forcing the user to write awkward punctuation around it. Use
1215
+ underscores for multi-word concepts (`old_town`, not `Old Town`). When
1216
+ the user proposes a name with spaces, accept the intent but collapse it
1217
+ into a single token before storing (`"Sarah Johnson"` → `sarah_johnson`)
1218
+ and tell them once how you'll refer to it. Source of truth:
1219
+ [kolbo-docs / Visual DNA & @ References](https://docs.kolbo.ai/kolbo-code/visual-dna).
1209
1220
 
1210
1221
  ### Visual DNA Limits
1211
1222
 
@@ -1,9 +1,29 @@
1
1
  ---
2
2
  name: pptx
3
- description: "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks"
3
+ description: "Presentation creation, editing, and analysis. Use whenever the user asks for a presentation, slides, slide deck, pitch deck, or .pptx file covers (1) creating new presentations, (2) editing/modifying content, (3) layouts, (4) comments/speaker notes, and analysis."
4
4
  ---
5
5
 
6
- # PPTX creation, editing, and analysis
6
+ # Presentation creation, editing, and analysis
7
+
8
+ ## Output format decision — read first
9
+
10
+ **Default to a single self-contained HTML file** for any "make a presentation / slides / deck" request. The chat view renders `.html` files inline as an interactive artifact, so the user sees the result immediately without downloading anything.
11
+
12
+ Use the html2pptx → `.pptx` workflow **only when one of these is true**:
13
+ - The user explicitly asks for a `.pptx`, PowerPoint, or Keynote file.
14
+ - The user asks to edit, analyze, or convert an existing `.pptx`.
15
+ - The user asks for a deliverable they'll open in PowerPoint/Keynote/Google Slides.
16
+
17
+ When in doubt, produce HTML. Do **not** paste slide markup as a code block in chat — always write to an `.html` file with the `write` tool so the inline preview triggers.
18
+
19
+ ### HTML presentation workflow (default)
20
+
21
+ 1. Create one `.html` file (e.g. `presentation.html`) containing all slides as full-viewport sections (`100vw × 100vh`) stacked vertically, with a 16:9 aspect intent.
22
+ 2. Include inline `<style>` (web-safe fonts only — Arial, Helvetica, Georgia, Inter via system fallback) and basic keyboard navigation (`ArrowDown`/`ArrowRight` → next slide, `ArrowUp`/`ArrowLeft` → previous, `Space` → next) using a tiny inline `<script>`.
23
+ 3. Apply the design principles from the [PPTX workflow section](#creating-a-new-powerpoint-presentation-without-a-template) below — palette, typography, layout, contrast — they apply identically to HTML.
24
+ 4. Write the file with the `write` tool. The chat view will open the preview automatically.
25
+
26
+ Only continue to the PPTX-specific instructions below when the decision rule above says to.
7
27
 
8
28
  ## Overview
9
29
 
@@ -69,11 +69,28 @@ Way of thinking about problems (flatten-with-flags, test-invariants)
69
69
  ### Reference
70
70
  API docs, syntax guides, tool documentation (office docs)
71
71
 
72
+ ## Where to Write the Skill (REQUIRED)
73
+
74
+ **Personal skills MUST be written to the user's global skills directory so every Kolbo Code session — across every project — can discover them.**
75
+
76
+ Default target (do this unless the user explicitly asks for project-scope):
77
+
78
+ ```
79
+ ~/.claude/skills/<skill-name>/SKILL.md
80
+ ```
81
+
82
+ Kolbo Code's skill loader scans `~/.claude/skills/**/SKILL.md` and `~/.agents/skills/**/SKILL.md` on every session init. Anything written there is globally available. Anything written inside the project's working directory (e.g. `./skills/...` or the repo's `.claude/skills/`) only applies to that one project and will NOT be available in other repos.
83
+
84
+ **Rules:**
85
+ - Never create a `skills/` directory inside the user's project unless they explicitly ask for a project-scoped skill.
86
+ - If you've already written the file under the project by mistake, `mv` it to `~/.claude/skills/<skill-name>/` and tell the user where it ended up.
87
+ - After writing, call `POST /skill/reload` on the local Kolbo server (or instruct the user to do so via the UI) so the current session picks the new skill up without a restart.
88
+
72
89
  ## Directory Structure
73
90
 
74
91
 
75
92
  ```
76
- skills/
93
+ ~/.claude/skills/
77
94
  skill-name/
78
95
  SKILL.md # Main reference (required)
79
96
  supporting-file.* # Only if needed