sagaz-ai 0.1.1 → 0.1.2

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
@@ -8,12 +8,41 @@
8
8
  - GitHub CLI (`gh`) installed and authenticated if you want GitHub Ops.
9
9
  - Access to the local Codex skills folder.
10
10
 
11
+ ## Platform Support
12
+
13
+ Sagaz can be used on Windows and macOS through Codex Desktop. The npm installer uses the current user's home directory and installs the skill into the standard Codex skills folder:
14
+
15
+ - Windows: `C:\Users\YOUR_USER\.codex\skills\sagaz`
16
+ - macOS: `~/.codex/skills/sagaz`
17
+
18
+ If your Codex Desktop installation uses a custom home folder, pass `--codex-home <path>`.
19
+
11
20
  ## Recommended: Install With npx
12
21
 
22
+ ### Windows PowerShell
23
+
13
24
  ```powershell
14
25
  npx sagaz-ai install
15
26
  ```
16
27
 
28
+ Optional ecosystem copy:
29
+
30
+ ```powershell
31
+ npx sagaz-ai install --ecosystem C:\Users\YOUR_USER\Documents\Sagaz\ai-orchestration-ecosystem
32
+ ```
33
+
34
+ ### macOS Terminal
35
+
36
+ ```bash
37
+ npx sagaz-ai install
38
+ ```
39
+
40
+ Optional ecosystem copy:
41
+
42
+ ```bash
43
+ npx sagaz-ai install --ecosystem ~/Documents/Sagaz/ai-orchestration-ecosystem
44
+ ```
45
+
17
46
  Then open a new Codex Desktop thread and test:
18
47
 
19
48
  ```text
@@ -22,32 +51,52 @@ Sagaz: explain the available workflows.
22
51
 
23
52
  ## Optional Commands
24
53
 
54
+ ### Windows PowerShell
55
+
25
56
  ```powershell
26
57
  npx sagaz-ai status
27
58
  npx sagaz-ai doctor
28
59
  npx sagaz-ai install --force
29
60
  ```
30
61
 
31
- To also copy the ecosystem to a chosen folder:
62
+ ### macOS Terminal
32
63
 
33
- ```powershell
34
- npx sagaz-ai install --ecosystem C:\Users\YOUR_USER\Documents\Sagaz\ai-orchestration-ecosystem
64
+ ```bash
65
+ npx sagaz-ai status
66
+ npx sagaz-ai doctor
67
+ npx sagaz-ai install --force
35
68
  ```
36
69
 
37
70
  ## Manual Install
38
71
 
39
- Copy:
72
+ Copy the Sagaz skill folder from the repository.
73
+
74
+ Windows source folder:
40
75
 
41
76
  ```text
42
77
  codex-skill\sagaz
43
78
  ```
44
79
 
45
- into:
80
+ macOS source folder:
81
+
82
+ ```text
83
+ codex-skill/sagaz
84
+ ```
85
+
86
+ into the platform-specific Codex skill folder.
87
+
88
+ Windows:
46
89
 
47
90
  ```text
48
91
  C:\Users\YOUR_USER\.codex\skills\sagaz
49
92
  ```
50
93
 
94
+ macOS:
95
+
96
+ ```text
97
+ ~/.codex/skills/sagaz
98
+ ```
99
+
51
100
  Then open a new Codex Desktop thread and test:
52
101
 
53
102
  ```text
@@ -64,6 +113,8 @@ Sagaz: use the appropriate workflow for this project. Maintain run state, handof
64
113
 
65
114
  ## GitHub Ops
66
115
 
116
+ ### Windows PowerShell
117
+
67
118
  Authenticate GitHub CLI:
68
119
 
69
120
  ```powershell
@@ -75,4 +126,26 @@ Verify:
75
126
  ```powershell
76
127
  gh auth status
77
128
  git --version
78
- ```
129
+ ```
130
+
131
+ ### macOS Terminal
132
+
133
+ Install Git and GitHub CLI if needed:
134
+
135
+ ```bash
136
+ xcode-select --install
137
+ brew install gh
138
+ ```
139
+
140
+ Authenticate GitHub CLI:
141
+
142
+ ```bash
143
+ gh auth login -h github.com
144
+ ```
145
+
146
+ Verify:
147
+
148
+ ```bash
149
+ gh auth status
150
+ git --version
151
+ ```
package/README.md CHANGED
@@ -77,14 +77,17 @@ Key areas:
77
77
 
78
78
  ### Recommended: Install With npx
79
79
 
80
- ```powershell
81
- npx sagaz-ai install
82
- ```
80
+ Sagaz supports Windows and macOS through Codex Desktop. The npm installer installs the skill into the current user's Codex skills folder:
83
81
 
84
- Then open a new Codex Desktop thread and run:
82
+ - Windows: `C:\Users\YOUR_USER\.codex\skills\sagaz`
83
+ - macOS: `~/.codex/skills/sagaz`
85
84
 
86
- ```text
87
- Sagaz: explain the available workflows.
85
+ If your Codex Desktop installation uses a custom home folder, pass `--codex-home <path>`.
86
+
87
+ #### Windows PowerShell
88
+
89
+ ```powershell
90
+ npx sagaz-ai install
88
91
  ```
89
92
 
90
93
  Optional: also copy the ecosystem to a known local folder:
@@ -100,36 +103,79 @@ npx sagaz-ai status
100
103
  npx sagaz-ai doctor
101
104
  ```
102
105
 
106
+ #### macOS Terminal
107
+
108
+ ```bash
109
+ npx sagaz-ai install
110
+ ```
111
+
112
+ Optional: also copy the ecosystem to a known local folder:
113
+
114
+ ```bash
115
+ npx sagaz-ai install --ecosystem ~/Documents/Sagaz/ai-orchestration-ecosystem
116
+ ```
117
+
118
+ Check installation:
119
+
120
+ ```bash
121
+ npx sagaz-ai status
122
+ npx sagaz-ai doctor
123
+ ```
124
+
125
+ Then open a new Codex Desktop thread and run:
126
+
127
+ ```text
128
+ Sagaz: explain the available workflows.
129
+ ```
130
+
103
131
  ### Manual Installation
104
132
 
105
133
  #### 1. Clone Or Download The Repository
106
134
 
135
+ Windows PowerShell:
136
+
107
137
  ```powershell
108
138
  git clone https://github.com/tscabral1/sagaz.git
109
139
  ```
110
140
 
141
+ macOS Terminal:
142
+
143
+ ```bash
144
+ git clone https://github.com/tscabral1/sagaz.git
145
+ ```
146
+
111
147
  Or download the ZIP from GitHub.
112
148
 
113
149
  #### 2. Copy The Skill Into Codex
114
150
 
115
- On Windows, the local Codex skills folder is usually:
151
+ Copy the Sagaz skill folder from the repository.
152
+
153
+ Windows source folder:
116
154
 
117
155
  ```text
118
- C:\Users\YOUR_USER\.codex\skills
156
+ codex-skill\sagaz
119
157
  ```
120
158
 
121
- Copy this folder:
159
+ macOS source folder:
122
160
 
123
161
  ```text
124
- codex-skill\sagaz
162
+ codex-skill/sagaz
125
163
  ```
126
164
 
127
- into:
165
+ into the platform-specific Codex skills folder.
166
+
167
+ Windows:
128
168
 
129
169
  ```text
130
170
  C:\Users\YOUR_USER\.codex\skills\sagaz
131
171
  ```
132
172
 
173
+ macOS:
174
+
175
+ ```text
176
+ ~/.codex/skills/sagaz
177
+ ```
178
+
133
179
  #### 3. Keep The Ecosystem Available
134
180
 
135
181
  Keep `ai-orchestration-ecosystem/` accessible in the Codex workspace or in a known local folder.
package/bin/sagaz.js CHANGED
@@ -23,9 +23,16 @@ Usage:
23
23
  npx sagaz-ai doctor
24
24
 
25
25
  Options:
26
- --codex-home <path> Override Codex home. Default: ~/.codex
26
+ --codex-home <path> Override Codex home. Default: ~/.codex on Windows, macOS, and Linux
27
27
  --ecosystem <path> Also copy ai-orchestration-ecosystem to a target folder
28
28
  --force Overwrite existing installed skill
29
+
30
+ Examples:
31
+ Windows:
32
+ npx sagaz-ai install --ecosystem C:\\Users\\YOUR_USER\\Documents\\Sagaz\\ai-orchestration-ecosystem
33
+
34
+ macOS:
35
+ npx sagaz-ai install --ecosystem ~/Documents/Sagaz/ai-orchestration-ecosystem
29
36
  `);
30
37
  }
31
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sagaz-ai",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Sagaz AI orchestration ecosystem installer for Codex Desktop.",
5
5
  "type": "module",
6
6
  "bin": {