fix(docs): update command syntax from '--' to single argument format for start, stop and status. (#1086)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user