@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.
@@ -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 three built-in providers, each one walks its
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 two other built-in conventions with identical mechanics:
1088
- > Gemini lives under `.gemini/` (kinds: agent + skill), and the
1089
- > open agent-skills standard lives under `.agents/skills/` (kind:
1090
- > skill). Drop a `.md` in any of those and the same watcher
1091
- > picks it up, the same connectors light up, the same rules run.
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`,