goalbuddy 0.2.19 → 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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goalbuddy",
3
- "version": "0.2.19",
3
+ "version": "0.2.20",
4
4
  "description": "Turn open-ended Codex goals into a GoalBuddy Scout/Judge/Worker board with receipts, verification, and optional extensions.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goalbuddy",
3
- "version": "0.2.19",
3
+ "version": "0.2.20",
4
4
  "description": "Turn broad Codex work into verified GoalBuddy boards with Scout, Judge, Worker, receipts, and optional extensions.",
5
5
  "author": {
6
6
  "name": "tolibear",