opencode-beads 0.5.3 → 0.5.4

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
@@ -8,6 +8,7 @@
8
8
  > To minimize maintenance, this plugin defers to beads and limits its scope to bug fixes and syncing upstream vendor plugin content. Feature requests and additional customization are generally out of scope.
9
9
  >
10
10
  > If you want to customize behavior, the plugin surface area is small — forking or copying it locally is encouraged.
11
+
11
12
  ## Installation
12
13
 
13
14
  Install the beads CLI:
@@ -32,7 +33,7 @@ Optionally, pin to a specific version for stability:
32
33
 
33
34
  ```json
34
35
  {
35
- "plugin": ["opencode-beads@0.5.3"]
36
+ "plugin": ["opencode-beads@0.5.4"]
36
37
  }
37
38
  ```
38
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-beads",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "type": "module",
5
5
  "description": "A plugin for OpenCode that provides integration with the beads issue tracker.",
6
6
  "author": "Josh Thomas <josh@joshthomas.dev>",
@@ -71,7 +71,7 @@ The diagram colors are determined by your Mermaid theme (default, dark, forest,
71
71
 
72
72
  ## Examples
73
73
 
74
- - `bd dep add bd-10 bd-20 --type blocks`: bd-10 blocks bd-20
74
+ - `bd dep add bd-10 bd-20 --type blocks`: bd-10 depends on bd-20 (bd-20 blocks bd-10)
75
75
  - `bd dep tree bd-20`: Show what blocks bd-20 (dependency tree going UP)
76
76
  - `bd dep tree bd-1 --reverse`: Show what was discovered from bd-1 (dependent tree going DOWN)
77
77
  - `bd dep tree bd-1 --reverse --max-depth 3`: Show discovery tree with depth limit
@@ -19,7 +19,8 @@ Manage epics (large features composed of multiple issues).
19
19
  ## Epic Workflow
20
20
 
21
21
  1. Create epic: `bd create "Large Feature" -t epic -p 1`
22
- 2. Link subtasks: `bd dep add bd-10 bd-20 --type parent-child` (epic bd-10 is parent of task bd-20)
22
+ 2. Link subtasks: `bd dep add bd-20 bd-10 --type parent-child` (task bd-20 is child of epic bd-10)
23
+ - Or at creation: `bd create "Subtask title" -t task --parent bd-10`
23
24
  3. Track progress: `bd epic status`
24
25
  4. Auto-close when done: `bd epic close-eligible`
25
26
 
@@ -15,7 +15,7 @@ Issues are sorted by ID for consistent diffs, making git diffs readable.
15
15
 
16
16
  ## Automatic Export
17
17
 
18
- The daemon automatically exports to `.beads/issues.jsonl` after any CRUD operation (5-second debounce). Manual export is rarely needed unless you need a custom output location or filtered export.
18
+ The Dolt server automatically exports to `.beads/issues.jsonl` after any CRUD operation (5-second debounce). Manual export is rarely needed unless you need a custom output location or filtered export.
19
19
 
20
20
  Export is used for:
21
21
  - Git version control
@@ -28,7 +28,7 @@ bd import -i issues.jsonl --dry-run
28
28
 
29
29
  ## Automatic Import
30
30
 
31
- The daemon automatically imports from `.beads/issues.jsonl` when it's newer than the database (e.g., after `git pull`). Manual import is rarely needed.
31
+ The Dolt server automatically imports from `.beads/issues.jsonl` when it's newer than the database (e.g., after `git pull`). Manual import is rarely needed.
32
32
 
33
33
  ## Options
34
34
 
@@ -51,4 +51,4 @@ The merge command includes safety checks:
51
51
 
52
52
  ## Note
53
53
 
54
- Most users should rely on the daemon's automatic sync (`bd daemon --auto-commit --auto-push`) instead of running manual sync. This command is useful for one-off syncs or when not using the daemon.
54
+ Most users should rely on the Dolt server's automatic sync (with `dolt.auto-commit` enabled) instead of running manual sync. This command is useful for one-off syncs or when not using the Dolt server.