AgentXchain v2.114.0
Released: 2026-04-16
Highlights
- Mission start auto-planning —
agentxchain mission start --plancreates a mission and immediately produces one proposed plan without bypassing approval - Offline planner input is real —
--planner-output-file <path>now works for bothmission start --planandmission plan - Batch workstream launch —
mission plan launch --all-readylaunches every currently-ready workstream from an approved plan in plan order with fail-closed sequencing - Docs and CLI truth tightened — the mission planning surface now documents the actual partial-failure and batch-launch boundaries instead of implying atomic or cascading behavior
What Changed
Mission Start Auto-Planning
- New convenience path:
agentxchain mission start --plan - Mission artifact is created first, then exactly one
proposedplan is generated - Supports repeatable
--constraint, repeatable--role-hint, and--planner-output-file <path> --jsonreturns both artifacts as{ mission, plan }- Planning failure after mission creation exits non-zero and leaves the created mission durable instead of pretending the operation was atomic
Offline Planner Parity
agentxchain mission plan --planner-output-file <path>is now an implemented input surface- Offline planner JSON uses the same parse and validation path as live planner output
- There is no second offline-only schema and no doc-only fallback text
Batch Launch For Ready Workstreams
- New command mode:
agentxchain mission plan launch --all-ready - Requires an
approvedplan and rejects--all-readywith--workstream - Launches only workstreams that are
readyat invocation time - Preserves plan declaration order for the batch
- Fails closed on the first launch failure; remaining workstreams are skipped, not silently launched
- Blocked workstreams remain blocked, and newly-ready dependents are not auto-launched inside the same invocation
- Zero-ready plans fail with a status distribution message instead of exiting
0with no work done
Docs Update
/docs/missionsnow documents the one-session operator path:mission start --planmission plan approvemission plan launch --all-ready
/docs/clinow documents the new flags, mutual exclusivity, and batch-launch behavior
Evidence
- 5349 tests / 1112 suites / 0 failures
cd website-v2 && npm run build— clean