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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smithers-orchestrator",
3
- "version": "0.18.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.18.0",
58
- "@smithers-orchestrator/driver": "0.18.0",
59
- "@smithers-orchestrator/components": "0.18.0",
60
- "@smithers-orchestrator/db": "0.18.0",
61
- "@smithers-orchestrator/engine": "0.18.0",
62
- "@smithers-orchestrator/gateway-client": "0.18.0",
63
- "@smithers-orchestrator/errors": "0.18.0",
64
- "@smithers-orchestrator/gateway-react": "0.18.0",
65
- "@smithers-orchestrator/graph": "0.18.0",
66
- "@smithers-orchestrator/openapi": "0.18.0",
67
- "@smithers-orchestrator/react-reconciler": "0.18.0",
68
- "@smithers-orchestrator/sandbox": "0.18.0",
69
- "@smithers-orchestrator/observability": "0.18.0",
70
- "@smithers-orchestrator/scorers": "0.18.0",
71
- "@smithers-orchestrator/scheduler": "0.18.0",
72
- "@smithers-orchestrator/server": "0.18.0",
73
- "@smithers-orchestrator/time-travel": "0.18.0",
74
- "@smithers-orchestrator/cli": "0.18.0",
75
- "@smithers-orchestrator/vcs": "0.18.0",
76
- "@smithers-orchestrator/memory": "0.18.0"
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 { runWorkflow, renderFrame } from "@smithers-orchestrator/engine";
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