@wrongstack/runtime 0.303.0 → 0.305.1
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.js +9 -5
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -565,7 +565,13 @@ function makeLightSubagentFactory(deps) {
|
|
|
565
565
|
confirmAwaiter: void 0,
|
|
566
566
|
iterationTimeoutMs: config.tools?.iterationTimeoutMs ?? 12e4,
|
|
567
567
|
perIterationOutputCapBytes: config.tools?.perIterationOutputCapBytes ?? 1e5,
|
|
568
|
-
tracer: void 0
|
|
568
|
+
tracer: void 0,
|
|
569
|
+
// Off unless the operator opts in, and then subagents inherit it: a
|
|
570
|
+
// worker dispatched by `kanban_queue` carries board/task/lease identity
|
|
571
|
+
// in ctx.meta and can satisfy the same gate its leader was held to.
|
|
572
|
+
// Every ToolExecutor host must resolve this identically — see
|
|
573
|
+
// packages/cli/src/wiring/pipeline.ts.
|
|
574
|
+
requireKanbanGovernance: config.tools?.kanbanGovernance ?? false
|
|
569
575
|
});
|
|
570
576
|
const agent = new Agent({
|
|
571
577
|
container: deps.container,
|
|
@@ -663,10 +669,8 @@ function makeSubagentSessionShim(parent) {
|
|
|
663
669
|
flush: () => parent.flush(),
|
|
664
670
|
close: async () => {
|
|
665
671
|
},
|
|
666
|
-
recordFileChange: () =>
|
|
667
|
-
|
|
668
|
-
recordSideEffect: () => {
|
|
669
|
-
},
|
|
672
|
+
recordFileChange: (input) => parent.recordFileChange(input),
|
|
673
|
+
recordSideEffect: (input) => parent.recordSideEffect(input),
|
|
670
674
|
writeCheckpoint: async () => {
|
|
671
675
|
},
|
|
672
676
|
writeFileSnapshot: async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.305.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack default runtime implementations and host-level composition helpers built on @wrongstack/core.",
|
|
6
6
|
"repository": {
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"README.md"
|
|
65
65
|
],
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@wrongstack/
|
|
68
|
-
"@wrongstack/
|
|
69
|
-
"@wrongstack/
|
|
70
|
-
"@wrongstack/
|
|
67
|
+
"@wrongstack/core": "0.305.1",
|
|
68
|
+
"@wrongstack/tools": "0.305.1",
|
|
69
|
+
"@wrongstack/governance": "0.305.1",
|
|
70
|
+
"@wrongstack/sage": "0.305.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/node": "^26.1.2",
|