thinkwell 0.5.4 → 0.5.6

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 (44) hide show
  1. package/dist/agent.d.ts.map +1 -1
  2. package/dist/agent.js +207 -279
  3. package/dist/agent.js.map +1 -1
  4. package/dist/build.js +44 -98
  5. package/dist/cli/build.js +92 -227
  6. package/dist/cli/bundle.js +570 -1136
  7. package/dist/cli/check.js +125 -214
  8. package/dist/cli/commands.js +63 -177
  9. package/dist/cli/compiler-host.js +81 -190
  10. package/dist/cli/dependency-check.js +125 -269
  11. package/dist/cli/dependency-errors.js +12 -84
  12. package/dist/cli/fmt.js +1 -13
  13. package/dist/cli/init-command.js +21 -68
  14. package/dist/cli/init.js +90 -220
  15. package/dist/cli/loader.js +95 -361
  16. package/dist/cli/new-command.js +25 -73
  17. package/dist/cli/package-manager.js +50 -117
  18. package/dist/cli/schema.js +89 -245
  19. package/dist/cli/workspace.js +92 -226
  20. package/dist/connectors/index.js +1 -7
  21. package/dist/generated/features.d.ts +5 -0
  22. package/dist/generated/features.d.ts.map +1 -0
  23. package/dist/generated/features.js +4 -0
  24. package/dist/generated/features.js.map +1 -0
  25. package/dist/index.js +0 -5
  26. package/dist/schema.js +3 -36
  27. package/dist/session.js +50 -82
  28. package/dist/think-builder.d.ts.map +1 -1
  29. package/dist/think-builder.js +269 -370
  30. package/dist/think-builder.js.map +1 -1
  31. package/dist/thought-event.d.ts +1 -0
  32. package/dist/thought-event.d.ts.map +1 -1
  33. package/dist/thought-event.js +0 -1
  34. package/dist/thought-stream.js +60 -96
  35. package/dist-pkg/acp.cjs +13385 -1876
  36. package/dist-pkg/cli-build.cjs +171 -369
  37. package/dist-pkg/cli-bundle.cjs +289 -690
  38. package/dist-pkg/cli-check.cjs +202 -415
  39. package/dist-pkg/cli-dependency-check.cjs +39 -82
  40. package/dist-pkg/cli-dependency-errors.cjs +9 -41
  41. package/dist-pkg/cli-loader.cjs +90 -173
  42. package/dist-pkg/protocol.cjs +2 -8
  43. package/dist-pkg/thinkwell.cjs +876 -1842
  44. package/package.json +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thinkwell",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "TypeScript library for blending deterministic code with LLM-powered reasoning",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,12 +37,12 @@
37
37
  "author": "David Herman",
38
38
  "license": "MIT",
39
39
  "dependencies": {
40
- "@agentclientprotocol/sdk": "^0.12.0",
40
+ "@agentclientprotocol/sdk": "^0.16.1",
41
41
  "ts-json-schema-generator": "^2.4.0",
42
42
  "typescript": "^5.7.2",
43
- "@thinkwell/acp": "0.5.4",
44
- "@thinkwell/conductor": "0.5.4",
45
- "@thinkwell/protocol": "0.5.4"
43
+ "@thinkwell/acp": "0.5.6",
44
+ "@thinkwell/conductor": "0.5.6",
45
+ "@thinkwell/protocol": "0.5.6"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@types/node": "^24.10.4",
@@ -73,7 +73,8 @@
73
73
  "outputPath": "dist-bin"
74
74
  },
75
75
  "scripts": {
76
- "build": "tsc",
76
+ "build": "tsc && tsx ../../scripts/strip-features.ts --mode=release",
77
+ "build:debug": "tsc",
77
78
  "build:binary": "tsx scripts/bundle.ts && tsx scripts/build-binary.ts",
78
79
  "build:binary:darwin-arm64": "tsx scripts/bundle.ts && tsx scripts/build-binary.ts darwin-arm64",
79
80
  "build:binary:darwin-x64": "tsx scripts/bundle.ts && tsx scripts/build-binary.ts darwin-x64",