ax-agents 0.0.1-alpha.4 → 0.0.1-alpha.6
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 +20 -3
- package/ax.js +585 -376
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# ax-agents
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="assets/luca-giordano-the-fall-of-the-rebel-angels.jpg" alt="The Fall of the Rebel Angels by Luca Giordano" width="250">
|
|
5
|
+
<br><br>
|
|
6
|
+
<strong>A CLI for orchestrating AI coding agents via `tmux`.</strong>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
Running agents in `tmux` sessions makes it easy to monitor multiple agents, review their work, and interact with them when needed.
|
|
4
10
|
|
|
5
11
|
## Install
|
|
6
12
|
|
|
@@ -19,9 +25,20 @@ ax --yolo "fix the login bug"
|
|
|
19
25
|
|
|
20
26
|
Run `ax --help` for all options.
|
|
21
27
|
|
|
22
|
-
##
|
|
28
|
+
## Archangels
|
|
29
|
+
|
|
30
|
+
Archangels are background agents that watch your codebase and surface observations to your main coding session.
|
|
31
|
+
|
|
32
|
+
Configure them in `.ai/agents/*.md`, then:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
ax summon # summon all archangels
|
|
36
|
+
ax summon reviewer # summon one by name
|
|
37
|
+
ax recall # recall all
|
|
38
|
+
ax recall reviewer # recall one
|
|
39
|
+
```
|
|
23
40
|
|
|
24
|
-
|
|
41
|
+
When you next prompt Claude, any observations from your archangels will be injected automatically.
|
|
25
42
|
|
|
26
43
|
## License
|
|
27
44
|
|