@skill-map/cli 0.36.0 → 0.37.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 +65 -8
- package/dist/cli.js +2342 -757
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +245 -14
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +208 -2
- package/dist/kernel/index.js +245 -14
- package/dist/kernel/index.js.map +1 -1
- package/dist/migrations/001_initial.sql +26 -0
- package/dist/ui/chunk-DGXHJVQN.js +317 -0
- package/dist/ui/{chunk-TKV6TXTI.js → chunk-GX2V3PSZ.js} +1 -1
- package/dist/ui/{chunk-GQ5YNA5Q.js → chunk-O2N4CRRW.js} +4 -4
- package/dist/ui/{chunk-FQOZBFJ5.js → chunk-S2NIJM7Z.js} +2 -2
- package/dist/ui/{chunk-KJQEO6P3.js → chunk-VFYNKTSB.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/{main-MGFSWAOX.js → main-YSELA4XD.js} +2 -2
- package/migrations/001_initial.sql +26 -0
- package/package.json +3 -3
- package/dist/ui/chunk-L3OLNVKI.js +0 -317
|
@@ -967,11 +967,21 @@ Tell the tester:
|
|
|
967
967
|
>
|
|
968
968
|
> Fijate también que los conectores tienen distinta transparencia.
|
|
969
969
|
> Skill-map estima qué tan seguro está de cada conexión: un
|
|
970
|
-
> `[text](file.md)` que apunta a un archivo concreto (
|
|
971
|
-
> confianza) se ve sólido, mientras que
|
|
972
|
-
>
|
|
973
|
-
>
|
|
974
|
-
> la inferencia
|
|
970
|
+
> `[text](file.md)` que apunta a un archivo concreto (1.00 de
|
|
971
|
+
> confianza, ahora que el target existe) se ve sólido, mientras que
|
|
972
|
+
> un `@handle` que no resuelve a ningún nodo se queda en 0.5
|
|
973
|
+
> (ambiguo) y se ve translúcido. La opacidad cuenta esa historia de
|
|
974
|
+
> un vistazo: cuanto más sólido, más confiable es la inferencia, y
|
|
975
|
+
> el badge numérico arriba del conector lo dice explícito.
|
|
976
|
+
>
|
|
977
|
+
> 🆕 Mirá también las cards de los nodos: ahora cada nodo muestra
|
|
978
|
+
> dos pequeñas chips abajo a la izquierda, ↑ y ↓, que cuentan los
|
|
979
|
+
> links entrantes y salientes. `notes/todo` ahora marca 0↑ / 4↓
|
|
980
|
+
> (es el hub que apunta a cuatro nodos), y los cuatro nodos
|
|
981
|
+
> apuntados muestran 1↑ cada uno. Pasale el mouse a una chip y se
|
|
982
|
+
> abre un tooltip con el desglose por kind (`mentions`, `invokes`,
|
|
983
|
+
> `references`). Es la misma info que el grafo, resumida en la
|
|
984
|
+
> card por si trabajás desde la list view.
|
|
975
985
|
>
|
|
976
986
|
> Confirm. If a connector is missing, refresh the browser and tell
|
|
977
987
|
> me.
|
|
@@ -1112,9 +1122,23 @@ Mark `6-live-ignore: done`.
|
|
|
1112
1122
|
> persistido y rearma el grafo desde cero bajo el nuevo lente, así
|
|
1113
1123
|
> que sirve cuando tu proyecto migra de runtime. Por default
|
|
1114
1124
|
> skill-map autodetecta el lente correcto al primer scan (en este
|
|
1115
|
-
> caso, `claude` porque hay `.claude/`)
|
|
1116
|
-
>
|
|
1117
|
-
>
|
|
1125
|
+
> caso, `claude` porque hay `.claude/`); si tu repo tiene markers
|
|
1126
|
+
> ambiguos (`.claude/` + `.codex/` al mismo tiempo) `sm scan` te
|
|
1127
|
+
> pregunta cuál usar, o aborta con exit 2 si pasás `--yes` y todavía
|
|
1128
|
+
> está ambiguo. El lente `antigravity` no se auto-detecta (Google
|
|
1129
|
+
> adoptó el open standard sin marker propio); seleccionarlo es
|
|
1130
|
+
> manual.
|
|
1131
|
+
>
|
|
1132
|
+
> 🛡️ **Red de seguridad**: si en algún momento desactivás el bundle
|
|
1133
|
+
> al que apunta el lente activo (por ejemplo `sm plugins disable
|
|
1134
|
+
> claude` con `activeProvider: claude`), el próximo `sm scan` te
|
|
1135
|
+
> avisa con un warning explícito ("the active lens points at a
|
|
1136
|
+
> disabled bundle") y te ofrece los dos arreglos: reactivar el
|
|
1137
|
+
> bundle o cambiar el lente. Lo mismo si la DB local quedó vieja
|
|
1138
|
+
> respecto del binario, el open de SQLite detecta el skew de
|
|
1139
|
+
> versiones y te dice qué correr para refrescarla. Tip: si ves uno
|
|
1140
|
+
> de esos warnings durante el tutorial, NO los ignores, son la
|
|
1141
|
+
> señal de que el grafo no refleja lo que vos esperás.
|
|
1118
1142
|
>
|
|
1119
1143
|
> If you want, **we can keep going deeper**: I'll walk you through
|
|
1120
1144
|
> the CLI verbs and flags (`list`, `graph`, `export`, `orphans`,
|
|
@@ -1234,6 +1258,17 @@ We'll plant one and watch it surface, that's the easiest way to
|
|
|
1234
1258
|
internalise that it is an **issue** on a node, NOT a graph
|
|
1235
1259
|
connector and NOT the same thing as an "orphan".
|
|
1236
1260
|
|
|
1261
|
+
> ℹ️ `broken-ref` is one of ~16 built-in rules. Others surface
|
|
1262
|
+
> different families: `core/reserved-name` (a file shadows a vendor
|
|
1263
|
+
> built-in like `/help`), `core/self-loop` (a node links to itself),
|
|
1264
|
+
> `core/redundant-target-reference` (two surfaces in the same body
|
|
1265
|
+
> point at the same target), `core/signal-collision` (two extractors
|
|
1266
|
+
> detected the SAME byte range with different interpretations, the
|
|
1267
|
+
> resolver picked one and the warning explains who lost and why).
|
|
1268
|
+
> Same `sm check --analyzers <id>` pattern works for any of them.
|
|
1269
|
+
> We will not plant fixtures for the rest, the broken-ref demo
|
|
1270
|
+
> covers the mechanics.
|
|
1271
|
+
|
|
1237
1272
|
Ask the tester to **append one bullet** to `notes/todo.md`:
|
|
1238
1273
|
|
|
1239
1274
|
```markdown
|
|
@@ -1405,6 +1440,28 @@ the id to `disable` / `enable`. Per-extension toggles only work on
|
|
|
1405
1440
|
extension-granularity bundles like `core`; the `claude` bundle is
|
|
1406
1441
|
bundle-granularity and only accepts the bundle id.
|
|
1407
1442
|
|
|
1443
|
+
**Multiple ids in one call**: both verbs accept any number of ids
|
|
1444
|
+
in a single invocation, e.g. `sm plugins disable antigravity openai
|
|
1445
|
+
agent-skills` or `sm plugins enable claude core/external-url-counter`.
|
|
1446
|
+
Batches are all-or-nothing: if any id is unknown or
|
|
1447
|
+
granularity-mismatched the entire call aborts before any
|
|
1448
|
+
`config_plugins` write, so the user never lands in a partial state.
|
|
1449
|
+
Repeated ids are deduped; locked plugins inside a batch are
|
|
1450
|
+
silently skipped (matching `--all` semantics).
|
|
1451
|
+
|
|
1452
|
+
### Reserved names (e.g. `commands/help.md`)
|
|
1453
|
+
|
|
1454
|
+
If the tester ever names a file after a built-in (`/help`,
|
|
1455
|
+
`/clear`, `/init`, `/agents`, `/model`, or one of the documented
|
|
1456
|
+
agent reservations like `general-purpose`), `sm check` surfaces a
|
|
1457
|
+
`reserved-name` warning. The vendor runtime ignores user-owned
|
|
1458
|
+
files that shadow its built-ins, so the warning is not a bug,
|
|
1459
|
+
it's skill-map telling the operator "Claude will never invoke this
|
|
1460
|
+
file; pick another name". Incoming links to the shadowed file
|
|
1461
|
+
resolve at confidence `0.1` instead of `1.0`, so the graph also
|
|
1462
|
+
visually de-emphasises them. Rename the file and the warning
|
|
1463
|
+
clears on the next scan.
|
|
1464
|
+
|
|
1408
1465
|
### `sm sidecar annotate` vs `sm bump` vs `sm sidecar refresh`
|
|
1409
1466
|
|
|
1410
1467
|
- `sm sidecar annotate` is the scaffold verb (creates a fresh
|