sagaz-ai 0.1.3 → 0.1.4
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/INSTALL.md
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
## Requirements
|
|
4
4
|
|
|
5
5
|
- Codex Desktop.
|
|
6
|
-
- Node.js
|
|
6
|
+
- Node.js 22.14+ if installing with `npx`.
|
|
7
|
+
- Node.js 24 LTS is preferred for new installations.
|
|
7
8
|
- Git installed.
|
|
8
9
|
- GitHub CLI (`gh`) installed and authenticated if you want GitHub Ops.
|
|
9
10
|
- Access to the local Codex skills folder.
|
|
@@ -17,6 +18,21 @@ Sagaz can be used on Windows and macOS through Codex Desktop. The npm installer
|
|
|
17
18
|
|
|
18
19
|
If your Codex Desktop installation uses a custom home folder, pass `--codex-home <path>`.
|
|
19
20
|
|
|
21
|
+
## Node.js And npm
|
|
22
|
+
|
|
23
|
+
Use a currently supported Node.js release:
|
|
24
|
+
|
|
25
|
+
- Recommended minimum: Node.js 22.14+.
|
|
26
|
+
- Preferred for new installations: Node.js 24 LTS.
|
|
27
|
+
- Avoid Node.js 18 and Node.js 20 for new Sagaz installations because they are no longer the best compatibility baseline for current npm publishing and GitHub Actions behavior.
|
|
28
|
+
|
|
29
|
+
Verify:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
node --version
|
|
33
|
+
npm --version
|
|
34
|
+
```
|
|
35
|
+
|
|
20
36
|
## Recommended: Install With npx
|
|
21
37
|
|
|
22
38
|
### Windows PowerShell
|
package/README.md
CHANGED
|
@@ -85,6 +85,8 @@ Sagaz supports Windows and macOS through Codex Desktop. The npm installer instal
|
|
|
85
85
|
|
|
86
86
|
If your Codex Desktop installation uses a custom home folder, pass `--codex-home <path>`.
|
|
87
87
|
|
|
88
|
+
Use Node.js 22.14+ with npm for installation. Node.js 24 LTS is preferred for new installations because it aligns with current npm publishing and GitHub Actions compatibility. Avoid Node.js 18 and Node.js 20 for new Sagaz installations.
|
|
89
|
+
|
|
88
90
|
#### Windows PowerShell
|
|
89
91
|
|
|
90
92
|
```powershell
|
|
@@ -40,8 +40,11 @@ The repository should include:
|
|
|
40
40
|
|
|
41
41
|
- package checks on push and pull request
|
|
42
42
|
- manual npm publishing workflow
|
|
43
|
+
- GitHub Actions configured with Node.js 24 unless a newer supported LTS baseline is intentionally adopted
|
|
43
44
|
|
|
44
|
-
The npm publishing workflow requires an `NPM_TOKEN` repository secret. Do not assume
|
|
45
|
+
The npm publishing workflow requires either trusted publishing or an `NPM_TOKEN` repository secret. Do not assume either is configured. If missing, guide the user through the safest available option and explain why it is needed.
|
|
46
|
+
|
|
47
|
+
Use Node.js 22.14+ as the minimum package baseline and Node.js 24 LTS for GitHub Actions unless a compatibility audit recommends a newer baseline.
|
|
45
48
|
|
|
46
49
|
## npm Publishing
|
|
47
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sagaz-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Sagaz AI orchestration ecosystem installer for Codex Desktop.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"author": "Thiago Cabral",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": ">=
|
|
32
|
+
"node": ">=22.14"
|
|
33
33
|
},
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|