goalbuddy 0.2.11 → 0.2.13
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/.agents/plugins/marketplace.json +20 -0
- package/CONTRIBUTING.md +2 -4
- package/README.md +113 -115
- package/goalbuddy/SKILL.md +28 -2
- package/internal/assets/goalbuddy-logo.svg +21 -0
- package/internal/assets/goalbuddy-og.png +0 -0
- package/internal/assets/goalbuddy-readme-hero.png +0 -0
- package/internal/cli/goal-maker.mjs +24 -3
- package/package.json +4 -7
- package/plugins/goalbuddy/.codex-plugin/plugin.json +1 -1
- package/plugins/goalbuddy/README.md +11 -1
- package/plugins/goalbuddy/skills/goalbuddy/SKILL.md +28 -2
- package/goal-maker/SKILL.md +0 -18
- package/goal-maker/agents/README.md +0 -23
- package/goal-maker/agents/config-snippet.toml +0 -5
- package/goal-maker/agents/goal_judge.toml +0 -29
- package/goal-maker/agents/goal_scout.toml +0 -26
- package/goal-maker/agents/goal_worker.toml +0 -28
- package/goal-maker/agents/openai.yaml +0 -6
- package/goal-maker/scripts/check-goal-state.mjs +0 -370
- package/goal-maker/scripts/install-agents.mjs +0 -28
- package/goal-maker/templates/agents.md +0 -48
- package/goal-maker/templates/goal-prompt.txt +0 -1
- package/goal-maker/templates/goal.md +0 -71
- package/goal-maker/templates/note.md +0 -22
- package/goal-maker/templates/state.yaml +0 -125
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
# Goal Maker v2 state.yaml
|
|
2
|
-
# Board truth lives here. goal.md is the editable charter; notes/ holds long receipts only.
|
|
3
|
-
|
|
4
|
-
version: 2
|
|
5
|
-
|
|
6
|
-
goal:
|
|
7
|
-
title: "<Goal title>"
|
|
8
|
-
slug: "<goal-slug>"
|
|
9
|
-
kind: open_ended # specific | open_ended | existing_plan | recovery | audit
|
|
10
|
-
tranche: "<continuous execution: complete successive safe verified slices until the full original outcome is complete>"
|
|
11
|
-
status: active # active | blocked | done
|
|
12
|
-
intake:
|
|
13
|
-
original_request: "<shortest faithful user request>"
|
|
14
|
-
interpreted_outcome: "<one sentence>"
|
|
15
|
-
input_shape: vague # vague | specific | existing_plan | recovery | audit
|
|
16
|
-
audience: unknown
|
|
17
|
-
authority: requested # requested | approved | inferred | needs_approval | blocked
|
|
18
|
-
proof_type: artifact # test | demo | artifact | metric | review | source_backed_answer | decision
|
|
19
|
-
completion_proof: "<observable signal that proves the full original outcome is complete>"
|
|
20
|
-
likely_misfire: "<how Goal Maker could succeed at the wrong thing>"
|
|
21
|
-
blind_spots_considered: []
|
|
22
|
-
existing_plan_facts: []
|
|
23
|
-
|
|
24
|
-
rules:
|
|
25
|
-
pm_owns_state: true
|
|
26
|
-
one_active_task: true
|
|
27
|
-
max_write_workers: 1
|
|
28
|
-
no_implementation_without_worker_or_pm_task: true
|
|
29
|
-
no_completion_without_judge_or_pm_audit: true
|
|
30
|
-
planning_is_not_completion: true
|
|
31
|
-
queued_required_worker_blocks_completion: true
|
|
32
|
-
continuous_until_full_outcome: true
|
|
33
|
-
missing_input_or_credentials_do_not_stop_goal: true
|
|
34
|
-
preserve_and_validate_existing_plan: true
|
|
35
|
-
intake_misfire_must_be_audited: true
|
|
36
|
-
|
|
37
|
-
agents:
|
|
38
|
-
scout: installed
|
|
39
|
-
worker: installed
|
|
40
|
-
judge: installed
|
|
41
|
-
|
|
42
|
-
active_task: T001
|
|
43
|
-
|
|
44
|
-
tasks:
|
|
45
|
-
- id: T001
|
|
46
|
-
type: scout
|
|
47
|
-
assignee: Scout
|
|
48
|
-
status: active
|
|
49
|
-
reasoning_hint: default # default | low | medium | high | xhigh
|
|
50
|
-
objective: "Map repo purpose, architecture, verification commands, health signals, and improvement candidates."
|
|
51
|
-
inputs:
|
|
52
|
-
- README.md
|
|
53
|
-
- package.json
|
|
54
|
-
- docs
|
|
55
|
-
- tests
|
|
56
|
-
constraints:
|
|
57
|
-
- "Read-only."
|
|
58
|
-
- "Do not edit implementation files."
|
|
59
|
-
- "Prefer concrete file-path evidence over generic advice."
|
|
60
|
-
expected_output:
|
|
61
|
-
- "Repo map"
|
|
62
|
-
- "Verification commands"
|
|
63
|
-
- "Ranked improvement candidates"
|
|
64
|
-
- "Candidate next tasks"
|
|
65
|
-
receipt: null
|
|
66
|
-
- id: T002
|
|
67
|
-
type: judge
|
|
68
|
-
assignee: Judge
|
|
69
|
-
status: queued
|
|
70
|
-
reasoning_hint: default
|
|
71
|
-
objective: "Review Scout findings and choose the first safe implementation task."
|
|
72
|
-
inputs:
|
|
73
|
-
- "T001 receipt"
|
|
74
|
-
constraints:
|
|
75
|
-
- "Do not implement."
|
|
76
|
-
- "Pick small reviewable work."
|
|
77
|
-
expected_output:
|
|
78
|
-
- "Decision"
|
|
79
|
-
- "Exact Worker objective"
|
|
80
|
-
- "allowed_files"
|
|
81
|
-
- "verify"
|
|
82
|
-
- "stop_if"
|
|
83
|
-
- "Blocked or deferred tasks"
|
|
84
|
-
receipt: null
|
|
85
|
-
- id: T003
|
|
86
|
-
type: worker
|
|
87
|
-
assignee: Worker
|
|
88
|
-
status: queued
|
|
89
|
-
reasoning_hint: default
|
|
90
|
-
objective: "Execute the first safe implementation task selected by Judge."
|
|
91
|
-
allowed_files: []
|
|
92
|
-
verify: []
|
|
93
|
-
stop_if:
|
|
94
|
-
- "Need files outside allowed_files."
|
|
95
|
-
- "Behavior is ambiguous."
|
|
96
|
-
- "Verification fails twice."
|
|
97
|
-
receipt: null
|
|
98
|
-
- id: T999
|
|
99
|
-
type: judge
|
|
100
|
-
assignee: Judge
|
|
101
|
-
status: queued
|
|
102
|
-
reasoning_hint: default
|
|
103
|
-
objective: "Audit whether the implemented slice satisfies the original user outcome for this tranche."
|
|
104
|
-
inputs:
|
|
105
|
-
- "All done task receipts"
|
|
106
|
-
- "Last verification"
|
|
107
|
-
- "Current dirty diff"
|
|
108
|
-
constraints:
|
|
109
|
-
- "Do not implement."
|
|
110
|
-
- "Reject completion if required Worker work is still queued or active."
|
|
111
|
-
- "Reject completion if the broader original outcome still has safe local follow-up slices."
|
|
112
|
-
- "Reject stopping only because a slice needs owner input, credentials, production access, destructive operations, or policy decisions."
|
|
113
|
-
expected_output:
|
|
114
|
-
- "complete | not_complete"
|
|
115
|
-
- "full_outcome_complete: true | false"
|
|
116
|
-
- "missing evidence"
|
|
117
|
-
- "next task if not complete"
|
|
118
|
-
receipt: null
|
|
119
|
-
|
|
120
|
-
checks:
|
|
121
|
-
dirty_fingerprint: unknown
|
|
122
|
-
last_verification:
|
|
123
|
-
result: unknown
|
|
124
|
-
task: null
|
|
125
|
-
commands: []
|