goalbuddy 0.2.18 → 0.2.19
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
|
@@ -82,7 +82,19 @@ Install and enable the native Codex plugin:
|
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
npx goalbuddy
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Restart Codex, then use `$goal-prep`. To add the optional extension bundle:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npx goalbuddy extend install --all
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
If you prefer a global executable, install the npm package globally and run `goalbuddy`:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
85
96
|
npm i -g goalbuddy
|
|
97
|
+
goalbuddy
|
|
86
98
|
```
|
|
87
99
|
|
|
88
100
|
Use the skill-only fallback if your Codex build does not support plugins:
|
package/package.json
CHANGED
|
@@ -25,10 +25,17 @@ Install and enable GoalBuddy:
|
|
|
25
25
|
npx goalbuddy
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
Restart Codex, then use `$goal-prep`. Optional extensions can be installed with:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx goalbuddy extend install --all
|
|
32
|
+
```
|
|
33
|
+
|
|
28
34
|
Or install the npm package globally:
|
|
29
35
|
|
|
30
36
|
```bash
|
|
31
37
|
npm i -g goalbuddy
|
|
38
|
+
goalbuddy
|
|
32
39
|
```
|
|
33
40
|
|
|
34
41
|
The marketplace manifest is included for Codex discovery, but current Codex CLI builds only register the marketplace with `codex plugin marketplace add`; the npm CLI also caches and enables the plugin.
|