toolcraft 0.0.93 → 0.0.94
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.
- package/README.md +74 -4
- package/composition.json +1 -1
- package/dist/agent-defs.d.ts +1 -0
- package/dist/agent-defs.js +1 -0
- package/dist/agent-human-in-loop.d.ts +1 -0
- package/dist/agent-human-in-loop.js +1 -0
- package/dist/agent-mcp-config.d.ts +1 -0
- package/dist/agent-mcp-config.js +1 -0
- package/dist/auth-store.d.ts +1 -0
- package/dist/auth-store.js +1 -0
- package/dist/cli.d.ts +4 -1
- package/dist/cli.js +23 -64
- package/dist/composition.json +1 -1
- package/dist/config-mutations.d.ts +1 -0
- package/dist/config-mutations.js +1 -0
- package/dist/frontmatter.d.ts +1 -0
- package/dist/frontmatter.js +1 -0
- package/dist/human-in-loop/gate.d.ts +5 -1
- package/dist/human-in-loop/gate.js +10 -8
- package/dist/human-in-loop/runner.js +1 -28
- package/dist/mcp.d.ts +4 -1
- package/dist/mcp.js +8 -51
- package/dist/process-runner.d.ts +1 -0
- package/dist/process-runner.js +1 -0
- package/dist/runtime/io.d.ts +5 -0
- package/dist/runtime/io.js +50 -0
- package/dist/sdk.d.ts +12 -8
- package/dist/sdk.js +7 -52
- package/dist/task-list.d.ts +1 -0
- package/dist/task-list.js +1 -0
- package/dist/testing/fakes.d.ts +20 -0
- package/dist/testing/fakes.js +83 -0
- package/dist/testing/fixtures.d.ts +8 -0
- package/dist/testing/fixtures.js +248 -0
- package/dist/testing/harness.d.ts +76 -0
- package/dist/testing/harness.js +391 -0
- package/dist/testing/index.d.ts +4 -0
- package/dist/testing/index.js +3 -0
- package/dist/testing/memory-fs.d.ts +11 -0
- package/dist/testing/memory-fs.js +61 -0
- package/dist/testing/parity.d.ts +25 -0
- package/dist/testing/parity.js +384 -0
- package/dist/testing/render-capture.d.ts +6 -0
- package/dist/testing/render-capture.js +54 -0
- package/dist/tiny-mcp-client.d.ts +1 -0
- package/dist/tiny-mcp-client.js +1 -0
- package/node_modules/@poe-code/agent-defs/package.json +2 -0
- package/node_modules/@poe-code/agent-human-in-loop/README.md +12 -2
- package/node_modules/@poe-code/agent-human-in-loop/package.json +2 -0
- package/node_modules/@poe-code/agent-mcp-config/README.md +7 -7
- package/node_modules/@poe-code/agent-mcp-config/package.json +2 -0
- package/node_modules/@poe-code/config-mutations/README.md +8 -8
- package/node_modules/@poe-code/config-mutations/package.json +2 -0
- package/node_modules/@poe-code/frontmatter/README.md +2 -2
- package/node_modules/@poe-code/frontmatter/package.json +2 -0
- package/node_modules/@poe-code/process-runner/README.md +1 -1
- package/node_modules/@poe-code/process-runner/package.json +2 -0
- package/node_modules/@poe-code/task-list/README.md +15 -3
- package/node_modules/@poe-code/task-list/package.json +2 -0
- package/node_modules/auth-store/README.md +15 -0
- package/node_modules/auth-store/package.json +2 -0
- package/node_modules/tiny-mcp-client/README.md +36 -36
- package/node_modules/tiny-mcp-client/package.json +2 -0
- package/node_modules/toolcraft-design/README.md +8 -4
- package/node_modules/toolcraft-design/dist/dashboard/terminal.js +48 -6
- package/node_modules/toolcraft-design/dist/explorer/actions.d.ts +4 -0
- package/node_modules/toolcraft-design/dist/explorer/actions.js +1 -0
- package/node_modules/toolcraft-design/dist/explorer/events.d.ts +4 -0
- package/node_modules/toolcraft-design/dist/explorer/reducer.js +52 -4
- package/node_modules/toolcraft-design/dist/explorer/render/list.js +47 -20
- package/node_modules/toolcraft-design/dist/explorer/render/modal.js +13 -1
- package/node_modules/toolcraft-design/dist/explorer/render/test-fixtures.js +1 -1
- package/node_modules/toolcraft-design/dist/explorer/runtime.js +3 -0
- package/node_modules/toolcraft-design/dist/explorer/state.d.ts +9 -0
- package/node_modules/toolcraft-design/package.json +5 -0
- package/package.json +42 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toolcraft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.94",
|
|
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.
|
|
103
|
+
"toolcraft-schema": "0.0.94",
|
|
64
104
|
"commander": "^13.1.0",
|
|
65
105
|
"fast-string-width": "^3.0.2",
|
|
66
106
|
"fast-wrap-ansi": "^0.2.0",
|