ax-agents 0.0.1-alpha.1
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/LICENSE +21 -0
- package/README.md +28 -0
- package/ax.js +3684 -0
- package/package.json +46 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ax-agents",
|
|
3
|
+
"version": "0.0.1-alpha.1",
|
|
4
|
+
"description": "A CLI for orchestrating AI coding agents via tmux",
|
|
5
|
+
"bin": {
|
|
6
|
+
"ax": "ax.js",
|
|
7
|
+
"axclaude": "ax.js",
|
|
8
|
+
"axcodex": "ax.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"ax.js"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=22"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"test": "node --test ax.test.js",
|
|
19
|
+
"lint": "oxlint --tsconfig tsconfig.json ax.js",
|
|
20
|
+
"lint:fix": "oxlint --tsconfig tsconfig.json --fix ax.js",
|
|
21
|
+
"format": "oxfmt --write ax.js",
|
|
22
|
+
"format:check": "oxfmt --check ax.js",
|
|
23
|
+
"typecheck": "tsc --noEmit"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"ai",
|
|
27
|
+
"agents",
|
|
28
|
+
"cli",
|
|
29
|
+
"claude",
|
|
30
|
+
"codex",
|
|
31
|
+
"tmux",
|
|
32
|
+
"orchestration"
|
|
33
|
+
],
|
|
34
|
+
"author": "Seb Insua <me@sebinsua.com>",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/sebinsua/ax-agents.git"
|
|
38
|
+
},
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^22.0.0",
|
|
42
|
+
"oxfmt": "^0.26.0",
|
|
43
|
+
"oxlint": "^1.41.0",
|
|
44
|
+
"typescript": "^5.8.3"
|
|
45
|
+
}
|
|
46
|
+
}
|