thinkwell 0.5.5 → 0.5.7

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 (46) hide show
  1. package/dist/agent.d.ts.map +1 -1
  2. package/dist/agent.js +232 -278
  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.d.ts.map +1 -1
  19. package/dist/cli/schema.js +91 -245
  20. package/dist/cli/schema.js.map +1 -1
  21. package/dist/cli/workspace.js +92 -226
  22. package/dist/connectors/index.js +1 -7
  23. package/dist/generated/features.d.ts +6 -0
  24. package/dist/generated/features.d.ts.map +1 -0
  25. package/dist/generated/features.js +5 -0
  26. package/dist/generated/features.js.map +1 -0
  27. package/dist/index.js +0 -5
  28. package/dist/schema.js +3 -36
  29. package/dist/session.js +50 -82
  30. package/dist/think-builder.d.ts.map +1 -1
  31. package/dist/think-builder.js +287 -368
  32. package/dist/think-builder.js.map +1 -1
  33. package/dist/thought-event.d.ts +1 -0
  34. package/dist/thought-event.d.ts.map +1 -1
  35. package/dist/thought-event.js +0 -1
  36. package/dist/thought-stream.js +60 -96
  37. package/dist-pkg/acp.cjs +13386 -1876
  38. package/dist-pkg/cli-build.cjs +264 -446
  39. package/dist-pkg/cli-bundle.cjs +433 -818
  40. package/dist-pkg/cli-check.cjs +302 -499
  41. package/dist-pkg/cli-dependency-check.cjs +39 -82
  42. package/dist-pkg/cli-dependency-errors.cjs +9 -41
  43. package/dist-pkg/cli-loader.cjs +91 -173
  44. package/dist-pkg/protocol.cjs +2 -8
  45. package/dist-pkg/thinkwell.cjs +927 -1846
  46. package/package.json +9 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thinkwell",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
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/conductor": "0.5.5",
44
- "@thinkwell/acp": "0.5.5",
45
- "@thinkwell/protocol": "0.5.5"
43
+ "@thinkwell/acp": "0.5.7",
44
+ "@thinkwell/conductor": "0.5.7",
45
+ "@thinkwell/protocol": "0.5.7"
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",
@@ -81,6 +82,7 @@
81
82
  "build:binary:linux-arm64": "tsx scripts/bundle.ts && tsx scripts/build-binary.ts linux-arm64",
82
83
  "bundle": "tsx scripts/bundle.ts",
83
84
  "clean": "rm -rf dist dist-bin dist-pkg",
84
- "test": "node --test --import tsx src/**/*.test.ts"
85
+ "test": "node --test --import tsx src/**/*.test.ts",
86
+ "test:smoke": "node --test --test-force-exit --test-timeout=180000 --import tsx src/integration.test.ts"
85
87
  }
86
88
  }