@theagilemonkeys/facility 0.9.7 → 0.10.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 +2 -1
- package/package.json +2 -2
- package/src/init.mjs +2 -2
- package/templates/workflows/facility-codex.yml +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,8 @@ One binary with two jobs, and you rarely need both:
|
|
|
18
18
|
npx @theagilemonkeys/facility --help
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
Node.js
|
|
21
|
+
Node.js 24 LTS recommended; Node.js 22 supported from 22.13.0. Zero
|
|
22
|
+
configuration to read; one dependency.
|
|
22
23
|
|
|
23
24
|
**Early software.** Facility is published while it is still being built: the
|
|
24
25
|
API is young, generated files change shape between `0.x` releases, and no
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theagilemonkeys/facility",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Run an AI crew on your GitHub repo: agents that plan before building, build to your standard, verify on a provisioned environment, and never merge their own work.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"modules"
|
|
32
32
|
],
|
|
33
33
|
"engines": {
|
|
34
|
-
"node": "
|
|
34
|
+
"node": "^22.13.0 || ^24.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"postgres": "^3.4.7"
|
package/src/init.mjs
CHANGED
|
@@ -29,7 +29,7 @@ function toolchainSteps(packageManager, { conditional = false } = {}) {
|
|
|
29
29
|
"",
|
|
30
30
|
` - uses: actions/setup-node@${SETUP_NODE_SHA} # v4${guard}`,
|
|
31
31
|
" with:",
|
|
32
|
-
" node-version:
|
|
32
|
+
" node-version: 24",
|
|
33
33
|
" cache: pnpm",
|
|
34
34
|
"",
|
|
35
35
|
` - run: pnpm install --frozen-lockfile${guard}`,
|
|
@@ -42,7 +42,7 @@ function toolchainSteps(packageManager, { conditional = false } = {}) {
|
|
|
42
42
|
"",
|
|
43
43
|
` - uses: actions/setup-node@${SETUP_NODE_SHA} # v4${guard}`,
|
|
44
44
|
" with:",
|
|
45
|
-
" node-version:
|
|
45
|
+
" node-version: 24",
|
|
46
46
|
` cache: ${packageManager}`,
|
|
47
47
|
"",
|
|
48
48
|
` - run: ${installCmd}${guard}`,
|