smithers-orchestrator 0.20.4 → 0.21.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,7 +1,7 @@
1
1
  {
2
2
  "name": "smithers-orchestrator",
3
- "version": "0.20.4",
4
- "description": "Public Smithers facade and workflow authoring convenience package",
3
+ "version": "0.21.0",
4
+ "description": "Public Smithers facade for durable coding-agent workflows and Gateway operation",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "exports": {
@@ -25,6 +25,16 @@
25
25
  "import": "./src/gateway-react.js",
26
26
  "default": "./src/gateway-react.js"
27
27
  },
28
+ "./sandbox": {
29
+ "types": "./src/sandbox.d.ts",
30
+ "import": "./src/sandbox.js",
31
+ "default": "./src/sandbox.js"
32
+ },
33
+ "./control-plane": {
34
+ "types": "./src/control-plane.d.ts",
35
+ "import": "./src/control-plane.js",
36
+ "default": "./src/control-plane.js"
37
+ },
28
38
  "./*": {
29
39
  "types": "./src/index.d.ts",
30
40
  "import": "./src/*.js",
@@ -51,26 +61,27 @@
51
61
  "incur": "^0.4.1",
52
62
  "react": "^19.2.5",
53
63
  "zod": "^4.3.6",
54
- "@smithers-orchestrator/cli": "0.20.4",
55
- "@smithers-orchestrator/components": "0.20.4",
56
- "@smithers-orchestrator/engine": "0.20.4",
57
- "@smithers-orchestrator/db": "0.20.4",
58
- "@smithers-orchestrator/errors": "0.20.4",
59
- "@smithers-orchestrator/gateway-client": "0.20.4",
60
- "@smithers-orchestrator/memory": "0.20.4",
61
- "@smithers-orchestrator/agents": "0.20.4",
62
- "@smithers-orchestrator/observability": "0.20.4",
63
- "@smithers-orchestrator/openapi": "0.20.4",
64
- "@smithers-orchestrator/sandbox": "0.20.4",
65
- "@smithers-orchestrator/react-reconciler": "0.20.4",
66
- "@smithers-orchestrator/gateway-react": "0.20.4",
67
- "@smithers-orchestrator/scorers": "0.20.4",
68
- "@smithers-orchestrator/scheduler": "0.20.4",
69
- "@smithers-orchestrator/time-travel": "0.20.4",
70
- "@smithers-orchestrator/server": "0.20.4",
71
- "@smithers-orchestrator/vcs": "0.20.4",
72
- "@smithers-orchestrator/graph": "0.20.4",
73
- "@smithers-orchestrator/driver": "0.20.4"
64
+ "@smithers-orchestrator/components": "0.21.0",
65
+ "@smithers-orchestrator/agents": "0.21.0",
66
+ "@smithers-orchestrator/cli": "0.21.0",
67
+ "@smithers-orchestrator/db": "0.21.0",
68
+ "@smithers-orchestrator/control-plane": "0.21.0",
69
+ "@smithers-orchestrator/driver": "0.21.0",
70
+ "@smithers-orchestrator/engine": "0.21.0",
71
+ "@smithers-orchestrator/errors": "0.21.0",
72
+ "@smithers-orchestrator/gateway-client": "0.21.0",
73
+ "@smithers-orchestrator/gateway-react": "0.21.0",
74
+ "@smithers-orchestrator/graph": "0.21.0",
75
+ "@smithers-orchestrator/memory": "0.21.0",
76
+ "@smithers-orchestrator/openapi": "0.21.0",
77
+ "@smithers-orchestrator/observability": "0.21.0",
78
+ "@smithers-orchestrator/sandbox": "0.21.0",
79
+ "@smithers-orchestrator/react-reconciler": "0.21.0",
80
+ "@smithers-orchestrator/scheduler": "0.21.0",
81
+ "@smithers-orchestrator/scorers": "0.21.0",
82
+ "@smithers-orchestrator/server": "0.21.0",
83
+ "@smithers-orchestrator/time-travel": "0.21.0",
84
+ "@smithers-orchestrator/vcs": "0.21.0"
74
85
  },
75
86
  "devDependencies": {
76
87
  "@types/bun": "latest",
@@ -0,0 +1 @@
1
+ export * from "@smithers-orchestrator/control-plane";
@@ -0,0 +1 @@
1
+ export * from "@smithers-orchestrator/control-plane";
@@ -20,7 +20,7 @@
20
20
  /** @typedef {import("@smithers-orchestrator/components").WaitForEventProps} WaitForEventProps */
21
21
  // @smithers-type-exports-end
22
22
 
23
- export { Approval, approvalDecisionSchema, Workflow, Task, Sequence, Parallel, MergeQueue, Branch, Loop, Ralph, Worktree, } from "@smithers-orchestrator/components";
23
+ export { Approval, approvalDecisionSchema, Workflow, Task, Sequence, Parallel, MergeQueue, Branch, Loop, Ralph, Worktree, Sandbox, } from "@smithers-orchestrator/components";
24
24
  export { Timer } from "@smithers-orchestrator/components";
25
25
  export { ClaudeCodeAgent } from "@smithers-orchestrator/agents/ClaudeCodeAgent";
26
26
  export { KimiAgent } from "@smithers-orchestrator/agents/KimiAgent";
package/src/index.d.ts CHANGED
@@ -56,7 +56,7 @@ import { WorkflowProps } from '@smithers-orchestrator/components/components/Work
56
56
  import * as _smithers_server_gateway from '@smithers-orchestrator/server/gateway';
57
57
  export { Gateway } from '@smithers-orchestrator/server/gateway';
58
58
  import * as _smithers_agents from '@smithers-orchestrator/agents';
59
- export { AmpAgent, AnthropicAgent, ClaudeCodeAgent, CodexAgent, ForgeAgent, GeminiAgent, KimiAgent, OpenAIAgent, OpenCodeAgent, PiAgent } from '@smithers-orchestrator/agents';
59
+ export { AmpAgent, AnthropicAgent, AntigravityAgent, ClaudeCodeAgent, CodexAgent, ForgeAgent, GeminiAgent, KimiAgent, OpenAIAgent, OpenCodeAgent, PiAgent } from '@smithers-orchestrator/agents';
60
60
  import * as _smithers_scorers from '@smithers-orchestrator/scorers';
61
61
  export { aggregateScores, createScorer, faithfulnessScorer, latencyScorer, llmJudge, relevancyScorer, runScorersAsync, runScorersBatch, schemaAdherenceScorer, smithersScorers, toxicityScorer } from '@smithers-orchestrator/scorers';
62
62
  import * as _smithers_agents_capability_registry from '@smithers-orchestrator/agents/capability-registry';
package/src/index.js CHANGED
@@ -166,7 +166,7 @@ export { knownSmithersErrorCodes } from "@smithers-orchestrator/errors/knownSmit
166
166
  // Components
167
167
  export { Approval, ApprovalGate, Aspects, Branch, CheckSuite, ClassifyAndRoute, ContentPipeline, ContinueAsNew, Debate, DecisionTable, DriftDetector, EscalationChain, GatherAndSynthesize, HumanTask, Kanban, Loop, MergeQueue, Optimizer, Panel, Parallel, Poller, Ralph, ReviewLoop, Runbook, Saga, Sandbox, ScanFixVerify, Sequence, Signal, Subflow, SuperSmithers, Supervisor, Task, Timer, TryCatchFinally, WaitForEvent, Workflow, Worktree, approvalDecisionSchema, approvalRankingSchema, approvalSelectionSchema, continueAsNew, } from "@smithers-orchestrator/components";
168
168
  // Agents
169
- export { AnthropicAgent, OpenAIAgent, AmpAgent, ClaudeCodeAgent, CodexAgent, GeminiAgent, PiAgent, KimiAgent, ForgeAgent, OpenCodeAgent, } from "@smithers-orchestrator/agents";
169
+ export { AnthropicAgent, OpenAIAgent, AmpAgent, AntigravityAgent, ClaudeCodeAgent, CodexAgent, GeminiAgent, PiAgent, KimiAgent, ForgeAgent, OpenCodeAgent, } from "@smithers-orchestrator/agents";
170
170
  // VCS
171
171
  export { runJj, getJjPointer, revertToJjPointer, isJjRepo, workspaceAdd, workspaceList, workspaceClose, } from "@smithers-orchestrator/vcs/jj";
172
172
  // Core API
@@ -0,0 +1 @@
1
+ export * from "@smithers-orchestrator/sandbox";
package/src/sandbox.js ADDED
@@ -0,0 +1 @@
1
+ export * from "@smithers-orchestrator/sandbox";