goalbuddy 0.2.18 → 0.2.20
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:
|
|
@@ -616,11 +616,12 @@ async function extendDetails(id) {
|
|
|
616
616
|
printListSection("Reads", extension.reads);
|
|
617
617
|
printListSection("Writes", extension.writes);
|
|
618
618
|
printListSection("Side effects", extension.side_effects);
|
|
619
|
+
printListSection("Agent instructions", extension.agent_instructions);
|
|
619
620
|
printListSection("Auth env", extension.auth?.env);
|
|
620
621
|
printSupports(extension.supports);
|
|
621
622
|
console.log("");
|
|
622
623
|
console.log("Local use prompt:");
|
|
623
|
-
console.log(` Use the ${extension.name || extension.id} extension for docs/goals/<slug>/goal.md and write its ${firstValue(extension.outputs, "artifact")} as Markdown.`);
|
|
624
|
+
console.log(` ${extension.local_use_prompt || `Use the ${extension.name || extension.id} extension for docs/goals/<slug>/goal.md and write its ${firstValue(extension.outputs, "artifact")} as Markdown.`}`);
|
|
624
625
|
console.log("");
|
|
625
626
|
console.log("Install:");
|
|
626
627
|
console.log(` npx ${canonicalCliName} extend install ${extension.id}`);
|
|
@@ -1195,6 +1196,7 @@ function publicExtension(extension) {
|
|
|
1195
1196
|
version: extension.version || "",
|
|
1196
1197
|
summary: extension.summary || "",
|
|
1197
1198
|
description: extension.description || "",
|
|
1199
|
+
local_use_prompt: extension.local_use_prompt || "",
|
|
1198
1200
|
source: extension.source || "",
|
|
1199
1201
|
docs: extension.docs || "",
|
|
1200
1202
|
use_when: extension.use_when || [],
|
|
@@ -1206,6 +1208,7 @@ function publicExtension(extension) {
|
|
|
1206
1208
|
reads: extension.reads || [],
|
|
1207
1209
|
writes: extension.writes || [],
|
|
1208
1210
|
side_effects: extension.side_effects || [],
|
|
1211
|
+
agent_instructions: extension.agent_instructions || [],
|
|
1209
1212
|
auth: extension.auth || { env: [] },
|
|
1210
1213
|
supports: extension.supports || {},
|
|
1211
1214
|
source_of_truth: extension.source_of_truth || "local",
|
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.
|