You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .beads/README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,32 +14,32 @@ Beads is issue tracking that lives in your repo, making it perfect for AI coding
14
14
15
15
```bash
16
16
# Create new issues
17
-
bd create "Add user authentication"
17
+
br create "Add user authentication"
18
18
19
19
# View all issues
20
-
bd list
20
+
br list
21
21
22
22
# View issue details
23
-
bd show <issue-id>
23
+
br show <issue-id>
24
24
25
25
# Update issue status
26
-
bd update <issue-id> --status in_progress
27
-
bd update <issue-id> --status done
26
+
br update <issue-id> --status in_progress
27
+
br update <issue-id> --status done
28
28
29
29
# Sync with git remote
30
-
bd sync
30
+
br sync
31
31
```
32
32
33
33
## Daemon (Optional)
34
34
35
-
Beads has an optional background daemon (`bd daemon`) that auto-syncs issues with git.
35
+
Beads has an optional background daemon (`br daemon`) that auto-syncs issues with git.
36
36
37
37
In this repo, the sync branch is configured as `main`. Running the daemon while you are on a different branch can cause `.beads/issues.jsonl` to be rewritten from `main`, leaving your working tree dirty and blocking `git pull --rebase`.
38
38
39
39
Recommended workflow:
40
-
- Prefer manual sync: `bd sync` (default).
41
-
- If you use the daemon, run it only while you are on `main`, or run it in local-only mode: `bd daemon --start --local`.
42
-
- If `.beads/issues.jsonl` is changing unexpectedly, check/stop the daemon: `bd daemon --status` / `bd daemon --stop`.
40
+
- Prefer manual sync: `br sync` (default).
41
+
- If you use the daemon, run it only while you are on `main`, or run it in local-only mode: `br daemon --start --local`.
42
+
- If `.beads/issues.jsonl` is changing unexpectedly, check/stop the daemon: `br daemon --status` / `br daemon --stop`.
43
43
44
44
### Working with Issues
45
45
@@ -75,16 +75,16 @@ Try Beads in your own projects:
0 commit comments