goalbuddy 0.3.2 → 0.3.5

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.
Files changed (51) hide show
  1. package/README.md +28 -3
  2. package/RELEASE-0.3.5.md +324 -0
  3. package/goalbuddy/SKILL.md +8 -2
  4. package/goalbuddy/agents/goal_judge.toml +29 -17
  5. package/goalbuddy/agents/goal_scout.toml +34 -14
  6. package/goalbuddy/agents/goal_worker.toml +32 -15
  7. package/goalbuddy/extend/local-goal-board/README.md +8 -4
  8. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/goal.md +3 -0
  9. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/notes/.gitkeep +1 -0
  10. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/state.yaml +60 -0
  11. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/goal.md +3 -0
  12. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/notes/.gitkeep +1 -0
  13. package/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/state.yaml +52 -0
  14. package/goalbuddy/extend/local-goal-board/extension.yaml +6 -4
  15. package/goalbuddy/extend/local-goal-board/scripts/lib/goal-board.mjs +940 -24
  16. package/goalbuddy/extend/local-goal-board/scripts/local-goal-board.mjs +389 -54
  17. package/goalbuddy/extend/local-goal-board/test/local-goal-board.test.mjs +420 -4
  18. package/goalbuddy/scripts/check-goal-state.mjs +116 -6
  19. package/goalbuddy/scripts/parallel-plan.mjs +191 -0
  20. package/goalbuddy/scripts/render-task-prompt.mjs +248 -0
  21. package/goalbuddy/templates/agents.md +2 -2
  22. package/goalbuddy/templates/state.yaml +8 -0
  23. package/internal/assets/goalbuddy-v0.3.5-release.png +0 -0
  24. package/internal/cli/goal-maker.mjs +64 -1
  25. package/package.json +3 -2
  26. package/plugins/goalbuddy/.claude-plugin/plugin.json +2 -2
  27. package/plugins/goalbuddy/.codex-plugin/plugin.json +4 -4
  28. package/plugins/goalbuddy/README.md +5 -3
  29. package/plugins/goalbuddy/agents/goal-judge.md +31 -16
  30. package/plugins/goalbuddy/agents/goal-scout.md +38 -13
  31. package/plugins/goalbuddy/agents/goal-worker.md +35 -14
  32. package/plugins/goalbuddy/skills/goalbuddy/SKILL.md +8 -2
  33. package/plugins/goalbuddy/skills/goalbuddy/agents/goal_judge.toml +29 -17
  34. package/plugins/goalbuddy/skills/goalbuddy/agents/goal_scout.toml +34 -14
  35. package/plugins/goalbuddy/skills/goalbuddy/agents/goal_worker.toml +32 -15
  36. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/README.md +8 -4
  37. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/goal.md +3 -0
  38. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/notes/.gitkeep +1 -0
  39. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/state.yaml +60 -0
  40. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/goal.md +3 -0
  41. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/notes/.gitkeep +1 -0
  42. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/examples/subgoal-parent/subgoals/T004-board-view/state.yaml +52 -0
  43. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/extension.yaml +6 -4
  44. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/scripts/lib/goal-board.mjs +940 -24
  45. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/scripts/local-goal-board.mjs +389 -54
  46. package/plugins/goalbuddy/skills/goalbuddy/extend/local-goal-board/test/local-goal-board.test.mjs +420 -4
  47. package/plugins/goalbuddy/skills/goalbuddy/scripts/check-goal-state.mjs +116 -6
  48. package/plugins/goalbuddy/skills/goalbuddy/scripts/parallel-plan.mjs +191 -0
  49. package/plugins/goalbuddy/skills/goalbuddy/scripts/render-task-prompt.mjs +248 -0
  50. package/plugins/goalbuddy/skills/goalbuddy/templates/agents.md +2 -2
  51. package/plugins/goalbuddy/skills/goalbuddy/templates/state.yaml +8 -0
@@ -0,0 +1,60 @@
1
+ version: 2
2
+
3
+ goal:
4
+ title: "Subgoal Parent Board"
5
+ slug: "subgoal-parent-board"
6
+ kind: specific
7
+ tranche: "Render a parent task with an embedded child board."
8
+ status: active
9
+
10
+ agents:
11
+ scout: installed
12
+ worker: installed
13
+ judge: installed
14
+
15
+ active_task: T004
16
+
17
+ tasks:
18
+ - id: T001
19
+ type: scout
20
+ assignee: Scout
21
+ status: done
22
+ objective: "Map the sub-goal display requirements."
23
+ receipt:
24
+ result: done
25
+ summary: "Confirmed the child board should render only after opening the parent task."
26
+ evidence:
27
+ - docs/superpowers/specs/2026-05-11-goalbuddy-subgoals-design.md
28
+ - id: T004
29
+ type: worker
30
+ assignee: Worker
31
+ status: active
32
+ objective: "Build the sub-goal board view."
33
+ allowed_files:
34
+ - goalbuddy/extend/local-goal-board/scripts/lib/goal-board.mjs
35
+ - goalbuddy/extend/local-goal-board/test/local-goal-board.test.mjs
36
+ verify:
37
+ - node --test goalbuddy/extend/local-goal-board/test/local-goal-board.test.mjs
38
+ stop_if:
39
+ - "Need files outside allowed_files."
40
+ subgoal:
41
+ status: active
42
+ path: subgoals/T004-board-view/state.yaml
43
+ owner: Worker
44
+ created_from: T004
45
+ depth: 1
46
+ rollup_receipt: null
47
+ receipt: null
48
+ - id: T999
49
+ type: judge
50
+ assignee: Judge
51
+ status: queued
52
+ objective: "Audit the sub-goal rendering behavior."
53
+ receipt: null
54
+
55
+ checks:
56
+ dirty_fingerprint: unknown
57
+ last_verification:
58
+ result: unknown
59
+ task: null
60
+ commands: []
@@ -0,0 +1,3 @@
1
+ # T004 Board View Subgoal
2
+
3
+ Fixture child board linked from the parent board.
@@ -0,0 +1,52 @@
1
+ version: 2
2
+
3
+ goal:
4
+ title: "T004 Board View Subgoal"
5
+ slug: "t004-board-view-subgoal"
6
+ kind: specific
7
+ tranche: "Render the child board inside the parent task detail."
8
+ status: active
9
+
10
+ agents:
11
+ scout: installed
12
+ worker: installed
13
+ judge: installed
14
+
15
+ active_task: T002
16
+
17
+ tasks:
18
+ - id: T001
19
+ type: scout
20
+ assignee: Scout
21
+ status: done
22
+ objective: "Map the child board data needed by the modal."
23
+ receipt:
24
+ result: done
25
+ summary: "Child board payload needs normal columns and task details."
26
+ evidence:
27
+ - goalbuddy/extend/local-goal-board/scripts/lib/goal-board.mjs
28
+ - id: T002
29
+ type: worker
30
+ assignee: Worker
31
+ status: active
32
+ objective: "Render the read-only embedded child board."
33
+ allowed_files:
34
+ - goalbuddy/extend/local-goal-board/scripts/lib/goal-board.mjs
35
+ verify:
36
+ - node --test goalbuddy/extend/local-goal-board/test/local-goal-board.test.mjs
37
+ stop_if:
38
+ - "Need files outside allowed_files."
39
+ receipt: null
40
+ - id: T003
41
+ type: judge
42
+ assignee: Judge
43
+ status: queued
44
+ objective: "Audit the embedded child board rendering."
45
+ receipt: null
46
+
47
+ checks:
48
+ dirty_fingerprint: unknown
49
+ last_verification:
50
+ result: unknown
51
+ task: null
52
+ commands: []
@@ -1,14 +1,15 @@
1
1
  id: local-goal-board
2
2
  name: Local Goal Board
3
3
  kind: visualization
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  source_of_truth: local
6
- description: Generate and serve a minimal GoalBuddy-branded local Kanban board that updates live from a goal directory's state.yaml and notes.
7
- local_use_prompt: Run the bundled local board script for docs/goals/<slug>. It writes a tiny web app into docs/goals/<slug>/.goalbuddy-board and serves it on 127.0.0.1 with live SSE updates from state.yaml and notes. Use --once --json for generation checks and no long-running server.
6
+ description: Generate and serve a GoalBuddy-branded local Kanban board that updates live from a goal directory's state.yaml, notes, and linked depth-1 sub-goals.
7
+ local_use_prompt: Run the bundled local board script for docs/goals/<slug>. It writes a tiny web app into docs/goals/<slug>/.goalbuddy-board and serves it through the shared goalbuddy.localhost:41737 local board hub with live SSE updates from state.yaml, notes, and linked depth-1 sub-goals. Multiple active boards are available from the board header switcher. Use --once --json for generation checks and no long-running server.
8
8
  use_when:
9
9
  - A human wants to watch a GoalBuddy run in a local board UI.
10
10
  - The goal needs GitHub-Projects-like visibility without GitHub credentials.
11
11
  - state.yaml and notes should remain the source of truth while the browser updates live.
12
+ - A parent task links a depth-1 child board under subgoals/.
12
13
  activation: user_requested
13
14
  outputs:
14
15
  - Local GoalBuddy board web app
@@ -18,10 +19,11 @@ safe_by_default: true
18
19
  reads:
19
20
  - docs/goals/<slug>/state.yaml
20
21
  - docs/goals/<slug>/notes
22
+ - docs/goals/<slug>/subgoals
21
23
  writes:
22
24
  - docs/goals/<slug>/.goalbuddy-board
23
25
  side_effects:
24
- - Starts a local-only HTTP server when not run with --once.
26
+ - Starts or reuses the shared local-only HTTP board hub when not run with --once.
25
27
  agent_instructions:
26
28
  - Use the bundled local-goal-board script; do not build a static-only mockup.
27
29
  - Keep state.yaml authoritative; the app is only a viewer.