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 +5 -1
- package/package.json +1 -1
- package/src/commands/demo.js +7 -3
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
package/src/commands/demo.js
CHANGED
|
@@ -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('
|
|
608
|
-
console.log(
|
|
609
|
-
console.log(` ${chalk.
|
|
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
|
|