skillscript-runtime 0.27.3 → 0.31.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/CHANGELOG.md +22 -0
- package/README.md +110 -380
- package/dist/dashboard/spa/app.js +214 -28
- package/dist/dashboard/spa/index.html +16 -0
- package/dist/dashboard/spa/styles.css +182 -44
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/mcp-server.js +5 -1
- package/dist/mcp-server.js.map +1 -1
- package/dist/skill-surface.d.ts +41 -0
- package/dist/skill-surface.d.ts.map +1 -1
- package/dist/skill-surface.js +195 -0
- package/dist/skill-surface.js.map +1 -1
- package/docs/adopter-agent-guide.md +157 -0
- package/docs/configuration.md +5 -5
- package/docs/language-reference.md +10 -10
- package/docs/sqlite-skill-store.md +3 -3
- package/examples/skillscripts/classify-support-ticket.skill.provenance.json +1 -1
- package/examples/skillscripts/data-store-roundtrip.skill.provenance.json +1 -1
- package/examples/skillscripts/doc-qa-with-citations.skill.provenance.json +1 -1
- package/examples/skillscripts/feedback-sentiment-scan.skill.provenance.json +1 -1
- package/examples/skillscripts/hello-world.skill.provenance.json +1 -1
- package/examples/skillscripts/morning-brief.skill.provenance.json +1 -1
- package/examples/skillscripts/queue-length-monitor.skill.provenance.json +1 -1
- package/examples/skillscripts/service-health-watch.skill.provenance.json +1 -1
- package/examples/skillscripts/skill-store-roundtrip.skill.provenance.json +1 -1
- package/examples/skillscripts/youtrack-morning-sweep.skill.provenance.json +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
Each release carries an **Upgrade impact:** line (first in its section) so a bump's requirements are visible at a glance. Tags (closed set): **BREAKING** (a manual change is needed to keep working) · **RE-APPROVE** (secured-mode signature invalidation — skills must be re-approved before they run) · **CONFIG** (`connectors.json` / config edit needed) · **none (additive)** (no action; backward-compatible). Standard from 0.20.0 forward; the pre-0.20 transitions that need action are flagged inline below (0.14.0, 0.18.8, 0.19.0). Full walkthrough: [UPGRADING.md](UPGRADING.md).
|
|
4
4
|
|
|
5
|
+
## 0.31.0 — 2026-07-13 — dashboard approval UX for the non-programmer approver
|
|
6
|
+
|
|
7
|
+
**Upgrade impact:** none (additive). Dashboard + one additive `skill_preflight` field; no breaking change.
|
|
8
|
+
|
|
9
|
+
A pass on the review view to let someone who can't read skillscript understand a skill's blast radius and approve with confidence — "approve on the declared effects, without being the one who could have written the code."
|
|
10
|
+
|
|
11
|
+
- **Dark mode.** The whole dashboard is now a CSS-variable palette with a header toggle (☾/☀); the theme is set before first paint (no flash), follows the OS setting by default, and persists. Light mode is unchanged.
|
|
12
|
+
- **Collapsible review sections.** The approval-decision surface (Status/actions, What this skill touches, Security signals, Source, and the new diagram) always stays open; telemetry/reference (Metrics, Recent fires, Version history, Triggers) collapses by default via native `<details>`; Composes shows only when the skill composes a child.
|
|
13
|
+
- **"What it does, step by step" diagram.** A dependency-ordered SVG flowchart of the skill's actual steps, in the decision surface under "What this skill touches." Targets are boxes joined by branch/merge arrows; ops are plain-language rows ("Read from the data store", "Ask the local model", "Run a bash command") with their key argument; loops and branches nest; each step shows the variable it produces (`→ VAR`) so data flow is traceable; steps that change data / run commands are marked; composed skills link through to their own review view; the entry/default target is flagged (`result` when it runs last, `default` when single-target). Drawn client-side — no diagram dependency added. The CLI's `skillfile diagram` still emits Mermaid text.
|
|
14
|
+
- **New `skill_preflight` field:** `contract.flow` — the structured control-flow (targets, plain-language steps, dependencies) the diagram is drawn from. Single-skill only (not added to `skill_list`, to keep the catalog lean).
|
|
15
|
+
- **Fix:** the dashboard no longer resets scroll position (or flashes "Loading…") on its 30-second poll when re-rendering the same view.
|
|
16
|
+
|
|
17
|
+
## 0.30.0 — 2026-07-10 — public launch cut
|
|
18
|
+
|
|
19
|
+
**Upgrade impact:** none (additive). Documentation only; no runtime, API, or behavior change.
|
|
20
|
+
|
|
21
|
+
The public-announcement release. A final leakage-scrub pass over the shipped docs, closing the coverage gap the 0.27.3 audit left, so no doc names an internal substrate as an example.
|
|
22
|
+
|
|
23
|
+
- **`sqlite-skill-store.md` (npm-shipped): removed AMP from the three substrate examples** the 0.27.3 audit didn't cover — the "choose your substrate" list (`AMP, Pinecone, S3, Postgres…` → `Pinecone, S3, Postgres, Redis…`), the forking-checklist class-rename example (`AmpSkillStore` → `RedisSkillStore`), and the `manifest()` example (`kind: "amp"` → `kind: "postgres"`). Example-name swaps only; no structural change.
|
|
24
|
+
- **`configuration.md`: genericized two AMP-named examples** — the `connectors.json` `${VAR}`-substitution example (an `"amp"` connector using `${AMP_ENDPOINT}`/`${AMP_TOKEN}` → a generic `"memory"` connector using `${MEMORY_ENDPOINT}`/`${MEMORY_TOKEN}`) and an inline `_comment` ("AMP-style dogfooding" → "local dogfooding").
|
|
25
|
+
- **`language-reference.md` re-rendered from atoms** — the worked-example op dispatches that previously used `$ amp.*` connector calls (mailbox / memory-write / query) now use `$ github.*` / `$ linear.*`, and the substrate-neutrality note lists `$ github.*` / `$ linear.*` as the "substrate-specific tools the adopter declares" example. The "Source of truth: AMP" provenance footer is intentionally retained.
|
|
26
|
+
|
|
5
27
|
## 0.27.3 — 2026-07-10 — dashboard highlighter fix + adopter-facing docs audit
|
|
6
28
|
|
|
7
29
|
**Upgrade impact:** none (additive). One dashboard rendering fix + docs; no runtime behavior change.
|