@skillcap/gdh 0.4.1 → 0.5.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 (58) hide show
  1. package/INSTALL-BUNDLE.json +1 -1
  2. package/README.md +9 -10
  3. package/node_modules/@gdh/adapters/dist/index.d.ts +25 -18
  4. package/node_modules/@gdh/adapters/dist/index.d.ts.map +1 -1
  5. package/node_modules/@gdh/adapters/dist/index.js +374 -145
  6. package/node_modules/@gdh/adapters/dist/index.js.map +1 -1
  7. package/node_modules/@gdh/adapters/package.json +8 -8
  8. package/node_modules/@gdh/authoring/dist/index.d.ts +1 -1
  9. package/node_modules/@gdh/authoring/dist/index.d.ts.map +1 -1
  10. package/node_modules/@gdh/authoring/dist/index.js +1 -1
  11. package/node_modules/@gdh/authoring/dist/index.js.map +1 -1
  12. package/node_modules/@gdh/authoring/dist/project.d.ts +24 -0
  13. package/node_modules/@gdh/authoring/dist/project.d.ts.map +1 -1
  14. package/node_modules/@gdh/authoring/dist/project.js +51 -1
  15. package/node_modules/@gdh/authoring/dist/project.js.map +1 -1
  16. package/node_modules/@gdh/authoring/package.json +2 -2
  17. package/node_modules/@gdh/cli/dist/index.d.ts.map +1 -1
  18. package/node_modules/@gdh/cli/dist/index.js +226 -34
  19. package/node_modules/@gdh/cli/dist/index.js.map +1 -1
  20. package/node_modules/@gdh/cli/dist/migrate.d.ts +1 -0
  21. package/node_modules/@gdh/cli/dist/migrate.d.ts.map +1 -1
  22. package/node_modules/@gdh/cli/dist/migrate.js +180 -72
  23. package/node_modules/@gdh/cli/dist/migrate.js.map +1 -1
  24. package/node_modules/@gdh/cli/dist/setup.d.ts.map +1 -1
  25. package/node_modules/@gdh/cli/dist/setup.js +49 -1
  26. package/node_modules/@gdh/cli/dist/setup.js.map +1 -1
  27. package/node_modules/@gdh/cli/package.json +10 -10
  28. package/node_modules/@gdh/core/dist/index.d.ts +5 -4
  29. package/node_modules/@gdh/core/dist/index.d.ts.map +1 -1
  30. package/node_modules/@gdh/core/dist/index.js +2 -2
  31. package/node_modules/@gdh/core/dist/index.js.map +1 -1
  32. package/node_modules/@gdh/core/package.json +1 -1
  33. package/node_modules/@gdh/docs/dist/guidance.d.ts.map +1 -1
  34. package/node_modules/@gdh/docs/dist/guidance.js +47 -0
  35. package/node_modules/@gdh/docs/dist/guidance.js.map +1 -1
  36. package/node_modules/@gdh/docs/package.json +2 -2
  37. package/node_modules/@gdh/mcp/dist/index.js +6 -2
  38. package/node_modules/@gdh/mcp/dist/index.js.map +1 -1
  39. package/node_modules/@gdh/mcp/package.json +8 -8
  40. package/node_modules/@gdh/observability/dist/guidance-audit.js +1 -0
  41. package/node_modules/@gdh/observability/dist/guidance-audit.js.map +1 -1
  42. package/node_modules/@gdh/observability/package.json +2 -2
  43. package/node_modules/@gdh/runtime/package.json +2 -2
  44. package/node_modules/@gdh/scan/dist/index.d.ts +2 -0
  45. package/node_modules/@gdh/scan/dist/index.d.ts.map +1 -1
  46. package/node_modules/@gdh/scan/dist/index.js +1 -0
  47. package/node_modules/@gdh/scan/dist/index.js.map +1 -1
  48. package/node_modules/@gdh/scan/dist/inventory-cache.d.ts +15 -0
  49. package/node_modules/@gdh/scan/dist/inventory-cache.d.ts.map +1 -0
  50. package/node_modules/@gdh/scan/dist/inventory-cache.js +53 -0
  51. package/node_modules/@gdh/scan/dist/inventory-cache.js.map +1 -0
  52. package/node_modules/@gdh/scan/dist/onboard.d.ts +7 -0
  53. package/node_modules/@gdh/scan/dist/onboard.d.ts.map +1 -1
  54. package/node_modules/@gdh/scan/dist/onboard.js +7 -1
  55. package/node_modules/@gdh/scan/dist/onboard.js.map +1 -1
  56. package/node_modules/@gdh/scan/package.json +3 -3
  57. package/node_modules/@gdh/verify/package.json +7 -7
  58. package/package.json +11 -11
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "product": "GDH",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "installMode": "packaged_install"
5
5
  }
package/README.md CHANGED
@@ -15,9 +15,9 @@ GDH is not a planning system, release orchestrator, or generic code-editing fram
15
15
 
16
16
  ## Status
17
17
 
18
- GDH now ships the current `0.4.1` release line and remains ready for broader internal use within the documented support contract.
18
+ GDH now ships the current `0.5.0` release line and remains ready for broader internal use within the documented support contract.
19
19
 
20
- The current release line is `0.4.1` at the `broader_internal_release` stage.
20
+ The current release line is `0.5.0` at the `broader_internal_release` stage.
21
21
 
22
22
  That 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.
23
23
 
@@ -43,20 +43,19 @@ The install/setup flow below is for using GDH on another target repository.
43
43
 
44
44
  If you are contributing to GDH itself in this repo, start from the contributor docs in [docs/development/install-and-update.md](docs/development/install-and-update.md), [docs/development/conventions.md](docs/development/conventions.md), and [.planning/](.planning/).
45
45
 
46
- GDH supports two install modes:
46
+ GDH is published to npm as `@skillcap/gdh`. The supported install path is to invoke it via `npx` at a pinned version so `gdh setup` can record that exact version in `.gdh/project.yaml` and every managed surface (MCP launcher, agent skills, hooks) runs at the same version.
47
47
 
48
- 1. packaged install for normal operators
49
- 2. dev-from-source for contributors and internal dogfooding
48
+ ```sh
49
+ npx -y @skillcap/gdh@0.4.1 setup
50
+ ```
51
+
52
+ Replace `0.4.1` with the GDH version you want to pin this project to. `gdh setup` records the pinned version in `.gdh/project.yaml` as `gdh_version:`; every managed surface generated from that config invokes GDH at that exact pinned version, so future sessions stay reproducible.
50
53
 
51
54
  The full install and update contract lives in [docs/development/install-and-update.md](docs/development/install-and-update.md).
52
55
 
53
- For the current shipped `0.4.0` line, the one supported public package target is `@skillcap/gdh`, and the supported operator-facing executable is `gdh`.
54
- Maintainers prepare that package by building the generated stage at `dist/publish/gdh`; the repo root stays private, and `packages/cli` remains an internal workspace composition root rather than a direct publish target.
55
- Before maintainers pack or cut a public-facing release from that stage, run `corepack yarn check:public-release` so tarball-install proof and public-package safety gates pass first.
56
+ For the current shipped `0.4.1` line, the one supported public package target is `@skillcap/gdh`, and the supported operator-facing executable is `gdh`.
56
57
  The canonical public git-versus-npm boundary for maintainers lives in [docs/development/open-source-maintainer-contract.md](docs/development/open-source-maintainer-contract.md).
57
58
 
58
- When the shipped line is published to npm, install the package with `npm install -g @skillcap/gdh` and invoke the CLI as `gdh`.
59
-
60
59
  After GDH is installed, the main human entrypoint is:
61
60
 
62
61
  ```sh
@@ -23,6 +23,9 @@ export declare const CURSOR_MIGRATE_SKILL_RELATIVE_PATH = ".cursor/skills/gdh-mi
23
23
  export declare const CURSOR_CHECK_SKILL_RELATIVE_PATH = ".cursor/skills/gdh-check/SKILL.md";
24
24
  export declare const CURSOR_PREPARE_SKILL_RELATIVE_PATH = ".cursor/skills/gdh-prepare/SKILL.md";
25
25
  export declare const CURSOR_VERIFY_SKILL_RELATIVE_PATH = ".cursor/skills/gdh-verify/SKILL.md";
26
+ export declare const CLAUDE_SCAN_COMMAND_RELATIVE_PATH = ".claude/commands/gdh/scan.md";
27
+ export declare const CODEX_SCAN_SKILL_RELATIVE_PATH = ".codex/skills/gdh-scan/SKILL.md";
28
+ export declare const CURSOR_SCAN_SKILL_RELATIVE_PATH = ".cursor/skills/gdh-scan/SKILL.md";
26
29
  export declare const LOCAL_PATH_HINTS_RELATIVE_PATH = ".gdh-state/local-paths.json";
27
30
  export declare const MCP_LAUNCHER_RELATIVE_PATH = ".gdh/bin/gdh-mcp.mjs";
28
31
  export declare const GDH_MCP_SERVER_NAME = "gdh";
@@ -45,22 +48,26 @@ export declare function createGsdSnapshot(targetPath: string, options?: {
45
48
  readonly performed?: readonly GdhValidationKind[];
46
49
  }): Promise<GdhGsdSnapshot>;
47
50
  export declare function renderCursorRule(): string;
48
- export declare function renderClaudeOnboardCommand(): string;
49
- export declare function renderCodexOnboardSkill(): string;
50
- export declare function renderCursorOnboardSkill(): string;
51
- export declare function renderClaudeStatusCommand(): string;
52
- export declare function renderCodexStatusSkill(): string;
53
- export declare function renderCursorStatusSkill(): string;
54
- export declare function renderClaudeMigrateCommand(): string;
55
- export declare function renderCodexMigrateSkill(): string;
56
- export declare function renderCursorMigrateSkill(): string;
57
- export declare function renderClaudeCheckCommand(): string;
58
- export declare function renderCodexCheckSkill(): string;
59
- export declare function renderCursorCheckSkill(): string;
60
- export declare function renderClaudePrepareCommand(): string;
61
- export declare function renderCodexPrepareSkill(): string;
62
- export declare function renderCursorPrepareSkill(): string;
63
- export declare function renderClaudeVerifyCommand(): string;
64
- export declare function renderCodexVerifySkill(): string;
65
- export declare function renderCursorVerifySkill(): string;
51
+ export declare function renderClaudeOnboardCommand(pinnedVersion: string): string;
52
+ export declare function renderCodexOnboardSkill(pinnedVersion: string): string;
53
+ export declare function renderCursorOnboardSkill(pinnedVersion: string): string;
54
+ export declare function renderClaudeStatusCommand(pinnedVersion: string): string;
55
+ export declare function renderCodexStatusSkill(pinnedVersion: string): string;
56
+ export declare function renderCursorStatusSkill(pinnedVersion: string): string;
57
+ export declare function renderClaudeScanCommand(pinnedVersion: string): string;
58
+ export declare function renderCodexScanSkill(pinnedVersion: string): string;
59
+ export declare function renderCursorScanSkill(pinnedVersion: string): string;
60
+ export declare function renderClaudeMigrateCommand(pinnedVersion: string): string;
61
+ export declare function renderCodexMigrateSkill(pinnedVersion: string): string;
62
+ export declare function renderCursorMigrateSkill(pinnedVersion: string): string;
63
+ export declare function renderClaudeCheckCommand(pinnedVersion: string): string;
64
+ export declare function renderCodexCheckSkill(pinnedVersion: string): string;
65
+ export declare function renderCursorCheckSkill(pinnedVersion: string): string;
66
+ export declare function renderClaudePrepareCommand(pinnedVersion: string): string;
67
+ export declare function renderCodexPrepareSkill(pinnedVersion: string): string;
68
+ export declare function renderCursorPrepareSkill(pinnedVersion: string): string;
69
+ export declare function renderClaudeVerifyCommand(pinnedVersion: string): string;
70
+ export declare function renderCodexVerifySkill(pinnedVersion: string): string;
71
+ export declare function renderCursorVerifySkill(pinnedVersion: string): string;
72
+ export declare function renderManagedMcpLauncher(pinnedVersion: string): string;
66
73
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}