fix(docs): update command syntax from '--' to single argument format for start, stop and status. (#1086)

This commit is contained in:
Michael
2026-01-15 12:43:07 +08:00
committed by GitHub
parent 9e639da5ba
commit b9d2799d29
19 changed files with 54 additions and 54 deletions

View File

@@ -288,7 +288,7 @@ Test daemon RPC with multiple repositories:
```bash
# Start the daemon first
cd /path/to/beads
./bd daemon --start
./bd daemon start
# Run multi-repo test
cd integrations/beads-mcp

View File

@@ -28,7 +28,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
In your beads project directory:
```bash
bd daemon --start
bd daemon start
```
The daemon will:
@@ -108,19 +108,19 @@ If you want to temporarily use CLI mode:
```bash
# Start daemon
bd daemon --start
bd daemon start
# Check status
bd daemon --status
bd daemon status
# View logs
bd daemons logs .
# Stop daemon
bd daemon --stop
bd daemon stop
# Restart daemon
bd daemon --stop && bd daemon --start
bd daemon stop && bd daemon start
```
## Troubleshooting
@@ -130,14 +130,14 @@ bd daemon --stop && bd daemon --start
Start the daemon in your beads project:
```bash
cd ~/src/vc/adar/beads
bd daemon --start
bd daemon start
```
### Wrong database being used
1. Check where daemon is running:
```bash
bd daemon --status
bd daemon status
```
2. Use `set_context` tool in Claude to set workspace root:

View File

@@ -111,7 +111,7 @@ class BdDaemonClient(BdClientBase):
# No socket found anywhere
raise DaemonNotRunningError(
"Daemon socket not found. Is the daemon running? Try: bd daemon --start"
"Daemon socket not found. Is the daemon running? Try: bd daemon start"
)
async def _send_request(self, operation: str, args: Dict[str, Any]) -> Any: