docs(UX): improve daemon and merge documentation (bd-bt6y)

- Clarify bd merge help text: git merge driver, not for duplicate issues
- Add Do I Need the Daemon section to DAEMON.md
- Add daemon overview section to QUICKSTART.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-11-28 23:11:24 -08:00
parent 51db4c8212
commit 9abe99e05a
4 changed files with 144 additions and 78 deletions

View File

@@ -231,6 +231,28 @@ bd update bd-42 --status in_progress # Reserves instantly
See [AGENT_MAIL.md](AGENT_MAIL.md) for complete guide.
## Background Daemon
bd runs a background daemon for auto-sync and performance. You rarely need to manage it directly:
```bash
# Check daemon status
bd info | grep daemon
# List all running daemons
bd daemons list
# Force direct mode (skip daemon)
bd --no-daemon ready
```
**When to disable daemon:**
- Git worktrees (required: `bd --no-daemon`)
- CI/CD pipelines
- Resource-constrained environments
See [DAEMON.md](DAEMON.md) for complete daemon management guide.
## Next Steps
- Add labels: `./bd create "Task" -l "backend,urgent"`