@skill-map/spec 0.19.0 → 0.20.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +347 -6
  2. package/README.md +6 -6
  3. package/architecture.md +62 -55
  4. package/cli-contract.md +35 -14
  5. package/conformance/README.md +2 -2
  6. package/conformance/cases/kernel-empty-boot.json +2 -2
  7. package/conformance/cases/sidecar-end-to-end.json +3 -3
  8. package/conformance/coverage.md +5 -5
  9. package/conformance/fixtures/sidecar-end-to-end/.claude/agents/orphan.sm +1 -1
  10. package/conformance/fixtures/sidecar-example/agent-example.md +1 -1
  11. package/db-schema.md +18 -17
  12. package/index.json +36 -36
  13. package/interfaces/security-scanner.md +2 -2
  14. package/job-events.md +12 -12
  15. package/job-lifecycle.md +1 -1
  16. package/package.json +1 -1
  17. package/plugin-author-guide.md +112 -81
  18. package/plugin-kv-api.md +5 -5
  19. package/prompt-preamble.md +1 -1
  20. package/schemas/annotations.schema.json +4 -4
  21. package/schemas/api/rest-envelope.schema.json +4 -4
  22. package/schemas/conformance-case.schema.json +2 -2
  23. package/schemas/extensions/analyzer.schema.json +43 -0
  24. package/schemas/extensions/base.schema.json +5 -5
  25. package/schemas/extensions/extractor.schema.json +1 -1
  26. package/schemas/extensions/hook.schema.json +6 -4
  27. package/schemas/issue.schema.json +6 -6
  28. package/schemas/link.schema.json +2 -2
  29. package/schemas/plugins-registry.schema.json +1 -1
  30. package/schemas/project-config.schema.json +15 -1
  31. package/schemas/sidecar.schema.json +2 -2
  32. package/schemas/summaries/agent.schema.json +1 -1
  33. package/schemas/summaries/command.schema.json +1 -1
  34. package/schemas/summaries/hook.schema.json +1 -1
  35. package/schemas/{view-contracts.schema.json → view-slots.schema.json} +91 -54
  36. package/schemas/extensions/rule.schema.json +0 -43
@@ -69,8 +69,8 @@ After every change to the `plugins/` folder, run `sm plugins list` to see the lo
69
69
 
70
70
  The `id` declared in `plugin.json` is **globally unique** across every active discovery root. The kernel enforces this in two places:
71
71
 
72
- 1. **Directory name MUST equal manifest id.** A plugin lives at `<root>/<id>/plugin.json`. If `basename(<plugin-dir>) !== manifest.id`, discovery surfaces the plugin with status `invalid-manifest` and a reason naming both names. This rule eliminates same-root collisions by construction (a filesystem cannot host two siblings with the same name).
73
- 2. **Cross-root id collisions are blocked, both sides.** If two plugins from different roots (project + global, or any combination of `--plugin-dir`) declare the same `id`, **both** receive status `id-collision`. There is no precedence rule — neither plugin loads its extensions; the user resolves the conflict by renaming one and rerunning. Coherent with the spec rule that no extension is privileged.
72
+ 1. **Directory name MUST equal manifest id.** A plugin lives at `<root>/<id>/plugin.json`. If `basename(<plugin-dir>) !== manifest.id`, discovery surfaces the plugin with status `invalid-manifest` and a reason naming both names. This analyzer eliminates same-root collisions by construction (a filesystem cannot host two siblings with the same name).
73
+ 2. **Cross-root id collisions are blocked, both sides.** If two plugins from different roots (project + global, or any combination of `--plugin-dir`) declare the same `id`, **both** receive status `id-collision`. There is no precedence analyzer — neither plugin loads its extensions; the user resolves the conflict by renaming one and rerunning. Coherent with the spec analyzer that no extension is privileged.
74
74
 
75
75
  `sm plugins list` shows the conflict; `sm plugins doctor` exits `1` whenever any `id-collision` is present.
76
76
 
@@ -88,14 +88,14 @@ Concrete examples for the reference impl's bundled extensions:
88
88
  | At-directive extractor | `at-directive` | `core/at-directive` |
89
89
  | Markdown-link extractor | `markdown-link` | `core/markdown-link` |
90
90
  | External-URL counter | `external-url-counter` | `core/external-url-counter` |
91
- | Broken-ref rule | `broken-ref` | `core/broken-ref` |
92
- | Trigger-collision rule | `trigger-collision` | `core/trigger-collision` |
91
+ | Broken-ref analyzer | `broken-ref` | `core/broken-ref` |
92
+ | Trigger-collision analyzer | `trigger-collision` | `core/trigger-collision` |
93
93
  | ASCII formatter | `ascii` | `core/ascii` |
94
- | Validate-all rule | `validate-all` | `core/validate-all` |
94
+ | Validate-all analyzer | `validate-all` | `core/validate-all` |
95
95
 
96
96
  Built-ins split between two namespaces:
97
97
 
98
- - **`core/`** — kernel-internal primitives, platform-agnostic. Owns every built-in rule (including `validate-all`), the ASCII formatter, and the cross-vendor extractors (`annotations`, `slash`, `at-directive`, `markdown-link`, `external-url-counter`) any Provider can rely on.
98
+ - **`core/`** — kernel-internal primitives, platform-agnostic. Owns every built-in analyzer (including `validate-all`), the ASCII formatter, and the cross-vendor extractors (`annotations`, `slash`, `at-directive`, `markdown-link`, `external-url-counter`) any Provider can rely on.
99
99
  - **`claude/`** — the Claude Code Provider bundle: the Provider that classifies `.claude/{agents,commands,skills}` paths and parses their frontmatter. Vendor-specific bundles (`gemini`, `agent-skills`) follow the same shape — Provider only — since the syntax their nodes use is shared with Claude and lives in `core`.
100
100
 
101
101
  For your own plugin, the `id` you declare in `plugin.json` is the namespace for every extension the plugin contains. If your manifest declares `id: "my-plugin"` and your extension file declares `id: "foo-extractor"`, the kernel registers it as `my-plugin/foo-extractor`. You do **not** write the qualifier yourself — the loader injects it.
@@ -111,7 +111,7 @@ What this means in practice:
111
111
  The kernel guards against two foot-guns:
112
112
 
113
113
  - If the extension file injects a `pluginId` field that doesn't match `plugin.json#/id`, the loader emits `invalid-manifest` with a directed reason. The composed qualifier MUST come from `plugin.json` — there is no second source of truth.
114
- - The kebab-case pattern on the extension `id` deliberately forbids `/`. This keeps the rule "the qualifier always lives in the plugin id, never in the extension id" enforced by AJV.
114
+ - The kebab-case pattern on the extension `id` deliberately forbids `/`. This keeps the analyzer "the qualifier always lives in the plugin id, never in the extension id" enforced by AJV.
115
115
 
116
116
  For built-ins, the reference impl's `src/extensions/built-ins.ts` declares each extension's `pluginId` (`core` or `claude`) explicitly — built-ins do not have a `plugin.json`, so the bundle declaration IS the source of truth for their namespace.
117
117
 
@@ -127,7 +127,7 @@ Every plugin and every built-in bundle declares a **granularity** that controls
127
127
  Built-in mapping:
128
128
 
129
129
  - **`claude`** / **`gemini`** / **`agent-skills`** — `granularity: 'bundle'`. Each vendor Provider bundle is enabled or disabled as a whole; today every such bundle ships only its Provider, so the toggle flips classification + frontmatter parsing for that platform.
130
- - **`core`** — `granularity: 'extension'`. `sm plugins disable core/superseded` flips just the supersession rule; every other core extension (every other rule, the ASCII formatter, the cross-vendor extractors) stays live.
130
+ - **`core`** — `granularity: 'extension'`. `sm plugins disable core/superseded` flips just the supersession analyzer; every other core extension (every other analyzer, the ASCII formatter, the cross-vendor extractors) stays live.
131
131
 
132
132
  Per-verb behaviour:
133
133
 
@@ -151,7 +151,7 @@ In your own plugin's `plugin.json`, set `granularity` only when you opt into the
151
151
  "specCompat": "^1.0.0",
152
152
  "granularity": "extension",
153
153
  "extensions": [
154
- "./extensions/orphan-skill-rule.js",
154
+ "./extensions/orphan-skill-analyzer.js",
155
155
  "./extensions/csv-formatter.js"
156
156
  ]
157
157
  }
@@ -252,7 +252,7 @@ The kernel knows six categories. Three are dual-mode (deterministic or probabili
252
252
  |---|---|---|---|---|
253
253
  | `provider` | `walk(roots, opts)` | filesystem roots | `IRawNode[]` | deterministic only |
254
254
  | `extractor` | `extract(ctx)` | one node + body + frontmatter + callbacks | `void` (output via `ctx.emitLink` / `ctx.enrichNode` / `ctx.store`) | deterministic only |
255
- | `rule` | `evaluate(ctx)` | full graph | `Issue[]` | dual-mode |
255
+ | `analyzer` | `evaluate(ctx)` | full graph | `Issue[]` | dual-mode |
256
256
  | `action` | `run(ctx)` | one or more nodes | execution record | dual-mode |
257
257
  | `formatter` | `format(ctx)` | full graph | `string` | deterministic only |
258
258
  | `hook` | `on(ctx)` | a curated lifecycle event payload | `void` (reactions are side effects) | dual-mode |
@@ -261,7 +261,7 @@ The runtime instance you `export default` from an extension file MUST include bo
261
261
 
262
262
  ### Extractors
263
263
 
264
- Pure single-node analysis. **Never** read another node, the graph, or the database — cross-node reasoning is for rules. Spec at [`schemas/extensions/extractor.schema.json`](./schemas/extensions/extractor.schema.json).
264
+ Pure single-node analysis. **Never** read another node, the graph, or the database — cross-node reasoning is for analyzers. Spec at [`schemas/extensions/extractor.schema.json`](./schemas/extensions/extractor.schema.json).
265
265
 
266
266
  The runtime method is `extract(ctx) → void`. Output flows through three callbacks the kernel binds onto the context:
267
267
 
@@ -303,16 +303,16 @@ export default {
303
303
  ```
304
304
 
305
305
 
306
- ### Rules
306
+ ### Analyzers
307
307
 
308
- Cross-node reasoning over the merged graph. Run after every Provider and extractor has completed. Spec at [`schemas/extensions/rule.schema.json`](./schemas/extensions/rule.schema.json).
308
+ Cross-node reasoning over the merged graph. Run after every Provider and extractor has completed. Spec at [`schemas/extensions/analyzer.schema.json`](./schemas/extensions/analyzer.schema.json).
309
309
 
310
- Rules are dual-mode (`deterministic` default; `probabilistic` opt-in via the manifest). Deterministic rules run synchronously inside `sm scan` / `sm check` — same CI-safe baseline as today. Probabilistic rules are dispatched as queued jobs via the kernel's `RunnerPort`; they NEVER participate in the deterministic scan-time pipeline. Until the job subsystem ships at Step 10 the dispatch is stubbed: `sm scan` always skips probabilistic rules silently, and `sm check` exposes them via the opt-in `--include-prob` flag — the verb loads the plugin runtime, finds the registered prob rules (filtered by `--rules` and `-n` if set), and emits a stderr advisory naming them. The flag default is unchanged: deterministic-only, CI-safe. The `--async` companion is reserved for the future encoding (returns job ids without waiting once jobs land); today it is a no-op the advisory simply mentions. The flag does NOT extend to `sm scan` or `sm list`.
310
+ Analyzers are dual-mode (`deterministic` default; `probabilistic` opt-in via the manifest). Deterministic analyzers run synchronously inside `sm scan` / `sm check` — same CI-safe baseline as today. Probabilistic analyzers are dispatched as queued jobs via the kernel's `RunnerPort`; they NEVER participate in the deterministic scan-time pipeline. Until the job subsystem ships at Step 10 the dispatch is stubbed: `sm scan` always skips probabilistic analyzers silently, and `sm check` exposes them via the opt-in `--include-prob` flag — the verb loads the plugin runtime, finds the registered prob analyzers (filtered by `--analyzers` and `-n` if set), and emits a stderr advisory naming them. The flag default is unchanged: deterministic-only, CI-safe. The `--async` companion is reserved for the future encoding (returns job ids without waiting once jobs land); today it is a no-op the advisory simply mentions. The flag does NOT extend to `sm scan` or `sm list`.
311
311
 
312
312
  ```javascript
313
313
  export default {
314
314
  id: 'orphan-skill',
315
- kind: 'rule',
315
+ kind: 'analyzer',
316
316
  version: '1.0.0',
317
317
  description: 'Flags skill nodes with zero inbound links.',
318
318
  evaluate(ctx) {
@@ -323,7 +323,7 @@ export default {
323
323
  return ctx.nodes
324
324
  .filter((n) => n.kind === 'skill' && (inboundCount.get(n.path) ?? 0) === 0)
325
325
  .map((n) => ({
326
- ruleId: 'orphan-skill',
326
+ analyzerId: 'orphan-skill',
327
327
  severity: 'info',
328
328
  message: `Skill ${n.path} has no inbound references.`,
329
329
  nodeIds: [n.path],
@@ -366,7 +366,7 @@ The eight hookable triggers (declaring any other event yields `invalid-manifest`
366
366
  1. `scan.started` — pre-scan setup (one per scan).
367
367
  2. `scan.completed` — post-scan reaction (one per scan).
368
368
  3. `extractor.completed` — aggregated per-Extractor outputs.
369
- 4. `rule.completed` — aggregated per-Rule outputs.
369
+ 4. `analyzer.completed` — aggregated per-Analyzer outputs.
370
370
  5. `action.completed` — Action executed on a node.
371
371
  6. `job.spawning` — pre-spawn of runner subprocess (Step 10).
372
372
  7. `job.completed` — most common trigger (Step 10).
@@ -400,7 +400,7 @@ export default {
400
400
 
401
401
  > **Mode semantics.** Default `mode: 'deterministic'` runs `on(ctx)` in-process during the dispatch of the matching event, synchronously between the event's emission and the next pipeline step. `mode: 'probabilistic'` enqueues the hook as a job; until the job subsystem ships at Step 10, probabilistic hooks load but skip dispatch with a stderr advisory.
402
402
 
403
- > **What hooks CANNOT do.** Hooks REACT to events; they cannot block emission, mutate the graph, alter Extractor / Rule output, or enrich nodes. For graph mutations use `extractor.enrichNode`; for graph reasoning use a Rule; for periodic background work use a probabilistic Action wrapped in a hook that submits the job. The single-responsibility split keeps the kernel's deterministic baseline stable.
403
+ > **What hooks CANNOT do.** Hooks REACT to events; they cannot block emission, mutate the graph, alter Extractor / Analyzer output, or enrich nodes. For graph mutations use `extractor.enrichNode`; for graph reasoning use a Analyzer; for periodic background work use a probabilistic Action wrapped in a hook that submits the job. The single-responsibility split keeps the kernel's deterministic baseline stable.
404
404
 
405
405
  ### Providers / Actions
406
406
 
@@ -452,15 +452,15 @@ Every Provider declares two required top-level fields beyond the manifest base:
452
452
 
453
453
  ## Frontmatter validation — three-tier model
454
454
 
455
- The kernel validates frontmatter on a graduated dial; tighter is opt-in. The model is normative — every conforming implementation MUST honour the three tiers — but the policy lives in **rules**, not the JSON Schemas. The schemas stay shape-only ([`schemas/frontmatter/base.schema.json`](./schemas/frontmatter/base.schema.json) declares `additionalProperties: true` deliberately) so that authors can extend their own nodes without forking the spec. Per-kind frontmatter schemas live with the **Provider** that emits the kind (declared via `provider.kinds[<kind>].schema`); spec only ships the universal `base`.
455
+ The kernel validates frontmatter on a graduated dial; tighter is opt-in. The model is normative — every conforming implementation MUST honour the three tiers — but the policy lives in **analyzers**, not the JSON Schemas. The schemas stay shape-only ([`schemas/frontmatter/base.schema.json`](./schemas/frontmatter/base.schema.json) declares `additionalProperties: true` deliberately) so that authors can extend their own nodes without forking the spec. Per-kind frontmatter schemas live with the **Provider** that emits the kind (declared via `provider.kinds[<kind>].schema`); spec only ships the universal `base`.
456
456
 
457
457
  | Tier | Mechanism | Behavior on unknown / non-conforming fields |
458
458
  |---|---|---|
459
- | **0 — Default permissive** | `additionalProperties: true` on `base.schema.json` and on every per-kind frontmatter schema declared by an installed Provider. | Field passes silently, persists in `node.frontmatter`, and is available to every extension (extractors, rules, actions, formatters). |
460
- | **1 — Built-in `unknown-field` rule** | Deterministic Rule shipped with the kernel. Always active. | Emits an Issue with `severity: 'warn'` for every key outside the documented catalog (base + the matched kind's schema). |
459
+ | **0 — Default permissive** | `additionalProperties: true` on `base.schema.json` and on every per-kind frontmatter schema declared by an installed Provider. | Field passes silently, persists in `node.frontmatter`, and is available to every extension (extractors, analyzers, actions, formatters). |
460
+ | **1 — Built-in `unknown-field` analyzer** | Deterministic Analyzer shipped with the kernel. Always active. | Emits an Issue with `severity: 'warn'` for every key outside the documented catalog (base + the matched kind's schema). |
461
461
  | **2 — Strict mode** | [`schemas/project-config.schema.json`](./schemas/project-config.schema.json) `scan.strict: true` (team default in `settings.json`); also via `--strict` on `sm scan`. | Promotes **all** frontmatter warnings to `severity: 'error'`. They persist in the DB; `sm check` then exits `1` on the next read. CI fails. |
462
462
 
463
- > Tier 1 is normative behavior — the kernel ships the rule out-of-the-box. Disabling it is not a supported configuration; an unknown key that you want to keep is either (a) moved under `metadata.*` (the spec permits free-form keys there), or (b) carried as-is at the cost of a persistent `warn`-severity issue (informational unless you run Tier 2).
463
+ > Tier 1 is normative behavior — the kernel ships the analyzer out-of-the-box. Disabling it is not a supported configuration; an unknown key that you want to keep is either (a) moved under `metadata.*` (the spec permits free-form keys there), or (b) carried as-is at the cost of a persistent `warn`-severity issue (informational unless you run Tier 2).
464
464
 
465
465
  ### Worked example — same node, three tiers
466
466
 
@@ -476,20 +476,20 @@ priority: high # ← author-defined, not in any schema
476
476
  ---
477
477
  ```
478
478
 
479
- **Tier 0 (default permissive — no project config, default scan).** The field validates fine. `node.frontmatter.priority === 'high'` for any extractor / rule / action that reads the node. No issues raised by the schema itself.
479
+ **Tier 0 (default permissive — no project config, default scan).** The field validates fine. `node.frontmatter.priority === 'high'` for any extractor / analyzer / action that reads the node. No issues raised by the schema itself.
480
480
 
481
- **Tier 1 (always-active `unknown-field` rule).** After `sm scan`, the rule emits:
481
+ **Tier 1 (always-active `unknown-field` analyzer).** After `sm scan`, the analyzer emits:
482
482
 
483
483
  ```jsonc
484
484
  {
485
- "ruleId": "unknown-field",
485
+ "analyzerId": "unknown-field",
486
486
  "severity": "warn",
487
- "message": "Unknown frontmatter field 'priority' on skill node 'code-reviewer'. Add it to a custom rule or move it under metadata.* if intentional.",
487
+ "message": "Unknown frontmatter field 'priority' on skill node 'code-reviewer'. Add it to a custom analyzer or move it under metadata.* if intentional.",
488
488
  "nodeIds": ["code-reviewer.md"]
489
489
  }
490
490
  ```
491
491
 
492
- `sm scan` exits `0` (warnings do not fail the verb). The author can either move the key under `metadata.*` — where [`schemas/frontmatter/base.schema.json`](./schemas/frontmatter/base.schema.json) already permits free-form keys, so the `unknown-field` rule does not match — or accept the persistent warning and add a Rule that consumes `priority` for whatever cross-node logic motivated the field.
492
+ `sm scan` exits `0` (warnings do not fail the verb). The author can either move the key under `metadata.*` — where [`schemas/frontmatter/base.schema.json`](./schemas/frontmatter/base.schema.json) already permits free-form keys, so the `unknown-field` analyzer does not match — or accept the persistent warning and add a Analyzer that consumes `priority` for whatever cross-node logic motivated the field.
493
493
 
494
494
  **Tier 2 (strict mode).** Either `scan.strict: true` in `.skill-map/settings.json`, or `sm scan --strict` on the CLI. The same `unknown-field` warning is now persisted at `severity: 'error'`. `sm scan --strict` exits `1` when the issue is created; `sm check` (which reads from the DB) also exits `1` thereafter. CI breaks until the field is reconciled.
495
495
 
@@ -505,15 +505,15 @@ The CLI flag wins when both are set (see the `--strict` description on `sm scan`
505
505
 
506
506
  ### Why no "schema-extender" plugin kind
507
507
 
508
- A reasonable next thought is: "I want my plugin to widen the frontmatter schema so my custom keys are first-class." The spec deliberately rejects that route. The accepted path is to write a deterministic **Rule** that:
508
+ A reasonable next thought is: "I want my plugin to widen the frontmatter schema so my custom keys are first-class." The spec deliberately rejects that route. The accepted path is to write a deterministic **Analyzer** that:
509
509
 
510
510
  1. Reads the candidate keys from `node.frontmatter` (which Tier 0 already exposes).
511
511
  2. Validates them against whatever shape your domain expects (regex, enum, cross-node consistency).
512
512
  3. Emits Issues for violations.
513
513
 
514
- The trade-off is intentional: a "schema-extender" kind would force every consumer (the kernel, the storage layer, every other plugin, the UI) to re-resolve the active schema set per scan. A Rule-driven approach keeps the kernel's parser one-pass and the validation surface composable — the union of every author's rules is the project's policy.
514
+ The trade-off is intentional: a "schema-extender" kind would force every consumer (the kernel, the storage layer, every other plugin, the UI) to re-resolve the active schema set per scan. A Analyzer-driven approach keeps the kernel's parser one-pass and the validation surface composable — the union of every author's analyzers is the project's policy.
515
515
 
516
- If the rule needs to be CI-blocking, the rule itself emits the Issue at `severity: 'error'`. `--strict` / `scan.strict` apply only to the kernel's own frontmatter-shape and `unknown-field` warnings; plugin-authored rules pick their own severity directly.
516
+ If the analyzer needs to be CI-blocking, the analyzer itself emits the Issue at `severity: 'error'`. `--strict` / `scan.strict` apply only to the kernel's own frontmatter-shape and `unknown-field` warnings; plugin-authored analyzers pick their own severity directly.
517
517
 
518
518
  ---
519
519
 
@@ -606,7 +606,7 @@ The kernel validates the row passed to `ctx.store.write(table, row)` against the
606
606
 
607
607
  ## Execution modes
608
608
 
609
- Rule / Action / Hook declare `mode` in the manifest. Action's `mode` is required; Rule and Hook default to `deterministic`. Provider / Extractor / Formatter must NOT declare `mode` — they are deterministic-only by spec.
609
+ Analyzer / Action / Hook declare `mode` in the manifest. Action's `mode` is required; Analyzer and Hook default to `deterministic`. Provider / Extractor / Formatter must NOT declare `mode` — they are deterministic-only by spec.
610
610
 
611
611
  ```jsonc
612
612
  // extractor — deterministic by spec, no mode field
@@ -630,7 +630,7 @@ The full per-kind capability matrix lives in [`architecture.md` §Execution mode
630
630
  npm install --save-dev @skill-map/testkit
631
631
  ```
632
632
 
633
- The testkit ships builders, per-kind context factories, in-memory KV / runner fakes, and high-level `runExtractorOnFixture` / `runRuleOnGraph` / `runFormatterOnGraph` helpers. Most plugin tests reduce to one line per assertion.
633
+ The testkit ships builders, per-kind context factories, in-memory KV / runner fakes, and high-level `runExtractorOnFixture` / `runAnalyzerOnGraph` / `runFormatterOnGraph` helpers. Most plugin tests reduce to one line per assertion.
634
634
 
635
635
  ```javascript
636
636
  import { test } from 'node:test';
@@ -649,7 +649,7 @@ test('emits one reference per [[ref:<name>]] token', async () => {
649
649
  });
650
650
  ```
651
651
 
652
- For rule tests, `runRuleOnGraph(rule, { context: { nodes, links } })` returns the issue array. For formatter tests, `runFormatterOnGraph(formatter, { context: { nodes, links, issues } })` returns the formatted string.
652
+ For analyzer tests, `runAnalyzerOnGraph(analyzer, { context: { nodes, links } })` returns the issue array. For formatter tests, `runFormatterOnGraph(formatter, { context: { nodes, links, issues } })` returns the formatted string.
653
653
 
654
654
  For probabilistic extensions, `makeFakeRunner()` queues canned responses and records every call:
655
655
 
@@ -677,7 +677,7 @@ Full surface in `@skill-map/testkit/index.ts`.
677
677
  | `incompatible-spec` | manifest parsed but `semver.satisfies` failed against the installed spec. | Plugin built against an older / newer spec. |
678
678
  | `invalid-manifest` | `plugin.json` missing, unparseable, AJV-fails, OR the directory name does not equal the manifest id. | Typo, missing required field, wrong shape, mismatched directory name. |
679
679
  | `load-error` | manifest passed but an extension module failed to import or its default export failed schema validation. | Missing `kind` field, wrong `kind` for the file, runtime import error. |
680
- | `id-collision` | two plugins reachable from different roots declared the same `id`. Both collided plugins receive this status; no precedence rule applies. | Project-local plugin and a user-global plugin (or two `--plugin-dir` plugins) sharing an id. Rename one and rerun. |
680
+ | `id-collision` | two plugins reachable from different roots declared the same `id`. Both collided plugins receive this status; no precedence analyzer applies. | Project-local plugin and a user-global plugin (or two `--plugin-dir` plugins) sharing an id. Rename one and rerun. |
681
681
 
682
682
  `sm plugins doctor` runs the full load pass and exits 1 if any plugin is in a non-`loaded` / non-`disabled` state (so any of `incompatible-spec` / `invalid-manifest` / `load-error` / `id-collision` trips it). Wire it into CI to catch breakage early.
683
683
 
@@ -715,7 +715,7 @@ Field-by-field:
715
715
  | `location` | `'namespaced'` \| `'root'` | `'namespaced'` | Where the key lands inside the sidecar (see below). |
716
716
  | `ownership` | `'shared'` \| `'exclusive'` | `'shared'` | Conflict policy. REQUIRED to be `'exclusive'` when `location: 'root'`. |
717
717
 
718
- The `schema` field is **inline** — an object literal in the manifest, not a `$ref` to a file. Aligns with how the extractor / rule / action schemas already declare other inline shapes; avoids an extra path-resolution step at load time.
718
+ The `schema` field is **inline** — an object literal in the manifest, not a `$ref` to a file. Aligns with how the extractor / analyzer / action schemas already declare other inline shapes; avoids an extra path-resolution step at load time.
719
719
 
720
720
  ### Namespacing default vs root opt-in
721
721
 
@@ -742,10 +742,10 @@ auditor:
742
742
  Opting into a top-level (root) key requires `location: 'root'` AND `ownership: 'exclusive'`. The pair travels together — a top-level reserved key cannot be silently shared between plugins, because `.sm` writes deep-merge per the `SidecarStore` contract and a shared root key would route non-deterministically. Use root sparingly: for every plugin that contributes a root key, the kernel reserves that name across the whole installed-plugin surface.
743
743
 
744
744
  ```js
745
- // compliance-plugin/extensions/rule.js
745
+ // compliance-plugin/extensions/analyzer.js
746
746
  export default {
747
747
  id: 'compliance-checker',
748
- kind: 'rule',
748
+ kind: 'analyzer',
749
749
  // ...
750
750
  annotationContributions: {
751
751
  compliance: {
@@ -774,7 +774,7 @@ compliance:
774
774
  dueAt: 2026-12-31T23:59:59Z
775
775
  ```
776
776
 
777
- ### Ownership rules
777
+ ### Ownership analyzers
778
778
 
779
779
  - `shared` (default) — multiple plugins MAY write the same key. Every plugin gets its own namespaced block; `last-write-wins` is per-`(plugin, key)` tuple inside `FilesystemSidecarStore.applyPatch`. Two plugins on the SAME namespaced key from the same plugin id is structurally impossible (one extension per kind per plugin id by spec), so the only collision surface is intra-extension.
780
780
  - `exclusive` — only this plugin may write the key. The kernel rejects any other plugin that tries to claim the same `(key, location: 'root')` tuple as `exclusive`. `exclusive` + `namespaced` is permitted but redundant in practice (the namespace already isolates by plugin id); use it as documentation when you want the manifest to scream "no other plugin should ever write this".
@@ -787,13 +787,13 @@ This is the only fatal path on the plugin-load surface. Every other failure mode
787
787
 
788
788
  ### Tier-1 typo guard (`core/unknown-field`)
789
789
 
790
- The built-in `core/unknown-field` Rule walks every parsed `.sm` and emits a `warn` issue per truly-unknown key. Three surfaces are checked:
790
+ The built-in `core/unknown-field` Analyzer walks every parsed `.sm` and emits a `warn` issue per truly-unknown key. Three surfaces are checked:
791
791
 
792
792
  1. Inside `annotations:` — keys not in `annotations.schema.json`'s curated catalog (the ~25 conventional fields). Plugins do NOT contribute to `annotations:`; that block is skill-map-curated.
793
793
  2. At the sidecar root — keys outside the four reserved blocks (`for`, `annotations`, `settings`, `audit`) that are also NOT a registered plugin namespace `<plugin-id>:` AND NOT a registered `location: 'root'` contribution.
794
794
  3. Inside a registered `<plugin-id>:` namespace — values that fail the schema declared by the owning plugin's `annotationContributions[<key>].schema`.
795
795
 
796
- The rule never blocks a scan; advisories surface through the standard issue channel (CLI, UI, REST). When you ship a contribution, the loader compiles your inline schema, the runtime catalog publishes it, and `core/unknown-field` automatically validates user writes against your declaration.
796
+ The analyzer never blocks a scan; advisories surface through the standard issue channel (CLI, UI, REST). When you ship a contribution, the loader compiles your inline schema, the runtime catalog publishes it, and `core/unknown-field` automatically validates user writes against your declaration.
797
797
 
798
798
  ### Runtime catalog accessor
799
799
 
@@ -810,28 +810,27 @@ Pure read; no side effects. Built-in catalog fields from `annotations.schema.jso
810
810
 
811
811
  ## View contributions
812
812
 
813
- > **Status.** Sibling system to annotation contributions, designed to let plugins surface per-node data in the UI without shipping any UI code. Plugin authors pick a **contract** by name from a closed kernel catalog, declare per-node emissions in their extension manifest, and emit payloads at scan time via `ctx.emitContribution(id, payload)`. The UI maps contracts to slots and renders. See [`architecture.md`](./architecture.md) §View contribution system for the normative contract.
813
+ > **Status.** Sibling system to annotation contributions, designed to let plugins surface per-node data in the UI without shipping any UI code. Plugin authors pick a **slot** by name from a closed kernel catalog; the slot fixes both the renderer and the payload shape. Authors declare per-node emissions in their extension manifest and emit payloads at scan time via `ctx.emitContribution(id, payload)`. See [`architecture.md`](./architecture.md) §View contribution system for the normative contract.
814
814
 
815
815
  ### What it solves
816
816
 
817
- Today, the only way a plugin can surface UI is implicit: extractors emit `Link` (rendered by the kernel-built `linked-nodes-panel`), rules emit `Issue` (rendered by the kernel-built issues panel), providers ship `kinds[*].ui` styling, and one-off plugins write into the sidecar via `annotationContributions`. The moment your extractor wants to surface anything else — a counter on each card, a stat breakdown panel in the inspector, a tree showing parsed structure, a per-node tag — there is no path. View contributions fill that gap. You declare what to surface; the UI decides where and how.
817
+ Today, the only way a plugin can surface UI is implicit: extractors emit `Link` (rendered by the kernel-built `linked-nodes-panel`), analyzers emit `Issue` (rendered by the kernel-built issues panel), providers ship `kinds[*].ui` styling, and one-off plugins write into the sidecar via `annotationContributions`. The moment your extractor wants to surface anything else — a counter on each card, a stat breakdown panel in the inspector, a tree showing parsed structure, a per-node tag — there is no path. View contributions fill that gap. You declare what to surface and where; the kernel validates the payload against the slot's shape and the UI renders.
818
818
 
819
819
  ### What you NEVER write
820
820
 
821
821
  - HTML, CSS, JavaScript, or Angular components.
822
822
  - JSON Schema for your contributions or your settings.
823
- - The slot id where your contribution appears (slots are UI-only).
824
823
  - The renderer component that draws your contribution.
825
824
 
826
825
  You DO write:
827
826
 
828
- - The `contract` name (one of 10 closed-catalog values).
827
+ - The `slot` name (one of 15 closed-catalog values). The slot you pick fixes both where the data renders and what payload shape the kernel will accept.
829
828
  - Optional `label`, `tooltip`, `icon`, `emptyText`, `emitWhenEmpty` per contribution.
830
829
  - The per-node payload your `extract(ctx)` emits via `ctx.emitContribution(...)`.
831
830
 
832
831
  ### Manifest shape
833
832
 
834
- Inside any extension manifest (`IExtractor`, `IRule`, ...), declare a `viewContributions` map next to `annotationContributions`. Each key is your local contribution id; the value picks a contract.
833
+ Inside any extension manifest (`IExtractor`, `IAnalyzer`, ...), declare a `viewContributions` map next to `annotationContributions`. Each key is your local contribution id; the value picks a slot.
835
834
 
836
835
  ```jsonc
837
836
  {
@@ -839,12 +838,12 @@ Inside any extension manifest (`IExtractor`, `IRule`, ...), declare a `viewContr
839
838
  "kind": "extractor",
840
839
  "viewContributions": {
841
840
  "breakdown": {
842
- "contract": "node-breakdown",
841
+ "slot": "inspector.body.panel.breakdown",
843
842
  "label": "Keyword hits",
844
843
  "emptyText": "No matches."
845
844
  },
846
845
  "total": {
847
- "contract": "node-counter",
846
+ "slot": "card.footer.left.counter",
848
847
  "icon": "🔍",
849
848
  "label": "kw",
850
849
  "emitWhenEmpty": false
@@ -853,35 +852,39 @@ Inside any extension manifest (`IExtractor`, `IRule`, ...), declare a `viewContr
853
852
  }
854
853
  ```
855
854
 
856
- Field reference (full schema in [`schemas/view-contracts.schema.json`](./schemas/view-contracts.schema.json) at `$defs/IViewContribution`):
855
+ Field reference (full schema in [`schemas/view-slots.schema.json`](./schemas/view-slots.schema.json) at `$defs/IViewContribution`):
857
856
 
858
857
  | Field | Required | Notes |
859
858
  |---|---|---|
860
- | `contract` | yes | One of the 10 catalog names (see below). Unknown name → `invalid-manifest` at load. |
859
+ | `slot` | yes | One of the 15 catalog names (see below). Unknown name → `invalid-manifest` at load. |
861
860
  | `label` | no | Short human-readable label. English-only per [`AGENTS.md`](../AGENTS.md) (`Externalized texts, not internationalized`). |
862
861
  | `tooltip` | no | Hover tooltip on the chip / panel header. |
863
- | `icon` | no | Single string. If matches Unicode `\p{Extended_Pictographic}` → emoji. Otherwise → PrimeIcons name (no `pi-` prefix). |
862
+ | `icon` | no, but required for counter slots and `card.title.right` | Single string. If matches Unicode `\p{Extended_Pictographic}` → emoji. Otherwise → PrimeIcons name (no `pi-` prefix). |
864
863
  | `emptyText` | no | Text shown when payload is empty AND `emitWhenEmpty: true`. |
865
864
  | `emitWhenEmpty` | no, default `false` | When `false`, kernel drops empty payloads silently so the slot stays clean. |
866
865
 
867
- ### Contract catalog (closed)
866
+ ### Slot catalog (closed)
868
867
 
869
- The kernel ships exactly these 10 contracts. Each has a fixed payload shape and a fixed set of UI slots it surfaces in. Adding a contract requires a spec / UI / scaffolder round-trip — discuss in [`ROADMAP.md`](../ROADMAP.md) before opening a PR.
868
+ The kernel ships exactly these 15 slots. Each slot fixes a renderer + a payload shape; multiple slots may share a payload shape (e.g. all counter slots accept `{ value }`). Adding a slot requires a spec / UI / scaffolder round-trip — discuss in [`ROADMAP.md`](../ROADMAP.md) before opening a PR.
870
869
 
871
- | Contract | Payload shape | Surfaces in |
870
+ | Slot | Payload shape | Renderer |
872
871
  |---|---|---|
873
- | `node-counter` | `{ value: integer ≥ 0, severity?, label?, tooltip? }` | card chip + inspector header badge |
874
- | `node-tag` | `{ label, severity?, tooltip? }` | card chip + inspector header badge |
875
- | `node-breakdown` | `{ entries: Array<{ label, value, tooltip? }> }` (≤ 20) | inspector body (chart-bar) |
876
- | `node-records` | `{ columns: ≤6, rows: ≤50 }` | inspector body (table) |
877
- | `node-tree` | recursive `{ label, marker?, children? }` (depth ≤ 6, total ≤ 200) | inspector body (tree) |
878
- | `node-key-values` | `{ entries: Array<{ key, value, tooltip? }> }` (≤ 50) | inspector body (key-value list) |
879
- | `node-link-list` | `{ entries: Array<{ path, label?, kind? }> }` (≤ 100) | inspector body (link list) |
880
- | `node-markdown` | `{ markdown }` (≤ 4096 chars, sanitized) | inspector body (markdown text) |
881
- | `node-alert` | `{ icon?, severity?, count?, tooltip? }` | graph node corner badge |
882
- | `scope-stat` | `{ value, label?, severity?, tooltip? }` | topbar indicator |
883
-
884
- Per-contract semantics, edge cases, and exact payload schemas live in [`schemas/view-contracts.schema.json`](./schemas/view-contracts.schema.json) at `$defs/payloads/<contract>`. Read that schema before emitting.
872
+ | `card.title.right` | `{ icon?, severity?, tooltip? }` | icon marker (manifest icon required) |
873
+ | `card.subtitle.left` | `{ value: integer ≥ 0, severity?, tooltip? }` | counter chip (manifest icon required) |
874
+ | `card.footer.left.counter` | `{ value: integer 0, severity?, tooltip? }` | counter chip (manifest icon required) |
875
+ | `card.footer.right` | `{ value: integer ≥ 0, severity?, tooltip? }` | counter chip (manifest icon required) |
876
+ | `graph.node.alert` | `{ icon?, severity?, count?, tooltip? }` | graph corner badge |
877
+ | `inspector.header.badge.counter` | `{ value: integer 0, severity?, tooltip? }` | counter chip (manifest icon required) |
878
+ | `inspector.header.badge.tag` | `{ label, severity?, tooltip? }` | tag chip |
879
+ | `inspector.body.panel.breakdown` | `{ entries: Array<{ label, value, tooltip? }> }` (≤ 20) | bar chart panel |
880
+ | `inspector.body.panel.records` | `{ columns: ≤6, rows: ≤50 }` | table panel |
881
+ | `inspector.body.panel.tree` | recursive `{ label, marker?, children? }` (depth ≤ 6, total ≤ 200) | tree panel |
882
+ | `inspector.body.panel.key-values` | `{ entries: Array<{ key, value, tooltip? }> }` (≤ 50) | definition list panel |
883
+ | `inspector.body.panel.link-list` | `{ entries: Array<{ path, label?, kind? }> }` (≤ 100) | clickable list panel |
884
+ | `inspector.body.panel.markdown` | `{ markdown }` (≤ 4096 chars, sanitized) | sanitized markdown panel |
885
+ | `topbar.actions.indicator` | `{ value, label?, severity?, tooltip? }` | scope chip |
886
+
887
+ Per-slot semantics, edge cases, and exact payload schemas live in [`view-slots.md`](./view-slots.md) (catalog reference) and [`schemas/view-slots.schema.json`](./schemas/view-slots.schema.json) at `$defs/payloads/<slot>`. Read those before emitting.
885
888
 
886
889
  ### Emit path
887
890
 
@@ -895,11 +898,39 @@ ctx.emitContribution('breakdown', {
895
898
  ctx.emitContribution('total', { value: total });
896
899
  ```
897
900
 
898
- The first argument is the manifest Record key (`'breakdown'` or `'total'` above), NOT the contract name. The kernel composes the qualified id from your plugin id, extension id, and this Record key.
901
+ The first argument is the manifest Record key (`'breakdown'` or `'total'` above), NOT the slot name. The kernel composes the qualified id from your plugin id, extension id, and this Record key, and looks up the slot you declared in the manifest to validate the payload.
899
902
 
900
- The kernel validates the payload against the contract's payload schema in `view-contracts.schema.json#/$defs/payloads/<contract>`. Off-contract payloads emit an `extension.error` event and drop silently — same posture as `emitLink` rejecting links not in your `emitsLinkKinds`.
903
+ The kernel validates the payload against the slot's payload schema in `view-slots.schema.json#/$defs/payloads/<slot>`. Off-shape payloads emit an `extension.error` event and drop silently — same posture as `emitLink` rejecting links not in your `emitsLinkKinds`.
901
904
 
902
- For `scope-stat`, rules use `ctx.emitScopeContribution(id, payload)` (extractors do not see this method — scope-level emission lives in rule context).
905
+ For `topbar.actions.indicator`, analyzers use `ctx.emitScopeContribution(id, payload)` (extractors do not see this method — scope-level emission lives in analyzer context).
906
+
907
+ ### Multi-slot rendering
908
+
909
+ Want the same data in two surfaces? Declare two contributions, each pointing at a different slot. There is no broadcast — the slot you pick is the slot the data renders in.
910
+
911
+ ```jsonc
912
+ "viewContributions": {
913
+ "mentionsFooter": {
914
+ "slot": "card.footer.left.counter",
915
+ "icon": "@",
916
+ "label": "mentions"
917
+ },
918
+ "mentionsBadge": {
919
+ "slot": "inspector.header.badge.counter",
920
+ "icon": "@",
921
+ "label": "mentions"
922
+ }
923
+ }
924
+ ```
925
+
926
+ Then emit twice (typically with the same value):
927
+
928
+ ```ts
929
+ ctx.emitContribution('mentionsFooter', { value: count });
930
+ ctx.emitContribution('mentionsBadge', { value: count });
931
+ ```
932
+
933
+ This is intentional: one source of truth per surface, no surprise duplication when a renderer changes its mind about which slots to draw in.
903
934
 
904
935
  ### Settings
905
936
 
@@ -950,13 +981,13 @@ The kernel exposes resolved settings to extractors via `ctx.settings.<settingId>
950
981
 
951
982
  ### Catalog version
952
983
 
953
- The catalog of contracts and input-types evolves on its own cadence. Declare a semver range in your manifest:
984
+ The catalog of slots and input-types evolves on its own cadence. Declare a semver range in your manifest:
954
985
 
955
986
  ```jsonc
956
987
  { "catalogCompat": "^1.0.0" }
957
988
  ```
958
989
 
959
- Independent of `specCompat` (the spec version range). Mismatch surfaces as `incompatible-catalog` plugin status; resolution is `sm plugins upgrade <id>`, which runs registered migrations from the kernel's closed migration registry. When auto-migration is impossible (a contract you used was removed entirely), the upgrade verb fails loud (CLI exit ≠ 0 + console message) and your manifest needs a manual edit.
990
+ Independent of `specCompat` (the spec version range). Mismatch surfaces as `incompatible-catalog` plugin status; resolution is `sm plugins upgrade <id>`, which runs registered migrations from the kernel's closed migration registry. When auto-migration is impossible (a slot you used was removed entirely), the upgrade verb fails loud (CLI exit ≠ 0 + console message) and your manifest needs a manual edit.
960
991
 
961
992
  `catalogCompat` is **optional**: omit it if your plugin declares no `viewContributions` and no `settings`. The doctor verb (`sm plugins doctor`) warns if such a plugin actually emits via `viewContributions` or declares `settings`.
962
993
 
@@ -1008,12 +1039,12 @@ export const extractor = {
1008
1039
 
1009
1040
  viewContributions: {
1010
1041
  breakdown: {
1011
- contract: 'node-breakdown',
1042
+ slot: 'inspector.body.panel.breakdown',
1012
1043
  label: 'Keyword hits',
1013
1044
  emptyText: 'No matches.',
1014
1045
  },
1015
1046
  total: {
1016
- contract: 'node-counter',
1047
+ slot: 'card.footer.left.counter',
1017
1048
  icon: '🔍',
1018
1049
  label: 'kw',
1019
1050
  emitWhenEmpty: false,
@@ -1052,7 +1083,7 @@ After `sm scan`, the UI surfaces:
1052
1083
  - A `🔍 N` chip on every node's card (when `total > 0`).
1053
1084
  - A "Keyword hits" panel in the inspector body for every node, with a horizontal bar chart per keyword.
1054
1085
 
1055
- The plugin author wrote zero UI code, zero CSS, zero HTML, zero JSON Schema, and never typed the words "panel", "chip", "renderer", or "slot".
1086
+ The plugin author wrote zero UI code, zero CSS, zero HTML, zero JSON Schema, and zero renderer logic.
1056
1087
 
1057
1088
  ### Scaffolder
1058
1089
 
@@ -1062,18 +1093,18 @@ Hand-writing the manifest is supported but discouraged. Run:
1062
1093
  sm plugins create
1063
1094
  ```
1064
1095
 
1065
- The scaffolder walks you through the closed catalogs (settings + view contributions) and emits a complete plugin directory with manifest, extension stub, test scaffold, and README. Hand-writing remains valid because the spec is the source of truth, but the scaffolder catches invalid contract picks at author time, while a hand-written manifest only fails at load time.
1096
+ The scaffolder walks you through the closed catalogs (settings + view contribution slots) and emits a complete plugin directory with manifest, extension stub, test scaffold, and README. Hand-writing remains valid because the spec is the source of truth, but the scaffolder catches invalid slot picks at author time, while a hand-written manifest only fails at load time.
1066
1097
 
1067
1098
  Companion verbs:
1068
1099
 
1069
- - `sm plugins doctor` — surfaces `incompatible-catalog`, `invalid-manifest`, deprecated-contract usage.
1100
+ - `sm plugins doctor` — surfaces `incompatible-catalog`, `invalid-manifest`, deprecated-slot usage.
1070
1101
  - `sm plugins upgrade <id>` — applies catalog migrations registered in the kernel.
1071
- - `sm plugins contracts list` — prints the catalog (contracts + input-types), flags deprecated entries.
1102
+ - `sm plugins slots list` — prints the catalog (slots + input-types), flags deprecated entries.
1072
1103
 
1073
1104
  ### Watch out for
1074
1105
 
1075
- - **Don't pick a slot.** The plugin author never types `inspector.body.panel`, `card.footer.left`, etc. Slot mapping is a UI decision; if you find yourself wanting to "place" a contribution, you're working against the model.
1076
- - **Don't write JSON Schema.** Settings use `type` from the input-type catalog; view contributions use `contract` from the contract catalog.
1106
+ - **Pick exactly one slot per contribution.** The slot determines both the renderer and the payload shape. If you want the same data in two surfaces (e.g. card chip + inspector badge), declare two contributions in the manifest, one per slot, and emit twice.
1107
+ - **Don't write JSON Schema.** Settings use `type` from the input-type catalog; view contributions use `slot` from the slot catalog.
1077
1108
  - **Don't mutate payloads after emission.** The kernel validates and serializes at emit time; a plugin holding a reference to the emitted payload and mutating it later has undefined behavior.
1078
1109
  - **Don't emit HTML.** `node-markdown` accepts markdown with a sanitized allow-list; `[innerHTML]` bindings in the renderer are lint-banned (see [`context/view-contributions.md`](../context/view-contributions.md)).
1079
1110
  - **Don't try to read another plugin's contributions.** The BFF rejects cross-plugin reads at the route level.
@@ -1084,7 +1115,7 @@ Companion verbs:
1084
1115
 
1085
1116
  - [`architecture.md`](./architecture.md) — extension contract, ports, execution modes.
1086
1117
  - [`plugin-kv-api.md`](./plugin-kv-api.md) — Storage Mode A normative API.
1087
- - [`db-schema.md`](./db-schema.md) — table catalog and migration rules (Mode B).
1118
+ - [`db-schema.md`](./db-schema.md) — table catalog and migration analyzers (Mode B).
1088
1119
  - [`schemas/plugins-registry.schema.json`](./schemas/plugins-registry.schema.json) — normative manifest shape.
1089
1120
  - [`schemas/extensions/*.schema.json`](./schemas/extensions) — per-kind manifest schemas.
1090
1121
 
@@ -1094,8 +1125,8 @@ Companion verbs:
1094
1125
 
1095
1126
  - Document status: **stable** as of spec v1.0.0. Future minor revisions add new sections (e.g. richer testkit coverage when actions gain helpers); breaking edits to the documented surface require a major bump per [`versioning.md`](./versioning.md).
1096
1127
  - The six plugin statuses (`loaded` / `disabled` / `incompatible-spec` / `invalid-manifest` / `load-error` / `id-collision`) are stable; adding a seventh status is a minor bump.
1097
- - The structural rule **directory name MUST equal manifest id** is stable; relaxing it (allowing mismatch) is a major bump.
1098
- - The cross-root id-collision rule (both sides blocked, no precedence) is stable; introducing precedence (e.g. project root wins over global) is a major bump.
1128
+ - The structural analyzer **directory name MUST equal manifest id** is stable; relaxing it (allowing mismatch) is a major bump.
1129
+ - The cross-root id-collision analyzer (both sides blocked, no precedence) is stable; introducing precedence (e.g. project root wins over global) is a major bump.
1099
1130
  - The `granularity` field on `PluginManifest` is stable as introduced. The two values (`bundle` / `extension`) are stable. Adding a third value is a minor bump; changing the default away from `bundle` is a major bump (every existing plugin manifest would silently flip toggle semantics).
1100
1131
  - The optional `applicableKinds` field on the Extractor manifest is stable as introduced. Adding a wildcard syntax (`'*'`) is a minor bump (additive, the existing "absent = all kinds" semantics keeps holding); changing the default away from "applies to every kind" or making the field required is a major bump. Promoting the unknown-kinds doctor warning to a hard load error is a major bump (today's contract is "load OK, surface as warning").
1101
1132
  - The recommended `specCompat` strategy is descriptive prose; revising the recommendation does not require a spec bump as long as the schema stays unchanged.
package/plugin-kv-api.md CHANGED
@@ -102,7 +102,7 @@ Errors MUST NOT leak backend-specific details (SQL strings, file paths) to plugi
102
102
 
103
103
  ## Mode B: dedicated tables
104
104
 
105
- Mode B is governed by [`db-schema.md`](./db-schema.md) (catalog rules + triple protection). This section restates the API surface.
105
+ Mode B is governed by [`db-schema.md`](./db-schema.md) (catalog analyzers + triple protection). This section restates the API surface.
106
106
 
107
107
  ### Declaration
108
108
 
@@ -147,7 +147,7 @@ Mode B plugins MAY call `db.transaction(async (tx) => { ... })`. The kernel prov
147
147
  - Index and constraint prefixes are similarly injected.
148
148
  - A failing plugin migration disables only that plugin (`status: load-error`); other plugins and the kernel continue.
149
149
 
150
- See [`db-schema.md`](./db-schema.md) for the normative migration rules.
150
+ See [`db-schema.md`](./db-schema.md) for the normative migration analyzers.
151
151
 
152
152
  ---
153
153
 
@@ -172,7 +172,7 @@ A plugin MUST declare **exactly one** storage mode. Mixing modes in the same plu
172
172
 
173
173
  ---
174
174
 
175
- ## Visibility rules
175
+ ## Visibility analyzers
176
176
 
177
177
  - A plugin MUST NOT read or write rows outside its scope. Mode A: the accessor is scoped. Mode B: the validator enforces the prefix.
178
178
  - The kernel MAY expose read-only introspection for diagnostics (e.g., `sm plugins show <id> --storage` lists key counts). This is authoritative, not a plugin-level API.
@@ -203,8 +203,8 @@ Post-v1.0 work: signed manifest, sandboxed worker-thread isolation, per-plugin D
203
203
 
204
204
  ## See also
205
205
 
206
- - [`db-schema.md`](./db-schema.md) — table catalog, migration rules, triple protection for mode B.
207
- - [`architecture.md`](./architecture.md) — extension contract rules and `ctx.store` injection via the kernel.
206
+ - [`db-schema.md`](./db-schema.md) — table catalog, migration analyzers, triple protection for mode B.
207
+ - [`architecture.md`](./architecture.md) — extension contract analyzers and `ctx.store` injection via the kernel.
208
208
 
209
209
  ---
210
210
 
@@ -143,7 +143,7 @@ This preamble is a **mitigation**, not a guarantee. A determined attacker can st
143
143
  2. It gives the model a structured place to report suspected injections, so consumers can act (flag the node, re-run with a different model, refuse to summarize).
144
144
  3. It makes injection attempts visible (via the `safety` field in reports) so that deterministic rules can surface patterns over the graph.
145
145
 
146
- Defense-in-depth: the deterministic rule `injection-pattern` (shipped as a built-in rule in the default plugin pack) scans node bodies for known injection patterns independently of the LLM. Neither layer is sufficient alone.
146
+ Defense-in-depth: the deterministic analyzer `injection-pattern` (shipped as a built-in analyzer in the default plugin pack) scans node bodies for known injection patterns independently of the LLM. Neither layer is sufficient alone.
147
147
 
148
148
  ---
149
149
 
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "https://skill-map.dev/spec/v0/annotations.schema.json",
4
4
  "title": "Annotations",
5
- "description": "Catalog of conventional annotation fields skill-map ships out of the box, written into the `annotations:` block of a sidecar (`<basename>.sm`). Every field is OPTIONAL — a sidecar with an empty `annotations: {}` is valid. Schema is `additionalProperties: true` so users / plugins can add custom keys without coordination; the built-in `unknown-field` rule emits a warning on unrecognized keys (typo guard). The curated catalog is the load-bearing 13 fields below — versioning + supersession (`version`, `stability`, `supersedes`, `supersededBy`, `requires`, `conflictsWith`, `related`), provenance (`authors`, `license`, `source`, `sourceVersion`), taxonomy (`tags`), docs (`docsUrl`). The activity timestamp lives in the reserved `audit:` block (`audit.lastBumpedAt`), not in `annotations:`. Plugins that want first-class custom keys with their own validation declare `annotationContributions` in their manifest (see Step 9.6.6).",
5
+ "description": "Catalog of conventional annotation fields skill-map ships out of the box, written into the `annotations:` block of a sidecar (`<basename>.sm`). Every field is OPTIONAL — a sidecar with an empty `annotations: {}` is valid. Schema is `additionalProperties: true` so users / plugins can add custom keys without coordination; the built-in `unknown-field` analyzer emits a warning on unrecognized keys (typo guard). The curated catalog is the load-bearing 13 fields below — versioning + supersession (`version`, `stability`, `supersedes`, `supersededBy`, `requires`, `conflictsWith`, `related`), provenance (`authors`, `license`, `source`, `sourceVersion`), taxonomy (`tags`), docs (`docsUrl`). The activity timestamp lives in the reserved `audit:` block (`audit.lastBumpedAt`), not in `annotations:`. Plugins that want first-class custom keys with their own validation declare `annotationContributions` in their manifest (see Step 9.6.6).",
6
6
  "type": "object",
7
7
  "additionalProperties": true,
8
8
  "properties": {
@@ -19,7 +19,7 @@
19
19
  "supersedes": {
20
20
  "type": "array",
21
21
  "items": { "type": "string", "minLength": 1 },
22
- "description": "Paths (relative to scope root) of nodes this node replaces. Consumed by the built-in `superseded` rule and surfaces in `sm list --superseded`."
22
+ "description": "Paths (relative to scope root) of nodes this node replaces. Consumed by the built-in `superseded` analyzer and surfaces in `sm list --superseded`."
23
23
  },
24
24
  "supersededBy": {
25
25
  "type": "string",
@@ -29,7 +29,7 @@
29
29
  "requires": {
30
30
  "type": "array",
31
31
  "items": { "type": "string", "minLength": 1 },
32
- "description": "Paths (relative to scope root) of nodes this node depends on. Surfaces in the dependency graph; the `broken-ref` rule flags missing targets."
32
+ "description": "Paths (relative to scope root) of nodes this node depends on. Surfaces in the dependency graph; the `broken-ref` analyzer flags missing targets."
33
33
  },
34
34
  "conflictsWith": {
35
35
  "type": "array",
@@ -39,7 +39,7 @@
39
39
  "related": {
40
40
  "type": "array",
41
41
  "items": { "type": "string", "minLength": 1 },
42
- "description": "Paths (relative to scope root) of conceptually related nodes. Soft link for navigation; no strong semantics, no rule enforcement."
42
+ "description": "Paths (relative to scope root) of conceptually related nodes. Soft link for navigation; no strong semantics, no analyzer enforcement."
43
43
  },
44
44
  "authors": {
45
45
  "type": "array",