@dexto/image-local 1.6.0 → 1.6.2
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 +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -45,6 +45,7 @@ tools:
|
|
|
45
45
|
Notes:
|
|
46
46
|
- Omit `tools:` to use `image.defaults.tools`.
|
|
47
47
|
- Storage defaults come from `image.defaults.storage` (override with `storage:` in YAML).
|
|
48
|
+
- `filesystem-tools.allowedPaths` defines the static sandbox. In manual mode, attempts to access paths outside the sandbox trigger a directory access approval prompt; if approved, access is granted for the current session or for a single occurrence.
|
|
48
49
|
|
|
49
50
|
## App usage (direct import)
|
|
50
51
|
|
package/dist/index.cjs
CHANGED
|
@@ -100,6 +100,7 @@ const imageLocal = {
|
|
|
100
100
|
{ type: "plan-tools" },
|
|
101
101
|
{ type: "scheduler-tools" },
|
|
102
102
|
{ type: "lifecycle-tools" },
|
|
103
|
+
{ type: "creator-tools" },
|
|
103
104
|
{ type: "agent-spawner" }
|
|
104
105
|
],
|
|
105
106
|
prompts: [
|
|
@@ -139,6 +140,7 @@ const imageLocal = {
|
|
|
139
140
|
"plan-tools": import_tools_plan.planToolsFactory,
|
|
140
141
|
"scheduler-tools": import_tools_scheduler.schedulerToolsFactory,
|
|
141
142
|
"lifecycle-tools": import_tools_lifecycle.lifecycleToolsFactory,
|
|
143
|
+
"creator-tools": import_agent_management.creatorToolsFactory,
|
|
142
144
|
"agent-spawner": import_agent_management.agentSpawnerToolsFactory
|
|
143
145
|
},
|
|
144
146
|
storage: {
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,UAAU,EAOlB,MAAM,qBAAqB,CAAC;AAoF7B,QAAA,MAAM,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,KAAK,UAAU,EAOlB,MAAM,qBAAqB,CAAC;AAoF7B,QAAA,MAAM,UAAU,EAAE,UA0FjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -27,7 +27,7 @@ import { todoToolsFactory } from "@dexto/tools-todo";
|
|
|
27
27
|
import { planToolsFactory } from "@dexto/tools-plan";
|
|
28
28
|
import { schedulerToolsFactory } from "@dexto/tools-scheduler";
|
|
29
29
|
import { lifecycleToolsFactory } from "@dexto/tools-lifecycle";
|
|
30
|
-
import { agentSpawnerToolsFactory } from "@dexto/agent-management";
|
|
30
|
+
import { agentSpawnerToolsFactory, creatorToolsFactory } from "@dexto/agent-management";
|
|
31
31
|
const require2 = createRequire(import.meta.url);
|
|
32
32
|
const packageJson = require2("../package.json");
|
|
33
33
|
const contentPolicyConfigSchema = z.object({
|
|
@@ -93,6 +93,7 @@ const imageLocal = {
|
|
|
93
93
|
{ type: "plan-tools" },
|
|
94
94
|
{ type: "scheduler-tools" },
|
|
95
95
|
{ type: "lifecycle-tools" },
|
|
96
|
+
{ type: "creator-tools" },
|
|
96
97
|
{ type: "agent-spawner" }
|
|
97
98
|
],
|
|
98
99
|
prompts: [
|
|
@@ -132,6 +133,7 @@ const imageLocal = {
|
|
|
132
133
|
"plan-tools": planToolsFactory,
|
|
133
134
|
"scheduler-tools": schedulerToolsFactory,
|
|
134
135
|
"lifecycle-tools": lifecycleToolsFactory,
|
|
136
|
+
"creator-tools": creatorToolsFactory,
|
|
135
137
|
"agent-spawner": agentSpawnerToolsFactory
|
|
136
138
|
},
|
|
137
139
|
storage: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dexto/image-local",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Local development base image for Dexto agents with filesystem and process tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"zod": "^3.25.0",
|
|
24
|
-
"@dexto/agent-config": "1.6.
|
|
25
|
-
"@dexto/agent-management": "1.6.
|
|
26
|
-
"@dexto/core": "1.6.
|
|
27
|
-
"@dexto/storage": "1.6.
|
|
28
|
-
"@dexto/tools-builtins": "1.6.
|
|
29
|
-
"@dexto/tools-filesystem": "1.6.
|
|
30
|
-
"@dexto/tools-lifecycle": "1.6.
|
|
31
|
-
"@dexto/tools-plan": "1.6.
|
|
32
|
-
"@dexto/tools-process": "1.6.
|
|
33
|
-
"@dexto/tools-scheduler": "1.6.
|
|
34
|
-
"@dexto/tools-todo": "1.6.
|
|
24
|
+
"@dexto/agent-config": "1.6.2",
|
|
25
|
+
"@dexto/agent-management": "1.6.2",
|
|
26
|
+
"@dexto/core": "1.6.2",
|
|
27
|
+
"@dexto/storage": "1.6.2",
|
|
28
|
+
"@dexto/tools-builtins": "1.6.2",
|
|
29
|
+
"@dexto/tools-filesystem": "1.6.2",
|
|
30
|
+
"@dexto/tools-lifecycle": "1.6.2",
|
|
31
|
+
"@dexto/tools-plan": "1.6.2",
|
|
32
|
+
"@dexto/tools-process": "1.6.2",
|
|
33
|
+
"@dexto/tools-scheduler": "1.6.2",
|
|
34
|
+
"@dexto/tools-todo": "1.6.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"tsup": "^8.0.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"README.md"
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
|
-
"build": "tsup",
|
|
45
|
+
"build": "tsup && node ../../scripts/clean-tsbuildinfo.mjs && tsc -b tsconfig.json --emitDeclarationOnly",
|
|
46
46
|
"test": "vitest run",
|
|
47
47
|
"test:integ": "vitest run",
|
|
48
48
|
"typecheck": "tsc --noEmit",
|