@rulvar/core 1.176.0 → 1.177.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -22516,6 +22516,12 @@ function makeOrchestratorWorkflow(goal, opts) {
22516
22516
  }
22517
22517
  const promptLines = [
22518
22518
  ...extension?.promptLines?.() ?? [],
22519
+ ...opts?.exposeChildResultTools === true ? [
22520
+ "While children run: await_any returns the first settled digest, and a settled",
22521
+ "child's full output is readable immediately with get_child_result, so outline",
22522
+ "and draft from early results instead of composing everything after the last",
22523
+ "child settles."
22524
+ ] : [],
22519
22525
  ...finishValidationPromptLines(validationSpec, coordSectionalFinish ? "rejected-attempt" : void 0),
22520
22526
  ...acceptancePromptLines(opts?.acceptance)
22521
22527
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rulvar/core",
3
- "version": "1.176.0",
3
+ "version": "1.177.0",
4
4
  "description": "Rulvar core: L0 contracts, journal kernel, ctx primitives, agent runtime, model router, tool system, dynamic orchestrator, InMemory and JSONL stores, event stream.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",