@spacek33z/autoauto 0.0.1 → 1.2.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 +15 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Don't understand autoresearch or don't know what to apply it on? No problem! Thi
|
|
|
9
9
|
This tool takes care of everything:
|
|
10
10
|
|
|
11
11
|
* Finding autoresearch opportunities in your codebase
|
|
12
|
-
* Defining metrics, creating
|
|
12
|
+
* Defining metrics, creating scripts
|
|
13
13
|
* Defining the best settings
|
|
14
14
|
* Running the experiments (supports Claude, Codex and OpenCode)
|
|
15
15
|
* Using best practices
|
|
@@ -63,22 +63,29 @@ Autoresearch looks simple — "just loop an agent and measure" — but real impl
|
|
|
63
63
|
|
|
64
64
|
### Install and run
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
**With Bun (recommended):**
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
bun install
|
|
72
|
-
bun dev
|
|
69
|
+
bun install -g @spacek33z/autoauto
|
|
70
|
+
autoauto
|
|
73
71
|
```
|
|
74
72
|
|
|
75
|
-
|
|
73
|
+
**Compiled binary (no runtime needed):**
|
|
76
74
|
|
|
77
75
|
```bash
|
|
78
|
-
|
|
76
|
+
curl -fsSL https://raw.githubusercontent.com/SpaceK33z/autoauto/main/install.sh | bash
|
|
79
77
|
autoauto
|
|
80
78
|
```
|
|
81
79
|
|
|
80
|
+
**From source:**
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
git clone https://github.com/SpaceK33z/autoauto.git
|
|
84
|
+
cd autoauto
|
|
85
|
+
bun install
|
|
86
|
+
bun dev
|
|
87
|
+
```
|
|
88
|
+
|
|
82
89
|
### Headless CLI
|
|
83
90
|
|
|
84
91
|
AutoAuto also has a headless CLI for coding agents, CI or just generally scripting:
|