toolcraft 0.0.93 → 0.0.95

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 (76) hide show
  1. package/README.md +74 -4
  2. package/composition.json +1 -1
  3. package/dist/agent-defs.d.ts +1 -0
  4. package/dist/agent-defs.js +1 -0
  5. package/dist/agent-human-in-loop.d.ts +1 -0
  6. package/dist/agent-human-in-loop.js +1 -0
  7. package/dist/agent-mcp-config.d.ts +1 -0
  8. package/dist/agent-mcp-config.js +1 -0
  9. package/dist/auth-store.d.ts +1 -0
  10. package/dist/auth-store.js +1 -0
  11. package/dist/cli.d.ts +4 -1
  12. package/dist/cli.js +24 -65
  13. package/dist/composition.json +1 -1
  14. package/dist/config-mutations.d.ts +1 -0
  15. package/dist/config-mutations.js +1 -0
  16. package/dist/frontmatter.d.ts +1 -0
  17. package/dist/frontmatter.js +1 -0
  18. package/dist/human-in-loop/gate.d.ts +5 -1
  19. package/dist/human-in-loop/gate.js +10 -8
  20. package/dist/human-in-loop/runner.js +1 -28
  21. package/dist/mcp.d.ts +4 -1
  22. package/dist/mcp.js +8 -51
  23. package/dist/process-runner.d.ts +1 -0
  24. package/dist/process-runner.js +1 -0
  25. package/dist/runtime/io.d.ts +5 -0
  26. package/dist/runtime/io.js +50 -0
  27. package/dist/sdk.d.ts +12 -8
  28. package/dist/sdk.js +7 -52
  29. package/dist/task-list.d.ts +1 -0
  30. package/dist/task-list.js +1 -0
  31. package/dist/testing/fakes.d.ts +20 -0
  32. package/dist/testing/fakes.js +83 -0
  33. package/dist/testing/fixtures.d.ts +8 -0
  34. package/dist/testing/fixtures.js +248 -0
  35. package/dist/testing/harness.d.ts +76 -0
  36. package/dist/testing/harness.js +391 -0
  37. package/dist/testing/index.d.ts +4 -0
  38. package/dist/testing/index.js +3 -0
  39. package/dist/testing/memory-fs.d.ts +11 -0
  40. package/dist/testing/memory-fs.js +61 -0
  41. package/dist/testing/parity.d.ts +25 -0
  42. package/dist/testing/parity.js +384 -0
  43. package/dist/testing/render-capture.d.ts +6 -0
  44. package/dist/testing/render-capture.js +54 -0
  45. package/dist/tiny-mcp-client.d.ts +1 -0
  46. package/dist/tiny-mcp-client.js +1 -0
  47. package/node_modules/@poe-code/agent-defs/package.json +2 -0
  48. package/node_modules/@poe-code/agent-human-in-loop/README.md +12 -2
  49. package/node_modules/@poe-code/agent-human-in-loop/package.json +2 -0
  50. package/node_modules/@poe-code/agent-mcp-config/README.md +7 -7
  51. package/node_modules/@poe-code/agent-mcp-config/package.json +2 -0
  52. package/node_modules/@poe-code/config-mutations/README.md +8 -8
  53. package/node_modules/@poe-code/config-mutations/package.json +2 -0
  54. package/node_modules/@poe-code/frontmatter/README.md +2 -2
  55. package/node_modules/@poe-code/frontmatter/package.json +2 -0
  56. package/node_modules/@poe-code/process-runner/README.md +1 -1
  57. package/node_modules/@poe-code/process-runner/package.json +2 -0
  58. package/node_modules/@poe-code/task-list/README.md +15 -3
  59. package/node_modules/@poe-code/task-list/package.json +2 -0
  60. package/node_modules/auth-store/README.md +15 -0
  61. package/node_modules/auth-store/package.json +2 -0
  62. package/node_modules/tiny-mcp-client/README.md +36 -36
  63. package/node_modules/tiny-mcp-client/package.json +2 -0
  64. package/node_modules/toolcraft-design/README.md +8 -4
  65. package/node_modules/toolcraft-design/dist/dashboard/terminal.js +48 -6
  66. package/node_modules/toolcraft-design/dist/explorer/actions.d.ts +4 -0
  67. package/node_modules/toolcraft-design/dist/explorer/actions.js +1 -0
  68. package/node_modules/toolcraft-design/dist/explorer/events.d.ts +4 -0
  69. package/node_modules/toolcraft-design/dist/explorer/reducer.js +52 -4
  70. package/node_modules/toolcraft-design/dist/explorer/render/list.js +47 -20
  71. package/node_modules/toolcraft-design/dist/explorer/render/modal.js +13 -1
  72. package/node_modules/toolcraft-design/dist/explorer/render/test-fixtures.js +1 -1
  73. package/node_modules/toolcraft-design/dist/explorer/runtime.js +3 -0
  74. package/node_modules/toolcraft-design/dist/explorer/state.d.ts +9 -0
  75. package/node_modules/toolcraft-design/package.json +5 -0
  76. package/package.json +42 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolcraft",
3
- "version": "0.0.93",
3
+ "version": "0.0.95",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,6 +18,26 @@
18
18
  "types": "./dist/composition.d.ts",
19
19
  "import": "./dist/composition.js"
20
20
  },
21
+ "./agent-defs": {
22
+ "types": "./dist/agent-defs.d.ts",
23
+ "import": "./dist/agent-defs.js"
24
+ },
25
+ "./agent-human-in-loop": {
26
+ "types": "./dist/agent-human-in-loop.d.ts",
27
+ "import": "./dist/agent-human-in-loop.js"
28
+ },
29
+ "./agent-mcp-config": {
30
+ "types": "./dist/agent-mcp-config.d.ts",
31
+ "import": "./dist/agent-mcp-config.js"
32
+ },
33
+ "./auth-store": {
34
+ "types": "./dist/auth-store.d.ts",
35
+ "import": "./dist/auth-store.js"
36
+ },
37
+ "./config-mutations": {
38
+ "types": "./dist/config-mutations.d.ts",
39
+ "import": "./dist/config-mutations.js"
40
+ },
21
41
  "./design": {
22
42
  "types": "./dist/design.d.ts",
23
43
  "import": "./dist/design.js"
@@ -46,9 +66,29 @@
46
66
  "types": "./dist/human-in-loop/index.d.ts",
47
67
  "import": "./dist/human-in-loop/index.js"
48
68
  },
69
+ "./frontmatter": {
70
+ "types": "./dist/frontmatter.d.ts",
71
+ "import": "./dist/frontmatter.js"
72
+ },
73
+ "./process-runner": {
74
+ "types": "./dist/process-runner.d.ts",
75
+ "import": "./dist/process-runner.js"
76
+ },
49
77
  "./source-snippet": {
50
78
  "types": "./dist/source-snippet.d.ts",
51
79
  "import": "./dist/source-snippet.js"
80
+ },
81
+ "./testing": {
82
+ "types": "./dist/testing/index.d.ts",
83
+ "import": "./dist/testing/index.js"
84
+ },
85
+ "./task-list": {
86
+ "types": "./dist/task-list.d.ts",
87
+ "import": "./dist/task-list.js"
88
+ },
89
+ "./tiny-mcp-client": {
90
+ "types": "./dist/tiny-mcp-client.d.ts",
91
+ "import": "./dist/tiny-mcp-client.js"
52
92
  }
53
93
  },
54
94
  "scripts": {
@@ -60,7 +100,7 @@
60
100
  "postpack": "node ../../scripts/manage-bundled-workspace-deps.mjs cleanup . toolcraft-design @poe-code/frontmatter @poe-code/agent-mcp-config @poe-code/agent-human-in-loop @poe-code/task-list @poe-code/agent-defs @poe-code/config-mutations @poe-code/process-runner tiny-mcp-client auth-store"
61
101
  },
62
102
  "dependencies": {
63
- "toolcraft-schema": "0.0.93",
103
+ "toolcraft-schema": "0.0.95",
64
104
  "commander": "^13.1.0",
65
105
  "fast-string-width": "^3.0.2",
66
106
  "fast-wrap-ansi": "^0.2.0",