agentxchain 2.58.0 → 2.59.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.
package/README.md CHANGED
@@ -63,15 +63,19 @@ Duplicate execution remains intentional for the current 36-file slice until a la
63
63
  ### Governed workflow
64
64
 
65
65
  ```bash
66
- agentxchain init --governed --dir my-agentxchain-project -y
66
+ agentxchain init --governed --goal "Build an API change planner for release teams" --dir my-agentxchain-project -y
67
67
  cd my-agentxchain-project
68
68
  git init
69
+ agentxchain template validate
70
+ agentxchain doctor
69
71
  git add -A
70
72
  git commit -m "initial governed scaffold"
71
73
  agentxchain status
72
74
  agentxchain step --role pm
73
75
  ```
74
76
 
77
+ If you skipped `--goal` during scaffold, set `project.goal` in `agentxchain.json` before the first governed turn instead of re-running init in place.
78
+
75
79
  The default governed dev runtime is `claude --print --dangerously-skip-permissions` with stdin prompt delivery. The non-interactive governed path needs write access, so do not pretend bare `claude --print` is sufficient for unattended implementation turns. If your local coding agent uses a different launch contract, set it during scaffold creation:
76
80
 
77
81
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentxchain",
3
- "version": "2.58.0",
3
+ "version": "2.59.0",
4
4
  "description": "CLI for AgentXchain — governed multi-agent software delivery",
5
5
  "type": "module",
6
6
  "bin": {
@@ -604,9 +604,13 @@ All acceptance criteria met. OBJ-002 (clock skew) noted for follow-up. OBJ-003 (
604
604
  console.log('');
605
605
  console.log(chalk.dim(' ─'.repeat(26)));
606
606
  console.log('');
607
- console.log(` ${chalk.bold('Try it for real:')} agentxchain init --governed`);
608
- console.log(` ${chalk.bold('Step by step:')} https://agentxchain.dev/docs/getting-started`);
609
- console.log(` ${chalk.bold('Read more:')} https://agentxchain.dev/docs/quickstart`);
607
+ console.log(` ${chalk.bold('Next steps:')}`);
608
+ console.log('');
609
+ console.log(` ${chalk.dim('1.')} ${chalk.bold('Scaffold')} agentxchain init --governed --goal "Your project mission"`);
610
+ console.log(` ${chalk.dim('2.')} ${chalk.bold('Verify')} agentxchain doctor`);
611
+ console.log(` ${chalk.dim('3.')} ${chalk.bold('First turn')} agentxchain run`);
612
+ console.log('');
613
+ console.log(` ${chalk.bold('Docs:')} https://agentxchain.dev/docs/quickstart`);
610
614
  console.log('');
611
615
  }
612
616