goalbuddy 0.2.16 → 0.2.17
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
|
@@ -172,6 +172,7 @@ npx goalbuddy extend
|
|
|
172
172
|
npx goalbuddy extend github-pr-workflow
|
|
173
173
|
npx goalbuddy extend install github-pr-workflow --dry-run
|
|
174
174
|
npx goalbuddy extend install --all --dry-run
|
|
175
|
+
npx goalbuddy extend install --all
|
|
175
176
|
```
|
|
176
177
|
|
|
177
178
|
`goalbuddy extend` shows available extensions plus local install state, activation state, credential requirements, safe-by-default status, and missing environment variables.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface:
|
|
2
|
-
display_name: "
|
|
3
|
-
short_description: "
|
|
2
|
+
display_name: "Goal Prep"
|
|
3
|
+
short_description: "Prepare GoalBuddy boards before running /goal."
|
|
4
4
|
default_prompt: "Use goal-prep to run diagnostic intake on my rough or detailed goal. If the goal is vague or improvement-oriented, ask one guided question at a time, surface likely blind spots, and do not create files until intent, proof, scope, and board handling are clear or explicitly defaulted. If it is clear or already planned, prepare or repair goal.md, state.yaml, and notes/, then print the /goal Follow command instead of starting /goal automatically."
|
|
5
5
|
policy:
|
|
6
6
|
allow_implicit_invocation: true
|
|
@@ -406,6 +406,10 @@ function installPlugin() {
|
|
|
406
406
|
console.log("");
|
|
407
407
|
console.log("Restart Codex, then use:");
|
|
408
408
|
console.log(` $${canonicalSkillName}`);
|
|
409
|
+
console.log("");
|
|
410
|
+
console.log("Optional extensions:");
|
|
411
|
+
console.log(` npx ${canonicalCliName} extend`);
|
|
412
|
+
console.log(` npx ${canonicalCliName} extend install --all`);
|
|
409
413
|
}
|
|
410
414
|
|
|
411
415
|
function pluginCacheRoot(version) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface:
|
|
2
|
-
display_name: "
|
|
3
|
-
short_description: "
|
|
2
|
+
display_name: "Goal Prep"
|
|
3
|
+
short_description: "Prepare GoalBuddy boards before running /goal."
|
|
4
4
|
default_prompt: "Use goal-prep to run diagnostic intake on my rough or detailed goal. If the goal is vague or improvement-oriented, ask one guided question at a time, surface likely blind spots, and do not create files until intent, proof, scope, and board handling are clear or explicitly defaulted. If it is clear or already planned, prepare or repair goal.md, state.yaml, and notes/, then print the /goal Follow command instead of starting /goal automatically."
|
|
5
5
|
policy:
|
|
6
6
|
allow_implicit_invocation: true
|