ax-agents 0.1.7 → 0.1.8
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 -3
- package/ax.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,11 +18,13 @@ npm install -g ax-agents
|
|
|
18
18
|
|
|
19
19
|
```
|
|
20
20
|
ax "what do you think of the error handling here?"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
ax
|
|
21
|
+
axclaude review uncommitted
|
|
22
|
+
axcodex --session=frontend "check the auth flow"
|
|
23
|
+
ax do "fix the login bug" --loop
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
Aliases `axclaude` and `axcodex` select the tool directly, or use `ax --tool=NAME`.
|
|
27
|
+
|
|
26
28
|
Run `ax --help` for all options.
|
|
27
29
|
|
|
28
30
|
## Archangels
|
package/ax.js
CHANGED
|
@@ -5887,7 +5887,7 @@ async function cmdDo(agent, prompt, options = {}) {
|
|
|
5887
5887
|
const name = options.name || "default";
|
|
5888
5888
|
const loop = options.loop || false;
|
|
5889
5889
|
const reset = options.reset || false;
|
|
5890
|
-
const yolo = options.yolo
|
|
5890
|
+
const yolo = options.yolo ?? true;
|
|
5891
5891
|
const timeoutMs = options.timeoutMs || DEFAULT_TIMEOUT_MS;
|
|
5892
5892
|
|
|
5893
5893
|
// Reset progress file if requested
|
|
@@ -6507,8 +6507,8 @@ Usage: ${name} [OPTIONS] <command|message> [ARGS...]
|
|
|
6507
6507
|
Messaging:
|
|
6508
6508
|
<message> Send message to ${name}
|
|
6509
6509
|
review [TYPE] [TARGET] Review code: uncommitted, branch [base], commit [ref], custom
|
|
6510
|
-
do <prompt> Run one iteration (
|
|
6511
|
-
Options: --name=NAME, --loop, --max-loops=N, --reset
|
|
6510
|
+
do <prompt> Run one iteration (auto-approves by default)
|
|
6511
|
+
Options: --name=NAME, --loop, --max-loops=N, --reset
|
|
6512
6512
|
|
|
6513
6513
|
Sessions:
|
|
6514
6514
|
compact Summarise session to shrink context size
|
|
@@ -6536,7 +6536,7 @@ Recovery/State:
|
|
|
6536
6536
|
log [SESSION] View conversation log (--tail=N, --follow, --reasoning)
|
|
6537
6537
|
|
|
6538
6538
|
Flags:
|
|
6539
|
-
--tool=NAME
|
|
6539
|
+
--tool=NAME Select agent (aliases: axclaude, axcodex)
|
|
6540
6540
|
--session=ID name | archangel | uuid-prefix | self
|
|
6541
6541
|
--fresh Reset conversation before review
|
|
6542
6542
|
--yolo Skip all confirmations (dangerous)
|