smithers-orchestrator 0.18.0 → 0.19.0
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/package.json +21 -21
- package/src/index.d.ts +1 -1
- package/src/index.js +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smithers-orchestrator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Public Smithers facade and workflow authoring convenience package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"incur": "^0.4.1",
|
|
55
55
|
"react": "^19.2.5",
|
|
56
56
|
"zod": "^4.3.6",
|
|
57
|
-
"@smithers-orchestrator/agents": "0.
|
|
58
|
-
"@smithers-orchestrator/
|
|
59
|
-
"@smithers-orchestrator/
|
|
60
|
-
"@smithers-orchestrator/
|
|
61
|
-
"@smithers-orchestrator/engine": "0.
|
|
62
|
-
"@smithers-orchestrator/
|
|
63
|
-
"@smithers-orchestrator/errors": "0.
|
|
64
|
-
"@smithers-orchestrator/gateway-react": "0.
|
|
65
|
-
"@smithers-orchestrator/
|
|
66
|
-
"@smithers-orchestrator/
|
|
67
|
-
"@smithers-orchestrator/
|
|
68
|
-
"@smithers-orchestrator/
|
|
69
|
-
"@smithers-orchestrator/
|
|
70
|
-
"@smithers-orchestrator/
|
|
71
|
-
"@smithers-orchestrator/
|
|
72
|
-
"@smithers-orchestrator/
|
|
73
|
-
"@smithers-orchestrator/
|
|
74
|
-
"@smithers-orchestrator/
|
|
75
|
-
"@smithers-orchestrator/
|
|
76
|
-
"@smithers-orchestrator/
|
|
57
|
+
"@smithers-orchestrator/agents": "0.19.0",
|
|
58
|
+
"@smithers-orchestrator/cli": "0.19.0",
|
|
59
|
+
"@smithers-orchestrator/db": "0.19.0",
|
|
60
|
+
"@smithers-orchestrator/components": "0.19.0",
|
|
61
|
+
"@smithers-orchestrator/engine": "0.19.0",
|
|
62
|
+
"@smithers-orchestrator/driver": "0.19.0",
|
|
63
|
+
"@smithers-orchestrator/errors": "0.19.0",
|
|
64
|
+
"@smithers-orchestrator/gateway-react": "0.19.0",
|
|
65
|
+
"@smithers-orchestrator/gateway-client": "0.19.0",
|
|
66
|
+
"@smithers-orchestrator/graph": "0.19.0",
|
|
67
|
+
"@smithers-orchestrator/memory": "0.19.0",
|
|
68
|
+
"@smithers-orchestrator/observability": "0.19.0",
|
|
69
|
+
"@smithers-orchestrator/openapi": "0.19.0",
|
|
70
|
+
"@smithers-orchestrator/react-reconciler": "0.19.0",
|
|
71
|
+
"@smithers-orchestrator/sandbox": "0.19.0",
|
|
72
|
+
"@smithers-orchestrator/scheduler": "0.19.0",
|
|
73
|
+
"@smithers-orchestrator/scorers": "0.19.0",
|
|
74
|
+
"@smithers-orchestrator/server": "0.19.0",
|
|
75
|
+
"@smithers-orchestrator/time-travel": "0.19.0",
|
|
76
|
+
"@smithers-orchestrator/vcs": "0.19.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@types/bun": "latest",
|
package/src/index.d.ts
CHANGED
|
@@ -76,7 +76,7 @@ export { syncZodTableSchema, zodSchemaColumns, zodToCreateTableSQL } from '@smit
|
|
|
76
76
|
export { camelToSnake } from '@smithers-orchestrator/db/utils/camelToSnake';
|
|
77
77
|
export { unwrapZodType } from '@smithers-orchestrator/db/unwrapZodType';
|
|
78
78
|
export { zodSchemaToJsonExample } from '@smithers-orchestrator/components/zod-to-example';
|
|
79
|
-
export { renderFrame, runWorkflow } from '@smithers-orchestrator/engine';
|
|
79
|
+
export { BuilderApi, BuiltSmithersWorkflow, ComponentDefinition, ComponentDefinitionBuilder, Smithers, StepOptions, WorkflowDefinitionBuilder, createComponent, createWorkflow, renderFrame, runWorkflow } from '@smithers-orchestrator/engine';
|
|
80
80
|
import { Tool } from 'ai';
|
|
81
81
|
import { SmithersDb } from '@smithers-orchestrator/db/adapter';
|
|
82
82
|
|
package/src/index.js
CHANGED
|
@@ -170,7 +170,13 @@ export { AnthropicAgent, OpenAIAgent, AmpAgent, ClaudeCodeAgent, CodexAgent, Gem
|
|
|
170
170
|
export { runJj, getJjPointer, revertToJjPointer, isJjRepo, workspaceAdd, workspaceList, workspaceClose, } from "@smithers-orchestrator/vcs/jj";
|
|
171
171
|
// Core API
|
|
172
172
|
export { createSmithers } from "./create.js";
|
|
173
|
-
export {
|
|
173
|
+
export {
|
|
174
|
+
createComponent,
|
|
175
|
+
createWorkflow,
|
|
176
|
+
renderFrame,
|
|
177
|
+
runWorkflow,
|
|
178
|
+
Smithers,
|
|
179
|
+
} from "@smithers-orchestrator/engine";
|
|
174
180
|
export { signalRun } from "@smithers-orchestrator/engine/signals";
|
|
175
181
|
export { usePatched } from "@smithers-orchestrator/engine/effect/versioning";
|
|
176
182
|
// Tools
|