opencodekit 0.16.4 → 0.16.6
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/dist/index.js +1 -1
- package/dist/template/.opencode/AGENTS.md +106 -384
- package/dist/template/.opencode/README.md +170 -104
- package/dist/template/.opencode/agent/build.md +39 -32
- package/dist/template/.opencode/agent/explore.md +2 -0
- package/dist/template/.opencode/agent/review.md +3 -0
- package/dist/template/.opencode/agent/scout.md +22 -11
- package/dist/template/.opencode/command/create.md +164 -106
- package/dist/template/.opencode/command/design.md +5 -1
- package/dist/template/.opencode/command/handoff.md +6 -4
- package/dist/template/.opencode/command/init.md +1 -1
- package/dist/template/.opencode/command/plan.md +26 -23
- package/dist/template/.opencode/command/research.md +13 -6
- package/dist/template/.opencode/command/resume.md +8 -6
- package/dist/template/.opencode/command/ship.md +1 -1
- package/dist/template/.opencode/command/start.md +30 -25
- package/dist/template/.opencode/command/status.md +9 -42
- package/dist/template/.opencode/command/verify.md +11 -11
- package/dist/template/.opencode/memory/README.md +67 -37
- package/dist/template/.opencode/memory/_templates/prd.md +102 -18
- package/dist/template/.opencode/memory/project/gotchas.md +31 -0
- package/dist/template/.opencode/memory.db +0 -0
- package/dist/template/.opencode/memory.db-shm +0 -0
- package/dist/template/.opencode/memory.db-wal +0 -0
- package/dist/template/.opencode/opencode.json +0 -10
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/skill/beads/SKILL.md +164 -380
- package/dist/template/.opencode/skill/beads/references/BOUNDARIES.md +23 -22
- package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +23 -29
- package/dist/template/.opencode/skill/beads/references/RESUMABILITY.md +5 -8
- package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +43 -39
- package/dist/template/.opencode/skill/beads-bridge/SKILL.md +80 -53
- package/dist/template/.opencode/skill/brainstorming/SKILL.md +19 -5
- package/dist/template/.opencode/skill/context-engineering/SKILL.md +30 -63
- package/dist/template/.opencode/skill/context-management/SKILL.md +115 -0
- package/dist/template/.opencode/skill/deep-research/SKILL.md +4 -4
- package/dist/template/.opencode/skill/development-lifecycle/SKILL.md +305 -0
- package/dist/template/.opencode/skill/memory-system/SKILL.md +3 -3
- package/dist/template/.opencode/skill/prd/SKILL.md +47 -122
- package/dist/template/.opencode/skill/prd-task/SKILL.md +48 -4
- package/dist/template/.opencode/skill/prd-task/references/prd-schema.json +120 -24
- package/dist/template/.opencode/skill/swarm-coordination/SKILL.md +79 -61
- package/dist/template/.opencode/skill/tool-priority/SKILL.md +31 -22
- package/dist/template/.opencode/tool/context7.ts +183 -0
- package/dist/template/.opencode/tool/memory-admin.ts +445 -0
- package/dist/template/.opencode/tool/swarm.ts +572 -0
- package/package.json +1 -1
- package/dist/template/.opencode/memory/_templates/spec.md +0 -66
- package/dist/template/.opencode/tool/beads-sync.ts +0 -657
- package/dist/template/.opencode/tool/context7-query-docs.ts +0 -89
- package/dist/template/.opencode/tool/context7-resolve-library-id.ts +0 -113
- package/dist/template/.opencode/tool/memory-maintain.ts +0 -167
- package/dist/template/.opencode/tool/memory-migrate.ts +0 -319
- package/dist/template/.opencode/tool/swarm-delegate.ts +0 -180
- package/dist/template/.opencode/tool/swarm-monitor.ts +0 -388
- package/dist/template/.opencode/tool/swarm-plan.ts +0 -697
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Boundaries: When to Use
|
|
1
|
+
# Boundaries: When to Use br vs TodoWrite
|
|
2
2
|
|
|
3
3
|
Decision criteria for choosing between beads tools and TodoWrite.
|
|
4
4
|
|
|
@@ -6,12 +6,12 @@ Decision criteria for choosing between beads tools and TodoWrite.
|
|
|
6
6
|
|
|
7
7
|
**"Could I resume this work after 2 weeks away?"**
|
|
8
8
|
|
|
9
|
-
- If beads would help you resume → **use
|
|
9
|
+
- If beads would help you resume → **use br**
|
|
10
10
|
- If markdown skim would suffice → **TodoWrite is fine**
|
|
11
11
|
|
|
12
12
|
## Decision Matrix
|
|
13
13
|
|
|
14
|
-
### Use
|
|
14
|
+
### Use br for:
|
|
15
15
|
|
|
16
16
|
**Multi-Session Work**
|
|
17
17
|
|
|
@@ -78,7 +78,7 @@ Decision criteria for choosing between beads tools and TodoWrite.
|
|
|
78
78
|
|
|
79
79
|
## Detailed Comparison
|
|
80
80
|
|
|
81
|
-
| Aspect |
|
|
81
|
+
| Aspect | br CLI | TodoWrite |
|
|
82
82
|
| ---------------- | --------------------------------- | ---------------------- |
|
|
83
83
|
| **Persistence** | Git-backed, survives compaction | Session-only |
|
|
84
84
|
| **Dependencies** | Graph-based, auto ready detection | Manual |
|
|
@@ -89,10 +89,10 @@ Decision criteria for choosing between beads tools and TodoWrite.
|
|
|
89
89
|
|
|
90
90
|
## Integration Patterns
|
|
91
91
|
|
|
92
|
-
### Pattern 1:
|
|
92
|
+
### Pattern 1: br as Strategic, TodoWrite as Tactical
|
|
93
93
|
|
|
94
94
|
```
|
|
95
|
-
|
|
95
|
+
br task: "Implement user authentication" (epic)
|
|
96
96
|
├─ Child: "Create login endpoint"
|
|
97
97
|
├─ Child: "Add JWT validation" ← Currently working
|
|
98
98
|
└─ Child: "Implement logout"
|
|
@@ -108,16 +108,17 @@ TodoWrite (for JWT validation):
|
|
|
108
108
|
|
|
109
109
|
```
|
|
110
110
|
Session start:
|
|
111
|
-
-
|
|
111
|
+
- br ready gets "Add JWT validation"
|
|
112
|
+
- br update <id> --status in_progress
|
|
112
113
|
- Extract acceptance criteria into TodoWrite
|
|
113
114
|
- Work through TodoWrite items
|
|
114
|
-
- Update
|
|
115
|
-
-
|
|
115
|
+
- Update br notes as you learn
|
|
116
|
+
- br close <id> when TodoWrite complete
|
|
116
117
|
```
|
|
117
118
|
|
|
118
119
|
### Pattern 3: Transition Mid-Session
|
|
119
120
|
|
|
120
|
-
**From TodoWrite to
|
|
121
|
+
**From TodoWrite to br:**
|
|
121
122
|
|
|
122
123
|
Trigger signals:
|
|
123
124
|
|
|
@@ -129,11 +130,11 @@ Trigger signals:
|
|
|
129
130
|
**How to transition:**
|
|
130
131
|
|
|
131
132
|
```
|
|
132
|
-
1.
|
|
133
|
+
1. br create with current TodoWrite content
|
|
133
134
|
2. Note: "Discovered multi-session work"
|
|
134
135
|
3. Add dependencies as discovered
|
|
135
136
|
4. Keep TodoWrite for current session
|
|
136
|
-
5. Update
|
|
137
|
+
5. Update br notes before session ends
|
|
137
138
|
```
|
|
138
139
|
|
|
139
140
|
## Common Mistakes
|
|
@@ -147,9 +148,9 @@ Trigger signals:
|
|
|
147
148
|
- Lose design decisions
|
|
148
149
|
- Duplicate work
|
|
149
150
|
|
|
150
|
-
**Solution:** Use
|
|
151
|
+
**Solution:** Use br instead.
|
|
151
152
|
|
|
152
|
-
### Mistake 2:
|
|
153
|
+
### Mistake 2: br for Simple Linear Tasks
|
|
153
154
|
|
|
154
155
|
**What happens:**
|
|
155
156
|
|
|
@@ -168,9 +169,9 @@ Trigger signals:
|
|
|
168
169
|
- Keep using TodoWrite despite poor fit
|
|
169
170
|
- Lose context when session ends
|
|
170
171
|
|
|
171
|
-
**Solution:** Transition to
|
|
172
|
+
**Solution:** Transition to br when complexity appears.
|
|
172
173
|
|
|
173
|
-
### Mistake 4: Creating Too Many
|
|
174
|
+
### Mistake 4: Creating Too Many br Issues
|
|
174
175
|
|
|
175
176
|
**What happens:**
|
|
176
177
|
|
|
@@ -178,7 +179,7 @@ Trigger signals:
|
|
|
178
179
|
- Database cluttered
|
|
179
180
|
- Hard to find meaningful work
|
|
180
181
|
|
|
181
|
-
**Solution:** Use 2-week test. Would
|
|
182
|
+
**Solution:** Use 2-week test. Would br help after 2 weeks? If no, skip.
|
|
182
183
|
|
|
183
184
|
## The Transition Point
|
|
184
185
|
|
|
@@ -191,28 +192,28 @@ Trigger signals:
|
|
|
191
192
|
- "User might not continue today"
|
|
192
193
|
- "Found three related issues"
|
|
193
194
|
|
|
194
|
-
When you notice these: Create
|
|
195
|
+
When you notice these: Create br issue, preserve context.
|
|
195
196
|
|
|
196
197
|
## Summary Heuristics
|
|
197
198
|
|
|
198
199
|
**Time horizon:**
|
|
199
200
|
|
|
200
201
|
- Same session → TodoWrite
|
|
201
|
-
- Multiple sessions →
|
|
202
|
+
- Multiple sessions → br
|
|
202
203
|
|
|
203
204
|
**Dependency structure:**
|
|
204
205
|
|
|
205
206
|
- Linear steps → TodoWrite
|
|
206
|
-
- Blockers/prerequisites →
|
|
207
|
+
- Blockers/prerequisites → br
|
|
207
208
|
|
|
208
209
|
**Scope clarity:**
|
|
209
210
|
|
|
210
211
|
- Well-defined → TodoWrite
|
|
211
|
-
- Exploratory →
|
|
212
|
+
- Exploratory → br
|
|
212
213
|
|
|
213
214
|
**Multi-agent:**
|
|
214
215
|
|
|
215
216
|
- Single agent → Either
|
|
216
|
-
- Multiple agents →
|
|
217
|
+
- Multiple agents → br
|
|
217
218
|
|
|
218
219
|
**When in doubt:** Use the 2-week test.
|
|
@@ -4,15 +4,13 @@ Beads supports task dependencies for ordering work.
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
Dependencies affect what work is "ready" - tasks with unmet dependencies won't appear in `
|
|
7
|
+
Dependencies affect what work is "ready" - tasks with unmet dependencies won't appear in `br ready` results.
|
|
8
8
|
|
|
9
9
|
## Creating Dependencies
|
|
10
10
|
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
deps: ["task:setup-db"], // depends on setup-db task
|
|
15
|
-
});
|
|
11
|
+
```bash
|
|
12
|
+
br create --title "Implement API endpoint" --blocked-by setup-db
|
|
13
|
+
# This task depends on setup-db completing first
|
|
16
14
|
```
|
|
17
15
|
|
|
18
16
|
## Dependency Patterns
|
|
@@ -23,7 +21,7 @@ bd_add({
|
|
|
23
21
|
setup-db → implement-api → add-tests → deploy
|
|
24
22
|
```
|
|
25
23
|
|
|
26
|
-
Each task depends on the previous. `
|
|
24
|
+
Each task depends on the previous. `br ready` shows only the current step.
|
|
27
25
|
|
|
28
26
|
### Parallel Then Merge
|
|
29
27
|
|
|
@@ -47,19 +45,15 @@ One foundational task blocks multiple features.
|
|
|
47
45
|
|
|
48
46
|
## Epic with Children
|
|
49
47
|
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
parent: "oauth-abc",
|
|
60
|
-
deps: ["task:credentials"],
|
|
61
|
-
});
|
|
62
|
-
bd_add({ title: "Add UI", parent: "oauth-abc", deps: ["task:flow"] });
|
|
48
|
+
```bash
|
|
49
|
+
# Create epic
|
|
50
|
+
br create --title "OAuth Integration" --type epic --priority 1
|
|
51
|
+
# Returns: oauth-abc
|
|
52
|
+
|
|
53
|
+
# Create children with parent
|
|
54
|
+
br create --title "Setup credentials" --parent oauth-abc
|
|
55
|
+
br create --title "Implement flow" --parent oauth-abc --blocked-by credentials
|
|
56
|
+
br create --title "Add UI" --parent oauth-abc --blocked-by flow
|
|
63
57
|
```
|
|
64
58
|
|
|
65
59
|
## Automatic Unblocking
|
|
@@ -67,9 +61,9 @@ bd_add({ title: "Add UI", parent: "oauth-abc", deps: ["task:flow"] });
|
|
|
67
61
|
When you close a task that's blocking others:
|
|
68
62
|
|
|
69
63
|
```
|
|
70
|
-
1.
|
|
64
|
+
1. br close setup-db --reason "Schema created"
|
|
71
65
|
2. Beads automatically updates: implement-api is now ready
|
|
72
|
-
3.
|
|
66
|
+
3. br ready returns implement-api
|
|
73
67
|
4. No manual unblocking needed
|
|
74
68
|
```
|
|
75
69
|
|
|
@@ -91,8 +85,8 @@ docs depends on feature // "prefer to update docs after"
|
|
|
91
85
|
|
|
92
86
|
**Wrong:**
|
|
93
87
|
|
|
94
|
-
```
|
|
95
|
-
|
|
88
|
+
```bash
|
|
89
|
+
br create --title "API" --blocked-by tests # API depends on tests?
|
|
96
90
|
```
|
|
97
91
|
|
|
98
92
|
**Problem:** Usually tests depend on API, not the other way.
|
|
@@ -121,10 +115,10 @@ bd_add({ title: "API", deps: ["task:tests"] }) // API depends on tests?
|
|
|
121
115
|
|
|
122
116
|
## Viewing Dependencies
|
|
123
117
|
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
|
|
118
|
+
```bash
|
|
119
|
+
br show <id>
|
|
120
|
+
# Shows what blocks this task and what this task blocks
|
|
127
121
|
|
|
128
|
-
|
|
129
|
-
|
|
122
|
+
br list --status open
|
|
123
|
+
# Shows all open tasks, check dependencies in details
|
|
130
124
|
```
|
|
@@ -52,28 +52,26 @@ DESIRED OUTPUT:
|
|
|
52
52
|
Actual structure, not just "return markdown"
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
````
|
|
56
56
|
|
|
57
57
|
## Example: Before vs After
|
|
58
58
|
|
|
59
59
|
### Not Resumable
|
|
60
60
|
|
|
61
61
|
```
|
|
62
|
-
|
|
63
62
|
Title: Add dynamic capabilities
|
|
64
63
|
Notes: Working on it. Made some progress.
|
|
65
|
-
|
|
66
|
-
```
|
|
64
|
+
````
|
|
67
65
|
|
|
68
66
|
**Problem:** Future agent doesn't know:
|
|
67
|
+
|
|
69
68
|
- Which API endpoints to call
|
|
70
69
|
- What responses look like
|
|
71
70
|
- What format to return
|
|
72
71
|
|
|
73
72
|
### Resumable
|
|
74
73
|
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
````
|
|
77
75
|
Title: Add dynamic capabilities resources
|
|
78
76
|
|
|
79
77
|
Notes:
|
|
@@ -82,12 +80,11 @@ IN PROGRESS: Formatting response as markdown.
|
|
|
82
80
|
NEXT: Add caching for API responses.
|
|
83
81
|
|
|
84
82
|
WORKING CODE:
|
|
85
|
-
|
|
86
83
|
```python
|
|
87
84
|
service = build('drive', 'v3', credentials=creds)
|
|
88
85
|
about = service.about().get(fields='importFormats').execute()
|
|
89
86
|
# Returns dict with 49 entries
|
|
90
|
-
|
|
87
|
+
````
|
|
91
88
|
|
|
92
89
|
DESIRED OUTPUT:
|
|
93
90
|
|
|
@@ -2,17 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
Detailed step-by-step workflows for common beads usage patterns.
|
|
4
4
|
|
|
5
|
+
**Note:** `br` (beads_rust) is non-invasive and never executes git commands. After `br sync --flush-only`, you must manually run `git add .beads/ && git commit`.
|
|
6
|
+
|
|
5
7
|
## Session Start Workflow
|
|
6
8
|
|
|
7
9
|
**Every session when beads is available:**
|
|
8
10
|
|
|
9
11
|
```
|
|
10
12
|
Session Start:
|
|
11
|
-
- [ ]
|
|
12
|
-
- [ ]
|
|
13
|
-
- [ ] If none ready,
|
|
14
|
-
- [ ]
|
|
15
|
-
- [ ]
|
|
13
|
+
- [ ] br ready to find unblocked work
|
|
14
|
+
- [ ] br update <id> --status in_progress to claim
|
|
15
|
+
- [ ] If none ready, br list --status open
|
|
16
|
+
- [ ] br show <id> for full context
|
|
17
|
+
- [ ] Begin work
|
|
16
18
|
```
|
|
17
19
|
|
|
18
20
|
## Compaction Survival
|
|
@@ -23,8 +25,8 @@ Session Start:
|
|
|
23
25
|
|
|
24
26
|
```
|
|
25
27
|
After Compaction:
|
|
26
|
-
- [ ]
|
|
27
|
-
- [ ]
|
|
28
|
+
- [ ] br list --status in_progress to see active work
|
|
29
|
+
- [ ] br show <id> for each in_progress task
|
|
28
30
|
- [ ] Read notes: COMPLETED, IN PROGRESS, BLOCKERS, KEY DECISIONS
|
|
29
31
|
- [ ] Reconstruct TodoWrite from notes if needed
|
|
30
32
|
```
|
|
@@ -54,7 +56,7 @@ Working on auth. Made some progress.
|
|
|
54
56
|
Discovery:
|
|
55
57
|
- [ ] Notice bug, improvement, or follow-up
|
|
56
58
|
- [ ] Assess: blocker or deferrable?
|
|
57
|
-
- [ ]
|
|
59
|
+
- [ ] br create --title "..." --type bug --priority 1
|
|
58
60
|
- [ ] If blocker: pause and switch
|
|
59
61
|
- [ ] If deferrable: continue current work
|
|
60
62
|
```
|
|
@@ -86,15 +88,15 @@ A **Ready Front** is the set of tasks with all dependencies satisfied.
|
|
|
86
88
|
|
|
87
89
|
**Example: OAuth Integration**
|
|
88
90
|
|
|
89
|
-
```
|
|
90
|
-
|
|
91
|
-
|
|
91
|
+
```bash
|
|
92
|
+
# Create epic
|
|
93
|
+
br create --title "OAuth integration" --type epic --priority 1
|
|
92
94
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
95
|
+
# Walk backward: What does OAuth need?
|
|
96
|
+
br create --title "Login/logout endpoints" --parent oauth-abc
|
|
97
|
+
br create --title "Token storage and refresh" --parent oauth-abc
|
|
98
|
+
br create --title "Authorization code flow" --parent oauth-abc
|
|
99
|
+
br create --title "OAuth client credentials" --parent oauth-abc # foundation
|
|
98
100
|
```
|
|
99
101
|
|
|
100
102
|
## Side Quest Handling
|
|
@@ -102,9 +104,9 @@ bd_add({ title: "OAuth client credentials", parent: "oauth-abc" }); // foundatio
|
|
|
102
104
|
```
|
|
103
105
|
Side Quest:
|
|
104
106
|
- [ ] During main work, discover problem
|
|
105
|
-
- [ ]
|
|
107
|
+
- [ ] br create for side quest
|
|
106
108
|
- [ ] Assess: blocker or deferrable?
|
|
107
|
-
- [ ] If blocker:
|
|
109
|
+
- [ ] If blocker: switch to side quest
|
|
108
110
|
- [ ] If deferrable: note it, continue main work
|
|
109
111
|
```
|
|
110
112
|
|
|
@@ -116,8 +118,10 @@ Side Quest:
|
|
|
116
118
|
Session End:
|
|
117
119
|
- [ ] Work reaching stopping point
|
|
118
120
|
- [ ] Update notes with COMPLETED/IN PROGRESS/NEXT
|
|
119
|
-
- [ ]
|
|
121
|
+
- [ ] br close <id> --reason "..." if task complete
|
|
120
122
|
- [ ] Otherwise leave in_progress with notes
|
|
123
|
+
- [ ] br sync --flush-only
|
|
124
|
+
- [ ] git add .beads/ && git commit -m "session end"
|
|
121
125
|
- [ ] RESTART SESSION
|
|
122
126
|
```
|
|
123
127
|
|
|
@@ -125,8 +129,8 @@ Session End:
|
|
|
125
129
|
|
|
126
130
|
```
|
|
127
131
|
Session Start with in_progress:
|
|
128
|
-
- [ ]
|
|
129
|
-
- [ ]
|
|
132
|
+
- [ ] br list --status in_progress
|
|
133
|
+
- [ ] br show <id> for each
|
|
130
134
|
- [ ] Read notes field
|
|
131
135
|
- [ ] Continue from notes context
|
|
132
136
|
```
|
|
@@ -137,9 +141,8 @@ Session Start with in_progress:
|
|
|
137
141
|
|
|
138
142
|
```
|
|
139
143
|
Unblocking:
|
|
140
|
-
- [ ]
|
|
141
|
-
- [ ]
|
|
142
|
-
- [ ] Identify blocker tasks
|
|
144
|
+
- [ ] br list --status open to see all tasks
|
|
145
|
+
- [ ] Identify blocked tasks and their blockers
|
|
143
146
|
- [ ] Work on blockers first
|
|
144
147
|
- [ ] Closing blocker unblocks dependent work
|
|
145
148
|
```
|
|
@@ -150,14 +153,15 @@ Unblocking:
|
|
|
150
153
|
|
|
151
154
|
```
|
|
152
155
|
Hybrid:
|
|
153
|
-
- [ ]
|
|
156
|
+
- [ ] br ready to find high-level task
|
|
157
|
+
- [ ] br update <id> --status in_progress
|
|
154
158
|
- [ ] Create TodoWrite from acceptance criteria
|
|
155
159
|
- [ ] Work through TodoWrite items
|
|
156
|
-
- [ ] Update
|
|
157
|
-
- [ ] When TodoWrite complete,
|
|
160
|
+
- [ ] Update br notes as you learn
|
|
161
|
+
- [ ] When TodoWrite complete, br close <id>
|
|
158
162
|
```
|
|
159
163
|
|
|
160
|
-
**Why hybrid**:
|
|
164
|
+
**Why hybrid**: br provides persistent structure, TodoWrite provides visible progress.
|
|
161
165
|
|
|
162
166
|
## Common Patterns
|
|
163
167
|
|
|
@@ -166,7 +170,7 @@ Hybrid:
|
|
|
166
170
|
```
|
|
167
171
|
1. Create research task
|
|
168
172
|
2. Update notes with findings
|
|
169
|
-
3.
|
|
173
|
+
3. br create for discoveries
|
|
170
174
|
4. Close research with conclusion
|
|
171
175
|
```
|
|
172
176
|
|
|
@@ -185,7 +189,7 @@ Hybrid:
|
|
|
185
189
|
```
|
|
186
190
|
1. Create tasks for each step
|
|
187
191
|
2. Work through in dependency order
|
|
188
|
-
3.
|
|
192
|
+
3. br ready shows next step
|
|
189
193
|
4. Each completion unblocks next
|
|
190
194
|
```
|
|
191
195
|
|
|
@@ -194,10 +198,9 @@ Hybrid:
|
|
|
194
198
|
### Starting Any Session
|
|
195
199
|
|
|
196
200
|
```
|
|
197
|
-
- [ ]
|
|
198
|
-
- [ ]
|
|
199
|
-
- [ ]
|
|
200
|
-
- [ ] bd_reserve() files
|
|
201
|
+
- [ ] br ready
|
|
202
|
+
- [ ] br update <id> --status in_progress
|
|
203
|
+
- [ ] br show <id> for context
|
|
201
204
|
- [ ] Begin work
|
|
202
205
|
```
|
|
203
206
|
|
|
@@ -205,10 +208,9 @@ Hybrid:
|
|
|
205
208
|
|
|
206
209
|
```
|
|
207
210
|
- [ ] Notice new work needed
|
|
208
|
-
- [ ]
|
|
209
|
-
- [ ] Add context in
|
|
211
|
+
- [ ] br create --title "..." with clear title
|
|
212
|
+
- [ ] Add context in description
|
|
210
213
|
- [ ] Assess blocker vs deferrable
|
|
211
|
-
- [ ] Update statuses
|
|
212
214
|
```
|
|
213
215
|
|
|
214
216
|
### Completing Work
|
|
@@ -216,7 +218,9 @@ Hybrid:
|
|
|
216
218
|
```
|
|
217
219
|
- [ ] Implementation done
|
|
218
220
|
- [ ] Tests passing
|
|
219
|
-
- [ ]
|
|
220
|
-
- [ ]
|
|
221
|
+
- [ ] br close <id> --reason "..."
|
|
222
|
+
- [ ] br sync --flush-only
|
|
223
|
+
- [ ] git add .beads/ && git commit
|
|
224
|
+
- [ ] br ready for next work
|
|
221
225
|
- [ ] RESTART SESSION
|
|
222
226
|
```
|