@dexto/image-local 1.6.0 → 1.6.1
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/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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dexto/image-local",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
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.1",
|
|
25
|
+
"@dexto/agent-management": "1.6.1",
|
|
26
|
+
"@dexto/core": "1.6.1",
|
|
27
|
+
"@dexto/storage": "1.6.1",
|
|
28
|
+
"@dexto/tools-builtins": "1.6.1",
|
|
29
|
+
"@dexto/tools-filesystem": "1.6.1",
|
|
30
|
+
"@dexto/tools-lifecycle": "1.6.1",
|
|
31
|
+
"@dexto/tools-plan": "1.6.1",
|
|
32
|
+
"@dexto/tools-process": "1.6.1",
|
|
33
|
+
"@dexto/tools-scheduler": "1.6.1",
|
|
34
|
+
"@dexto/tools-todo": "1.6.1"
|
|
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",
|