@dexto/image-local 1.6.1 → 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/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: {
@@ -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,UAwFjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
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.1",
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.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"
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",