@skill-map/cli 0.62.1 → 0.63.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.
@@ -306,7 +306,7 @@ the `__PROVIDER__` token and skip kinds the provider does not claim.
306
306
  `daily-loop`).
307
307
  3. Provision the lens: the seeded portfolio has a root `AGENTS.md`
308
308
  (the `openai`/Codex marker) next to `.claude/`, but `openai` is
309
- coming soon, so auto-detect ignores it and a plain `sm init`
309
+ experimental (ships disabled), so auto-detect ignores it and a plain `sm init`
310
310
  resolves the `claude` lens with no prompt. Run `sm init`, then
311
311
  `sm scan`. (If `.skill-map/` already exists, just `sm scan`.)
312
312
  4. Mark the skipped predecessors: `state.js set-part <predecessor> skipped`
@@ -133,10 +133,10 @@ element. Decide with §Provider detection:
133
133
  left bar): emit tester-facing messages with `> ` on every line,
134
134
  including blank lines inside a multi-paragraph block. This is the
135
135
  only active path today.
136
- - `provider != claude` (coming soon: Antigravity CLI, agent-skills,
136
+ - `provider != claude` (experimental: Antigravity CLI, agent-skills,
137
137
  any other host where most non-Claude renderers show `>` as a
138
138
  literal character): emit **plain prose**, NO `> ` prefix anywhere.
139
- Kept as the wiring for the coming-soon providers; not exercised
139
+ Kept as the wiring for the experimental providers; not exercised
140
140
  while the tutorial demos `claude` only.
141
141
 
142
142
  Sample messages throughout the part files are written in the Claude
@@ -259,24 +259,24 @@ on-disk convention:
259
259
  | Provider | Base dir | Kinds it claims | Detect via env var(s) |
260
260
  |----------------|-------------------|-----------------------------|--------------------------------------------------------|
261
261
  | `claude` | `.claude/` | `agent`, `command`, `skill` | `CLAUDECODE=1` OR `AI_AGENT` starts with `claude-code` |
262
- | `agent-skills` | `.agents/skills/` | `skill` only (vendor-neutral; also the on-disk home for Google's Antigravity CLI, which replaced the Gemini CLI on 2026-05-19 and adopted this open standard) | coming soon (not selectable in the tutorial yet) |
263
- | `openai` | `.codex/` | `agent` (`.codex/agents/*.toml`) | coming soon (not selectable in the tutorial yet) |
262
+ | `agent-skills` | `.agents/skills/` | `skill` only (vendor-neutral; also the on-disk home for Google's Antigravity CLI, which replaced the Gemini CLI on 2026-05-19 and adopted this open standard) | experimental (ships disabled; `sm tutorial --experimental` to offer it) |
263
+ | `openai` | `.codex/` | `agent` (`.codex/agents/*.toml`) | experimental (ships disabled by default) |
264
264
 
265
265
  **Decision logic, applied silently during pre-flight**: the tutorial
266
266
  demonstrates the `claude` provider only. `agent-skills` and `openai`
267
- are **coming soon** and are not selectable here, so there is no
268
- runtime to detect or opt into.
267
+ are **experimental** (ship disabled by default) and are not selectable
268
+ here, so there is no runtime to detect or opt into.
269
269
 
270
270
  1. `provider = claude`, `<provider_dir> = .claude`, kinds =
271
271
  `{agent, command, skill}`. Always.
272
272
  2. Do NOT offer Antigravity / agent-skills / openai as an alternative,
273
273
  and do NOT ask the tester which runtime hosts them. If a tester
274
274
  says they use another runtime, acknowledge it briefly and explain
275
- that those providers are coming soon, the tutorial demos `claude`
275
+ that those providers are experimental, the tutorial demos `claude`
276
276
  (`.claude/`) today:
277
277
 
278
278
  > Heads up: skill-map also reads Antigravity, agent-skills and
279
- > Codex projects, but those providers are coming soon in this
279
+ > Codex projects, but those providers are experimental in this
280
280
  > tutorial. We'll demo skill-map's Claude provider (`.claude/`)
281
281
  > today.
282
282
 
@@ -146,16 +146,27 @@ content, not configuration). Append at the end:
146
146
  - [ ] XXX revisit naming.
147
147
  ```
148
148
 
149
- Now re-scan so the extractor re-reads its settings and re-counts:
149
+ Now restart `sm` so it re-reads the plugin. `sm` loads the plugin
150
+ (its settings, its slot, the contribution itself) **once, at
151
+ boot**, so a server left running from an earlier chapter froze that
152
+ view at startup and will not see the new `XXX` keyword. Stop it
153
+ with Ctrl+C and run it again (or just run it, if it is not up):
150
154
 
151
155
  ```bash
152
- sm scan
156
+ sm
153
157
  ```
154
158
 
155
- The scan re-emits the contribution with the new count. To see it,
156
- run `sm`, open the browser, click `notes/ideas`, and find the chip
157
- in the card's **left footer** (it also shows in the inspector). It
158
- reads `🔍 kw 3`, one match per keyword.
159
+ Booting runs a fresh scan, so the extractor re-reads
160
+ `ctx.settings.keywords` (now including `XXX`) and re-counts. Open
161
+ the browser, click `notes/ideas`, and find the chip in the card's
162
+ **left footer** (it also shows in the inspector). It reads
163
+ `🔍 kw 3`, one match per keyword.
164
+
165
+ > Heads up: editing only the fixture (`notes/ideas.md`) updates
166
+ > live through the watcher, but it recounts with the OLD keyword
167
+ > set, so the chip would read `🔍 kw 2`. The new `XXX` keyword
168
+ > lives in the plugin, and the plugin is read at boot, that is why
169
+ > restarting `sm` is the step that takes the count to 3.
159
170
 
160
171
  > Three matches. The setting flowed from the extension's `settings`
161
172
  > through `ctx.settings.keywords` into the extractor, the extractor
@@ -175,15 +186,15 @@ The tester edits the extractor source:
175
186
  > Find the `slot` line in the `count` contribution. Change
176
187
  > `'card.footer.left'` to `'card.footer.right'`. Save.
177
188
 
178
- Re-scan:
189
+ The slot is part of the plugin's definition, and `sm` reads that
190
+ **once, at boot**. The watcher re-counts content on the fly, but it
191
+ does not reload a plugin, so the slot move is not live. Restart
192
+ `sm` to pick it up (Ctrl+C, then `sm` again):
179
193
 
180
194
  ```bash
181
- sm scan
195
+ sm
182
196
  ```
183
197
 
184
- If `sm` is still running, the watcher picks up the file change
185
- and re-emits contributions live. If not, run the scan manually.
186
-
187
198
  Refresh the UI, the chip should now appear in the **right footer**
188
199
  of the node card instead of the left.
189
200
 
@@ -31,7 +31,7 @@ lingers, mention it once and move on.
31
31
  **Context (agent, do not narrate the plumbing): the lens.** This
32
32
  project has a root `AGENTS.md` (the `openai`/Codex marker) sitting next
33
33
  to the `.claude/` folder (the `claude` marker, where the tutorial skill
34
- itself lives). `openai` is **coming soon**, though, so auto-detect
34
+ itself lives). `openai` is **experimental** (ships disabled), though, so auto-detect
35
35
  ignores its marker and `sm init` resolves the lens to `claude`
36
36
  silently, exactly like the prologue: only `claude` is selectable today,
37
37
  so there is no ambiguity and no prompt. Do not promise the tester a
@@ -50,7 +50,7 @@ Tell the tester:
50
50
  > site). skill-map maps that harness.
51
51
  >
52
52
  > Run `sm init`, it auto-detects the `claude` lens (this is a Claude
53
- > project; the other lenses are coming soon). Then run `sm` to boot the
53
+ > project; the other lenses are experimental). Then run `sm` to boot the
54
54
  > live UI.
55
55
  >
56
56
  > Open the URL `sm` printed. You'll see **one node**: `AGENTS.md`,
@@ -147,8 +147,8 @@ Expected: the scan prints a line like `Auto-detected activeProvider
147
147
  is just a key in `settings.json`, persisted like any other setting.
148
148
 
149
149
  > Other lenses exist in the engine (`openai` for Codex,
150
- > `agent-skills`, `antigravity`), but they are **coming soon** in the
151
- > tutorial: today we demo the `claude` lens only. The idea to keep is
150
+ > `agent-skills`, `antigravity`), but they are **experimental** (ship
151
+ > disabled by default): today we demo the `claude` lens only. The idea to keep is
152
152
  > the one above, one project reads through exactly one provider at a
153
153
  > time, chosen by `activeProvider`. The lens is cheap to change later
154
154
  > because the graph is always rebuilt from your files, never the