@skill-map/cli 0.32.0 → 0.34.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 +27 -7
- package/dist/cli.js +1336 -488
- package/dist/cli.js.map +1 -1
- package/dist/index.js +712 -108
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +217 -3
- package/dist/kernel/index.js +712 -108
- package/dist/kernel/index.js.map +1 -1
- package/dist/migrations/001_initial.sql +2 -2
- package/dist/ui/chunk-2QZDJSJN.js +1 -0
- package/dist/ui/chunk-5CFY2K3Y.js +135 -0
- package/dist/ui/{chunk-YQIWQVJ6.js → chunk-L3OLNVKI.js} +9 -9
- package/dist/ui/chunk-MHWM2642.js +123 -0
- package/dist/ui/{chunk-47OZB7LR.js → chunk-TKV6TXTI.js} +1 -1
- package/dist/ui/{chunk-WJLIYGWJ.js → chunk-UK5YFHL3.js} +1 -1
- package/dist/ui/{chunk-FEPH4VNB.js → chunk-UMCC32EJ.js} +3 -3
- package/dist/ui/{chunk-VDQLDTTR.js → chunk-YZ7KCL3G.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/main-4X6AAGKZ.js +2 -0
- package/migrations/001_initial.sql +2 -2
- package/package.json +3 -2
- package/dist/ui/chunk-BCQZKYOD.js +0 -1
- package/dist/ui/chunk-LS2NXZQZ.js +0 -135
- package/dist/ui/chunk-WCE7MTK5.js +0 -123
- package/dist/ui/main-LJIHL73M.js +0 -2
|
@@ -208,13 +208,14 @@ optional second phase (~20-30 min) covering the rest of the CLI.
|
|
|
208
208
|
|
|
209
209
|
## Provider detection
|
|
210
210
|
|
|
211
|
-
Skill-map ships with
|
|
212
|
-
own on-disk convention:
|
|
211
|
+
Skill-map ships with four built-in vendor providers, each one walks
|
|
212
|
+
its own on-disk convention:
|
|
213
213
|
|
|
214
214
|
| Provider | Base dir | Kinds it claims | Detect via env var(s) |
|
|
215
215
|
|----------------|-----------------------|--------------------------------|------------------------------------------------|
|
|
216
216
|
| `claude` | `.claude/` | `agent`, `command`, `skill` | `CLAUDECODE=1` OR `AI_AGENT` starts with `claude-code` |
|
|
217
217
|
| `gemini` | `.gemini/` | `agent`, `skill` | `GEMINI_CLI=1` OR `AI_AGENT` starts with `gemini` (any equivalent vendor var) |
|
|
218
|
+
| `openai` | `.codex/` | `agent` (`.codex/agents/*.toml`) | no formal env detection yet; the OpenAI Codex CLI does not host this tutorial today (this SKILL.md lives under `.claude/skills/`), so the row is informational. Add when `.codex/skills/<name>/SKILL.md` mirroring lands. |
|
|
218
219
|
| `agent-skills` | `.agents/skills/` | `skill` only (vendor-neutral) | no formal env yet; treat as opt-in if the tester says so |
|
|
219
220
|
|
|
220
221
|
**Decision logic, applied silently during pre-flight**:
|
|
@@ -962,6 +963,14 @@ Tell the tester:
|
|
|
962
963
|
> colours on the canvas (the two `invokes` share a colour, as you
|
|
963
964
|
> would expect).
|
|
964
965
|
>
|
|
966
|
+
> Fijate también que los conectores tienen distinta transparencia.
|
|
967
|
+
> Skill-map estima qué tan seguro está de cada conexión: un
|
|
968
|
+
> `[text](file.md)` que apunta a un archivo concreto (95% de
|
|
969
|
+
> confianza) se ve sólido, mientras que un `@handle` suelto sin
|
|
970
|
+
> extensión (50%, ambiguo) se ve translúcido. La opacidad cuenta
|
|
971
|
+
> esa historia de un vistazo: cuanto más sólido, más confiable es
|
|
972
|
+
> la inferencia.
|
|
973
|
+
>
|
|
965
974
|
> Confirm. If a connector is missing, refresh the browser and tell
|
|
966
975
|
> me.
|
|
967
976
|
|
|
@@ -1084,11 +1093,22 @@ Mark `6-live-ignore: done`.
|
|
|
1084
1093
|
>
|
|
1085
1094
|
> 🔀 **Multi-provider**: this demo ran with the
|
|
1086
1095
|
> `<provider>` provider (base dir `<provider_dir>`). Skill-map
|
|
1087
|
-
> walks
|
|
1088
|
-
> Gemini lives under `.gemini/` (kinds: agent + skill),
|
|
1089
|
-
>
|
|
1090
|
-
>
|
|
1091
|
-
>
|
|
1096
|
+
> walks three other built-in conventions with identical mechanics:
|
|
1097
|
+
> Gemini lives under `.gemini/` (kinds: agent + skill), OpenAI
|
|
1098
|
+
> Codex lives under `.codex/agents/*.toml` (TOML sub-agents), and
|
|
1099
|
+
> the open agent-skills standard lives under `.agents/skills/`
|
|
1100
|
+
> (kind: skill). Drop a `.md` (or `.toml` for Codex) in any of
|
|
1101
|
+
> those and the same watcher picks it up, the same connectors
|
|
1102
|
+
> light up, the same rules run.
|
|
1103
|
+
>
|
|
1104
|
+
> 💡 **Tip avanzado (no toques si no querés rescanear)**: en
|
|
1105
|
+
> Settings → Project hay un dropdown **Active provider** que
|
|
1106
|
+
> selecciona qué lente aplica a TODO el grafo (Claude / Gemini /
|
|
1107
|
+
> Codex / Cursor). Cambiarlo limpia el scan persistido y rearma
|
|
1108
|
+
> el grafo desde cero bajo el nuevo lente, así que sirve cuando
|
|
1109
|
+
> tu proyecto migra de runtime. Por default skill-map autodetecta
|
|
1110
|
+
> el lente correcto al primer scan (en este caso, `claude`
|
|
1111
|
+
> porque hay `.claude/`).
|
|
1092
1112
|
>
|
|
1093
1113
|
> If you want, **we can keep going deeper**: I'll walk you through
|
|
1094
1114
|
> the CLI verbs and flags (`list`, `graph`, `export`, `orphans`,
|