toolcraft 0.0.134 → 0.0.136

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/composition.json CHANGED
@@ -108,7 +108,7 @@
108
108
  },
109
109
  {
110
110
  "name": "toolcraft",
111
- "version": "0.0.134",
111
+ "version": "0.0.136",
112
112
  "license": "MIT"
113
113
  },
114
114
  {
@@ -118,7 +118,7 @@
118
118
  },
119
119
  {
120
120
  "name": "toolcraft-schema",
121
- "version": "0.0.134",
121
+ "version": "0.0.136",
122
122
  "license": "MIT"
123
123
  },
124
124
  {
@@ -108,7 +108,7 @@
108
108
  },
109
109
  {
110
110
  "name": "toolcraft",
111
- "version": "0.0.134",
111
+ "version": "0.0.136",
112
112
  "license": "MIT"
113
113
  },
114
114
  {
@@ -118,7 +118,7 @@
118
118
  },
119
119
  {
120
120
  "name": "toolcraft-schema",
121
- "version": "0.0.134",
121
+ "version": "0.0.136",
122
122
  "license": "MIT"
123
123
  },
124
124
  {
@@ -30,7 +30,7 @@ export interface Runner {
30
30
  export interface HostRunnerOptions {
31
31
  detached?: boolean;
32
32
  }
33
- export type ExecutionEnvType = "host" | "docker" | "e2b";
33
+ export type ExecutionEnvType = "host" | "docker";
34
34
  export type JobStatus = "running" | "exited" | "killed" | "lost";
35
35
  export interface ExecutionEnvFactory {
36
36
  readonly type: ExecutionEnvType;
@@ -67,8 +67,8 @@ export interface OpenSpec {
67
67
  }
68
68
  export interface ExecutionState {
69
69
  templates: {
70
- get(backend: "docker" | "e2b", hash: string): Promise<TemplateEntry | null>;
71
- put(backend: "docker" | "e2b", entry: TemplateEntry): Promise<void>;
70
+ get(backend: "docker", hash: string): Promise<TemplateEntry | null>;
71
+ put(backend: "docker", entry: TemplateEntry): Promise<void>;
72
72
  };
73
73
  }
74
74
  export interface TemplateEntry {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  {
10
10
  "name": "toolcraft-schema",
11
- "version": "0.0.134",
11
+ "version": "0.0.136",
12
12
  "license": "MIT"
13
13
  }
14
14
  ]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolcraft-schema",
3
- "version": "0.0.134",
3
+ "version": "0.0.136",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolcraft",
3
- "version": "0.0.134",
3
+ "version": "0.0.136",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -153,7 +153,7 @@
153
153
  "yaml"
154
154
  ],
155
155
  "optionalDependencies": {
156
- "toolcraft-schema": "0.0.134",
156
+ "toolcraft-schema": "0.0.136",
157
157
  "toolcraft-design": "*",
158
158
  "@poe-code/frontmatter": "*",
159
159
  "@poe-code/agent-mcp-config": "*",