@skillcap/gdh 4.1.0 → 4.2.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/RELEASE-SPAN-UPDATE-CONTRACTS.json +69 -0
  3. package/node_modules/@gdh/adapters/dist/skill-rendering.js +3 -3
  4. package/node_modules/@gdh/adapters/dist/skill-rendering.js.map +1 -1
  5. package/node_modules/@gdh/adapters/package.json +7 -7
  6. package/node_modules/@gdh/authoring/dist/index.d.ts +1 -0
  7. package/node_modules/@gdh/authoring/dist/index.d.ts.map +1 -1
  8. package/node_modules/@gdh/authoring/dist/index.js +1 -0
  9. package/node_modules/@gdh/authoring/dist/index.js.map +1 -1
  10. package/node_modules/@gdh/authoring/dist/lsp-client.d.ts +5 -2
  11. package/node_modules/@gdh/authoring/dist/lsp-client.d.ts.map +1 -1
  12. package/node_modules/@gdh/authoring/dist/lsp-client.js +6 -1
  13. package/node_modules/@gdh/authoring/dist/lsp-client.js.map +1 -1
  14. package/node_modules/@gdh/authoring/dist/lsp-test-server.test-utils.d.ts +3 -0
  15. package/node_modules/@gdh/authoring/dist/lsp-test-server.test-utils.d.ts.map +1 -1
  16. package/node_modules/@gdh/authoring/dist/lsp-test-server.test-utils.js +22 -0
  17. package/node_modules/@gdh/authoring/dist/lsp-test-server.test-utils.js.map +1 -1
  18. package/node_modules/@gdh/authoring/dist/prepare.d.ts.map +1 -1
  19. package/node_modules/@gdh/authoring/dist/prepare.js +104 -12
  20. package/node_modules/@gdh/authoring/dist/prepare.js.map +1 -1
  21. package/node_modules/@gdh/authoring/dist/symbol-navigation.d.ts +23 -0
  22. package/node_modules/@gdh/authoring/dist/symbol-navigation.d.ts.map +1 -0
  23. package/node_modules/@gdh/authoring/dist/symbol-navigation.js +557 -0
  24. package/node_modules/@gdh/authoring/dist/symbol-navigation.js.map +1 -0
  25. package/node_modules/@gdh/authoring/package.json +2 -2
  26. package/node_modules/@gdh/cli/dist/index.d.ts.map +1 -1
  27. package/node_modules/@gdh/cli/dist/index.js +4 -2
  28. package/node_modules/@gdh/cli/dist/index.js.map +1 -1
  29. package/node_modules/@gdh/cli/package.json +11 -11
  30. package/node_modules/@gdh/core/dist/index.d.ts +86 -5
  31. package/node_modules/@gdh/core/dist/index.d.ts.map +1 -1
  32. package/node_modules/@gdh/core/dist/index.js +10 -4
  33. package/node_modules/@gdh/core/dist/index.js.map +1 -1
  34. package/node_modules/@gdh/core/package.json +1 -1
  35. package/node_modules/@gdh/docs/dist/templates/guidance/authoring-and-validation.md.tpl +2 -0
  36. package/node_modules/@gdh/docs/package.json +2 -2
  37. package/node_modules/@gdh/editor/package.json +2 -2
  38. package/node_modules/@gdh/mcp/dist/bridge-tools.d.ts +4 -3
  39. package/node_modules/@gdh/mcp/dist/bridge-tools.d.ts.map +1 -1
  40. package/node_modules/@gdh/mcp/dist/bridge-tools.js +26 -1
  41. package/node_modules/@gdh/mcp/dist/bridge-tools.js.map +1 -1
  42. package/node_modules/@gdh/mcp/dist/index.d.ts.map +1 -1
  43. package/node_modules/@gdh/mcp/dist/index.js +146 -2
  44. package/node_modules/@gdh/mcp/dist/index.js.map +1 -1
  45. package/node_modules/@gdh/mcp/package.json +8 -8
  46. package/node_modules/@gdh/observability/package.json +2 -2
  47. package/node_modules/@gdh/runtime/dist/bridge-broker-client.d.ts +4 -1
  48. package/node_modules/@gdh/runtime/dist/bridge-broker-client.d.ts.map +1 -1
  49. package/node_modules/@gdh/runtime/dist/bridge-broker-client.js +5 -0
  50. package/node_modules/@gdh/runtime/dist/bridge-broker-client.js.map +1 -1
  51. package/node_modules/@gdh/runtime/dist/bridge-broker.d.ts +1 -0
  52. package/node_modules/@gdh/runtime/dist/bridge-broker.d.ts.map +1 -1
  53. package/node_modules/@gdh/runtime/dist/bridge-broker.js +4 -2
  54. package/node_modules/@gdh/runtime/dist/bridge-broker.js.map +1 -1
  55. package/node_modules/@gdh/runtime/package.json +2 -2
  56. package/node_modules/@gdh/scan/package.json +3 -3
  57. package/node_modules/@gdh/verify/package.json +6 -6
  58. package/package.json +12 -12
@@ -11,12 +11,12 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
- "@gdh/authoring": "4.1.0",
15
- "@gdh/core": "4.1.0",
16
- "@gdh/observability": "4.1.0",
17
- "@gdh/runtime": "4.1.0",
18
- "@gdh/scan": "4.1.0",
14
+ "@gdh/authoring": "4.2.0",
15
+ "@gdh/core": "4.2.0",
16
+ "@gdh/observability": "4.2.0",
17
+ "@gdh/runtime": "4.2.0",
18
+ "@gdh/scan": "4.2.0",
19
19
  "yaml": "^2.8.3"
20
20
  },
21
- "version": "4.1.0"
21
+ "version": "4.2.0"
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillcap/gdh",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Godot-specific authoring and validation harness for agentic development.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,18 +31,18 @@
31
31
  "releaseStage": "broader_internal_release"
32
32
  },
33
33
  "dependencies": {
34
- "@gdh/cli": "4.1.0",
34
+ "@gdh/cli": "4.2.0",
35
35
  "@clack/prompts": "^1.2.0",
36
- "@gdh/adapters": "4.1.0",
37
- "@gdh/authoring": "4.1.0",
38
- "@gdh/core": "4.1.0",
39
- "@gdh/docs": "4.1.0",
40
- "@gdh/editor": "4.1.0",
41
- "@gdh/mcp": "4.1.0",
42
- "@gdh/observability": "4.1.0",
43
- "@gdh/runtime": "4.1.0",
44
- "@gdh/scan": "4.1.0",
45
- "@gdh/verify": "4.1.0",
36
+ "@gdh/adapters": "4.2.0",
37
+ "@gdh/authoring": "4.2.0",
38
+ "@gdh/core": "4.2.0",
39
+ "@gdh/docs": "4.2.0",
40
+ "@gdh/editor": "4.2.0",
41
+ "@gdh/mcp": "4.2.0",
42
+ "@gdh/observability": "4.2.0",
43
+ "@gdh/runtime": "4.2.0",
44
+ "@gdh/scan": "4.2.0",
45
+ "@gdh/verify": "4.2.0",
46
46
  "picocolors": "^1.1.1"
47
47
  },
48
48
  "bundledDependencies": [