@mobrienv/autoloop 0.9.2 → 0.10.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/README.md
CHANGED
|
@@ -102,6 +102,24 @@ If Ralph is the broader experimentation surface, autoloop is the cleaner runtime
|
|
|
102
102
|
npm install -g @mobrienv/autoloop
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
### Standalone binary (no Node required)
|
|
106
|
+
|
|
107
|
+
npm remains the primary and recommended installation channel. For a Node-free
|
|
108
|
+
installation, download the binary for your OS and architecture plus
|
|
109
|
+
`SHA256SUMS` from the [GitHub release](https://github.com/mikeyobrien/autoloop/releases):
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
VERSION=v0.10.1
|
|
113
|
+
TARGET=darwin-arm64 # darwin-arm64, darwin-x64, linux-arm64, or linux-x64
|
|
114
|
+
curl -LO "https://github.com/mikeyobrien/autoloop/releases/download/${VERSION}/autoloop-${TARGET}"
|
|
115
|
+
curl -LO "https://github.com/mikeyobrien/autoloop/releases/download/${VERSION}/SHA256SUMS"
|
|
116
|
+
grep " autoloop-${TARGET}$" SHA256SUMS > SHA256SUMS.current
|
|
117
|
+
sha256sum -c SHA256SUMS.current # Linux
|
|
118
|
+
# shasum -a 256 -c SHA256SUMS.current # macOS
|
|
119
|
+
chmod +x "autoloop-${TARGET}"
|
|
120
|
+
sudo mv "autoloop-${TARGET}" /usr/local/bin/autoloop
|
|
121
|
+
```
|
|
122
|
+
|
|
105
123
|
### From source
|
|
106
124
|
|
|
107
125
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobrienv/autoloop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Simpler, opinionated loop harness for inspectable long-running agent workflows",
|
|
6
6
|
"type": "module",
|
|
@@ -93,9 +93,9 @@
|
|
|
93
93
|
"vitest": "^3.0.0"
|
|
94
94
|
},
|
|
95
95
|
"dependencies": {
|
|
96
|
-
"@mobrienv/autoloop-cli": "0.
|
|
97
|
-
"@mobrienv/autoloop-core": "0.
|
|
98
|
-
"@mobrienv/autoloop-harness": "0.
|
|
99
|
-
"@mobrienv/autoloop-presets": "0.
|
|
96
|
+
"@mobrienv/autoloop-cli": "0.10.1",
|
|
97
|
+
"@mobrienv/autoloop-core": "0.10.1",
|
|
98
|
+
"@mobrienv/autoloop-harness": "0.10.1",
|
|
99
|
+
"@mobrienv/autoloop-presets": "0.10.1"
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autoloop",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Run and operate autoloops — start runs, monitor progress, inject guidance, manage worktrees, inspect artifacts, and clean up.",
|
|
5
5
|
"homepage": "https://github.com/mikeyobrien/autoloop",
|
|
6
6
|
"repository": "https://github.com/mikeyobrien/autoloop",
|