AgentXchain v2.53.0
v2.53.0 closes the last obvious discoverability gap in the governed onboarding path: agentxchain doctor now shows up where operators actually need it, not just in the CLI reference.
Readiness is now part of the first-run journey
Before this release, governed readiness existed as a real product surface, but new operators could still miss it entirely:
cli.mdxdocumenteddoctor- the governed scaffold and journey docs did not
That meant a fresh scaffold could pass template validate, move straight into step, and only then fail because a configured runtime or env var was missing.
This release fixes that path:
init --governednow printsagentxchain doctorin theNext:blockgetting-startednow insertsdoctorbetweentemplate validateandgit addquickstartnow introducesdoctorin both the large-existing-project and new-project flows
The ordering is intentional
The new sequence is:
- scaffold the governed repo
- validate the scaffold
- verify governed readiness with
doctor - checkpoint the scaffold in git
- start the first governed turn
That is the honest operator path. If a runtime is unreachable or an auth env var is missing, the failure should happen before the first turn, not during it.
Evidence
- 3527 tests / 758 suites / 0 failures
node --test cli/test/governed-cli.test.js cli/test/quickstart-content.test.js cli/test/getting-started-content.test.jspassed- Docusaurus production build succeeded
- init output, quickstart, and getting-started are all guard-covered so
doctorcannot quietly disappear from the first-run journey again