@skill-map/cli 0.64.1 → 0.66.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/dist/cli/tutorial/sm-tutorial/SKILL.md +1 -1
- package/dist/cli/tutorial/sm-tutorial/references/_core.md +4 -4
- package/dist/cli/tutorial/sm-tutorial/references/part-plugins.md +2 -2
- package/dist/cli/tutorial/sm-tutorial/references/part-project-kickoff.md +2 -2
- package/dist/cli/tutorial/sm-tutorial/references/part-settings.md +1 -1
- package/dist/cli.js +481 -344
- package/dist/conformance/index.js +7 -7
- package/dist/index.js +37 -17
- package/dist/kernel/index.d.ts +63 -28
- package/dist/kernel/index.js +37 -17
- package/dist/ui/{chunk-SR2EXRNN.js → chunk-44VNNUSQ.js} +1 -1
- package/dist/ui/{chunk-FYATUDAH.js → chunk-5BJGO7GH.js} +8 -8
- package/dist/ui/chunk-HEK4PH5A.js +2 -0
- package/dist/ui/{chunk-PEBQMYAG.js → chunk-J4J42HJ4.js} +1 -1
- package/dist/ui/chunk-MSKP5A4B.js +3 -0
- package/dist/ui/{chunk-JEWVC3KW.js → chunk-X6TRIDBI.js} +23 -21
- package/dist/ui/index.html +1 -1
- package/dist/ui/{main-DCL7WTKB.js → main-NCNZHLLJ.js} +3 -3
- package/package.json +2 -2
- package/dist/ui/chunk-UKS6NPIF.js +0 -3
- package/dist/ui/chunk-WDCUTF3U.js +0 -2
|
@@ -305,7 +305,7 @@ the `__PROVIDER__` token and skip kinds the provider does not claim.
|
|
|
305
305
|
(`harness-built` for `connect-harness`, `harness-connected` for
|
|
306
306
|
`daily-loop`).
|
|
307
307
|
3. Provision the lens: the seeded portfolio has a root `AGENTS.md`
|
|
308
|
-
(the `
|
|
308
|
+
(the `codex`/Codex marker) next to `.claude/`, but `codex` is
|
|
309
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`.)
|
|
@@ -260,16 +260,16 @@ on-disk convention:
|
|
|
260
260
|
|----------------|-------------------|-----------------------------|--------------------------------------------------------|
|
|
261
261
|
| `claude` | `.claude/` | `agent`, `command`, `skill` | `CLAUDECODE=1` OR `AI_AGENT` starts with `claude-code` |
|
|
262
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
|
-
| `
|
|
263
|
+
| `codex` | `.codex/` | `agent` (`.codex/agents/*.toml`) | experimental (ships disabled by default) |
|
|
264
264
|
|
|
265
265
|
**Decision logic, applied silently during pre-flight**: the tutorial
|
|
266
|
-
demonstrates the `claude` provider only. `agent-skills` and `
|
|
266
|
+
demonstrates the `claude` provider only. `agent-skills` and `codex`
|
|
267
267
|
are **experimental** (ship disabled by default) and are not selectable
|
|
268
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
|
-
2. Do NOT offer Antigravity / agent-skills /
|
|
272
|
+
2. Do NOT offer Antigravity / agent-skills / codex 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
275
|
that those providers are experimental, the tutorial demos `claude`
|
|
@@ -291,7 +291,7 @@ not claim, and report the adjusted `nodeCount` plus the `skipped`
|
|
|
291
291
|
list in their summary. Today `provider` is always `claude`, so the
|
|
292
292
|
narration uses `.claude/` throughout; the `--provider` plumbing stays
|
|
293
293
|
wired so the coming-soon providers (`agent-skills` / Antigravity,
|
|
294
|
-
`
|
|
294
|
+
`codex`) drop in later without a narrative rewrite. The campaign
|
|
295
295
|
cross-link chapters target `claude` today (see the reality check
|
|
296
296
|
below).
|
|
297
297
|
|
|
@@ -70,7 +70,7 @@ Mark `tour-1-intro: done`.
|
|
|
70
70
|
> Decides what kind each `.md` file is. The `claude` provider,
|
|
71
71
|
> for instance, walks `.claude/` and types each file it finds
|
|
72
72
|
> (agent, command, or skill).
|
|
73
|
-
> Examples: `claude`, `antigravity`, `
|
|
73
|
+
> Examples: `claude`, `antigravity`, `codex`, `agent-skills`.
|
|
74
74
|
>
|
|
75
75
|
> 🔍 **extractor**
|
|
76
76
|
> Reads a node's body and emits structured findings (links,
|
|
@@ -184,7 +184,7 @@ Mark `tour-3-explore: done`.
|
|
|
184
184
|
>
|
|
185
185
|
> - What plugins, extensions, and the six kinds are.
|
|
186
186
|
> - Five plugins ship pre-installed (`claude`, `antigravity`,
|
|
187
|
-
> `
|
|
187
|
+
> `codex`, `agent-skills`, `core`).
|
|
188
188
|
> - How to list, inspect, diagnose, and toggle extensions from
|
|
189
189
|
> the CLI (and the same lives in the UI).
|
|
190
190
|
>
|
|
@@ -29,9 +29,9 @@ pre-flight, so the tester sees only the portfolio. If anything demo
|
|
|
29
29
|
lingers, mention it once and move on.
|
|
30
30
|
|
|
31
31
|
**Context (agent, do not narrate the plumbing): the lens.** This
|
|
32
|
-
project has a root `AGENTS.md` (the `
|
|
32
|
+
project has a root `AGENTS.md` (the `codex`/Codex marker) sitting next
|
|
33
33
|
to the `.claude/` folder (the `claude` marker, where the tutorial skill
|
|
34
|
-
itself lives). `
|
|
34
|
+
itself lives). `codex` 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
|
|
@@ -146,7 +146,7 @@ Expected: the scan prints a line like `Auto-detected activeProvider
|
|
|
146
146
|
.skill-map/settings.json`, and `get` then reports `claude`. The lens
|
|
147
147
|
is just a key in `settings.json`, persisted like any other setting.
|
|
148
148
|
|
|
149
|
-
> Other lenses exist in the engine (`
|
|
149
|
+
> Other lenses exist in the engine (`codex` for Codex,
|
|
150
150
|
> `agent-skills`, `antigravity`), but they are **experimental** (ship
|
|
151
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
|