agentxchain 2.155.6 → 2.155.7

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": "agentxchain",
3
- "version": "2.155.6",
3
+ "version": "2.155.7",
4
4
  "description": "CLI for AgentXchain — governed multi-agent software delivery",
5
5
  "type": "module",
6
6
  "bin": {
@@ -762,6 +762,21 @@ async function dispatchIdleExpansion(context, session, contOpts, absVisionPath,
762
762
  `- Every proposed intent MUST cite at least one VISION.md heading from the snapshot below.`,
763
763
  `- Output MUST be a structured idle_expansion_result (new_intake_intent or vision_exhausted).`,
764
764
  ``,
765
+ `OUTPUT FORMAT — you MUST do one of these:`,
766
+ `(a) Include "idle_expansion_result" as a top-level key in your turn-result.json, OR`,
767
+ `(b) Save the result as a sibling file named idle-expansion-result.json next to your turn-result.json in the staging directory.`,
768
+ ``,
769
+ `The JSON object MUST have this shape:`,
770
+ ` { "kind": "new_intake_intent", "expansion_iteration": ${currentIteration},`,
771
+ ` "title": "...", "priority": "p1|p2|p3", "template": "generic",`,
772
+ ` "charter": "...", "acceptance_contract": ["criterion 1", ...],`,
773
+ ` "vision_traceability": { "headings": ["heading from snapshot"], "rationale": "..." } }`,
774
+ `OR:`,
775
+ ` { "kind": "vision_exhausted", "expansion_iteration": ${currentIteration},`,
776
+ ` "headings": [{"heading": "...", "status": "complete|deferred|out_of_scope", "reason": "..."}] }`,
777
+ ``,
778
+ `Do NOT just describe the result in text — you must produce the actual JSON object.`,
779
+ ``,
765
780
  `VISION headings snapshot:`,
766
781
  visionHeadings || ' (none captured)',
767
782
  ``,