Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Completion generation writes to standard output and never edits your shell profi
```bash
cockroach-browser completion bash
cockroach-browser completion zsh
cockroach-browser completion fish
cockroach-browser completion powershell
```

Expand Down Expand Up @@ -319,7 +320,7 @@ Then point CLI or SDK clients at `http://127.0.0.1:43110` and use that token fil
| `cockroach-browser bootstrap [--check-only]` | Initialize the data root, install Chromium only when missing, and probe an authenticated loopback daemon |
| `cockroach-browser setup` | Alias for `bootstrap` |
| `cockroach-browser doctor [--root DIR]` | Check Node, Chromium, data-root, and per-user service readiness |
| `cockroach-browser completion <bash\|zsh\|powershell>` | Print a completion script without modifying shell configuration |
| `cockroach-browser completion <bash\|zsh\|fish\|powershell>` | Print a completion script without modifying shell configuration |
| `cockroach-browser service install --confirm-local-owner` | Install an owner-scoped loopback autostart definition; macOS and Linux activate immediately, while Windows starts at next login |
| `cockroach-browser service status` | Show the exact per-user definition path and fixed daemon command |
| `cockroach-browser service uninstall --confirm-local-owner` | Disable and remove only the generated per-user definition |
Expand Down Expand Up @@ -393,7 +394,7 @@ Adapter-backed security surfaces:

### Deployment

CLI; generated bash, zsh, and PowerShell completions; owner-confirmed Windows, macOS, and Linux per-user daemon definitions; one-command bootstrap; TypeScript SDK; authenticated HTTP API; authenticated OpenAPI and Prometheus surfaces; native stdio MCP; Docker; local dashboard; authenticated remote workers and a capacity-aware worker pool; bounded activity polling and server-sent events; crash-resumable local jobs; doctor and health checks.
CLI; generated bash, zsh, Fish, and PowerShell completions; owner-confirmed Windows, macOS, and Linux per-user daemon definitions; one-command bootstrap; TypeScript SDK; authenticated HTTP API; authenticated OpenAPI and Prometheus surfaces; native stdio MCP; Docker; local dashboard; authenticated remote workers and a capacity-aware worker pool; bounded activity polling and server-sent events; crash-resumable local jobs; doctor and health checks.

### Integrations

Expand Down
3 changes: 3 additions & 0 deletions docs/operator-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ cockroach-browser completion bash > ~/.local/share/bash-completion/completions/c
# Zsh
cockroach-browser completion zsh > ~/.zfunc/_cockroach-browser

# Fish
cockroach-browser completion fish > ~/.config/fish/completions/cockroach-browser.fish

# PowerShell (inspect before adding it to your profile)
cockroach-browser completion powershell
```
Expand Down