@skillcap/gdh 0.9.0 → 0.11.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/INSTALL-BUNDLE.json +1 -1
- package/README.md +12 -5
- package/RELEASE-SPAN-UPDATE-CONTRACTS.json +660 -0
- package/node_modules/@gdh/adapters/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/adapters/dist/index.js +92 -22
- package/node_modules/@gdh/adapters/dist/index.js.map +1 -1
- package/node_modules/@gdh/adapters/package.json +8 -8
- package/node_modules/@gdh/authoring/package.json +2 -2
- package/node_modules/@gdh/cli/dist/index.js +1 -1
- package/node_modules/@gdh/cli/dist/index.js.map +1 -1
- package/node_modules/@gdh/cli/dist/migrate.d.ts +10 -1
- package/node_modules/@gdh/cli/dist/migrate.d.ts.map +1 -1
- package/node_modules/@gdh/cli/dist/migrate.js +141 -23
- package/node_modules/@gdh/cli/dist/migrate.js.map +1 -1
- package/node_modules/@gdh/cli/dist/self-update.d.ts.map +1 -1
- package/node_modules/@gdh/cli/dist/self-update.js +212 -22
- package/node_modules/@gdh/cli/dist/self-update.js.map +1 -1
- package/node_modules/@gdh/cli/dist/setup.d.ts.map +1 -1
- package/node_modules/@gdh/cli/dist/setup.js +2 -22
- package/node_modules/@gdh/cli/dist/setup.js.map +1 -1
- package/node_modules/@gdh/cli/package.json +10 -10
- package/node_modules/@gdh/core/dist/index.d.ts +19 -1
- package/node_modules/@gdh/core/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/core/dist/index.js +3 -0
- package/node_modules/@gdh/core/dist/index.js.map +1 -1
- package/node_modules/@gdh/core/dist/managed-gitignore.d.ts +11 -0
- package/node_modules/@gdh/core/dist/managed-gitignore.d.ts.map +1 -0
- package/node_modules/@gdh/core/dist/managed-gitignore.js +84 -0
- package/node_modules/@gdh/core/dist/managed-gitignore.js.map +1 -0
- package/node_modules/@gdh/core/dist/release-span-preview.d.ts +45 -0
- package/node_modules/@gdh/core/dist/release-span-preview.d.ts.map +1 -0
- package/node_modules/@gdh/core/dist/release-span-preview.js +147 -0
- package/node_modules/@gdh/core/dist/release-span-preview.js.map +1 -0
- package/node_modules/@gdh/core/dist/release-span-update-contract.d.ts +33 -0
- package/node_modules/@gdh/core/dist/release-span-update-contract.d.ts.map +1 -0
- package/node_modules/@gdh/core/dist/release-span-update-contract.js +138 -0
- package/node_modules/@gdh/core/dist/release-span-update-contract.js.map +1 -0
- package/node_modules/@gdh/core/package.json +1 -1
- package/node_modules/@gdh/docs/dist/guidance.d.ts.map +1 -1
- package/node_modules/@gdh/docs/dist/guidance.js +10 -4
- package/node_modules/@gdh/docs/dist/guidance.js.map +1 -1
- package/node_modules/@gdh/docs/package.json +2 -2
- package/node_modules/@gdh/mcp/package.json +8 -8
- package/node_modules/@gdh/observability/package.json +2 -2
- package/node_modules/@gdh/runtime/package.json +2 -2
- package/node_modules/@gdh/scan/dist/index.d.ts +5 -5
- package/node_modules/@gdh/scan/dist/index.d.ts.map +1 -1
- package/node_modules/@gdh/scan/dist/index.js +5 -4
- package/node_modules/@gdh/scan/dist/index.js.map +1 -1
- package/node_modules/@gdh/scan/dist/onboard.d.ts +2 -0
- package/node_modules/@gdh/scan/dist/onboard.d.ts.map +1 -1
- package/node_modules/@gdh/scan/dist/onboard.js +33 -6
- package/node_modules/@gdh/scan/dist/onboard.js.map +1 -1
- package/node_modules/@gdh/scan/package.json +3 -3
- package/node_modules/@gdh/verify/package.json +7 -7
- package/package.json +12 -11
package/INSTALL-BUNDLE.json
CHANGED
package/README.md
CHANGED
|
@@ -12,10 +12,16 @@ GDH detects your Godot project, configures your AI agents, and gives them the co
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```sh
|
|
15
|
-
npx -y @skillcap/gdh@0.
|
|
15
|
+
npx -y @skillcap/gdh@0.11.0 setup
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Replace `0.
|
|
18
|
+
Replace `0.11.0` with the GDH version you want to pin this project to. `gdh setup` records the pinned version in `.gdh/project.yaml`; every managed surface generated from that config invokes GDH at that exact pinned version, so future sessions stay reproducible.
|
|
19
|
+
|
|
20
|
+
From `0.9.0` onward, the shipped package also carries bounded release-span update metadata in `RELEASE-SPAN-UPDATE-CONTRACTS.json` so update flows can explain release-specific migration steps without reading repo-only `docs/releases/` files at target runtime.
|
|
21
|
+
|
|
22
|
+
The current update flow is preview-first and sequential on apply: `gdh self-update --dry-run` emits machine-readable release-span preview data, and approved apply runs one ordered update -> migrate -> validate path. Apply now ends in an explicit terminal class: `healthy`, `follow_up_required`, `manual_review_required`, or `blocked`.
|
|
23
|
+
|
|
24
|
+
Automatic backup and patch reapply for customized managed surfaces are not shipped yet; that preservation work remains future backlog, not part of the current update contract.
|
|
19
25
|
|
|
20
26
|
The full install and update contract lives in [install-and-update.md](docs/development/install-and-update.md).
|
|
21
27
|
|
|
@@ -30,7 +36,7 @@ The full install and update contract lives in [install-and-update.md](docs/devel
|
|
|
30
36
|
|
|
31
37
|
```sh
|
|
32
38
|
# 1. Run setup in your Godot project
|
|
33
|
-
npx -y @skillcap/gdh@0.
|
|
39
|
+
npx -y @skillcap/gdh@0.11.0 setup
|
|
34
40
|
|
|
35
41
|
# 2. Open your AI agent (Claude, Cursor, Codex) in the repo
|
|
36
42
|
|
|
@@ -83,7 +89,7 @@ Normal usage happens through your AI agent, not by memorizing CLI commands.
|
|
|
83
89
|
2. The agent uses GDH surfaces to check readiness, pick validation, run checks
|
|
84
90
|
3. You intervene only for narrow decisions or missing environment input
|
|
85
91
|
|
|
86
|
-
The CLI exists for advanced operators, debugging, and automation. See [Advanced CLI Usage](docs/development/advanced-cli-usage.md).
|
|
92
|
+
The CLI exists for advanced operators, debugging, and automation. Update preview now uses a structured `preview` payload instead of changelog scraping, and update apply surfaces exact terminal follow-up data in `migration` + `terminal`. See [Advanced CLI Usage](docs/development/advanced-cli-usage.md).
|
|
87
93
|
|
|
88
94
|
## Documentation
|
|
89
95
|
|
|
@@ -94,7 +100,7 @@ The CLI exists for advanced operators, debugging, and automation. See [Advanced
|
|
|
94
100
|
|
|
95
101
|
## Status
|
|
96
102
|
|
|
97
|
-
GDH now ships the current `0.
|
|
103
|
+
GDH now ships the current `0.11.0` release line and remains ready for broader internal use within the documented support contract. The current release line is `0.11.0` at the `broader_internal_release` stage.
|
|
98
104
|
|
|
99
105
|
The release-stage label applies only to the documented support window in [runtime-support-matrix.md](docs/development/runtime-support-matrix.md) and [runtime-release-readiness.md](docs/development/runtime-release-readiness.md). It is not a blanket claim that every Godot project shape is supported or that this implementation checkout should behave like a GDH-managed target repo.
|
|
100
106
|
|
|
@@ -120,3 +126,4 @@ If you are working on the GDH implementation repo itself, use these contributor
|
|
|
120
126
|
When cutting a GDH release in this repo with Claude, Codex, or Cursor, use `/gdh-release` so the agent loads the canonical release guidance and runs `corepack yarn check:public-release` before `release:apply`. Use `/gdh-migration-verify` for the dedicated migration-proof step before the final release gate. Use `/gdh-publish` only when you explicitly want an already-cut release published to npm.
|
|
121
127
|
|
|
122
128
|
Release history lives in the generated root [CHANGELOG.md](CHANGELOG.md); curated release notes live under [docs/releases/](docs/releases/README.md).
|
|
129
|
+
Each live release line also carries a machine-readable update contract in [docs/releases/migrations/](docs/releases/migrations/README.md), which is compiled into the packaged `RELEASE-SPAN-UPDATE-CONTRACTS.json` asset for runtime update guidance.
|