> For the complete documentation index, see [llms.txt](https://docs.sesori.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sesori.com/setup/bridge-cli.md).

# Bridge CLI reference

Run the Bridge with the managed `sesori-bridge` launcher. `npx @sesori/bridge` is only an installer and refresh path.

## Everyday commands

| Command                        | Purpose                                                        |
| ------------------------------ | -------------------------------------------------------------- |
| `sesori-bridge`                | Start the Bridge and sign in if needed                         |
| `sesori-bridge --version`      | Print the installed version                                    |
| `sesori-bridge --help`         | Show commands and assistant-specific flags                     |
| `sesori-bridge logout`         | Clear saved authentication; the next start asks you to sign in |
| `sesori-bridge update`         | Check for and install an eligible update                       |
| `sesori-bridge update --force` | Force installation when the updater specifically recommends it |

## Configuration commands

| Command                                     | Purpose                                                   |
| ------------------------------------------- | --------------------------------------------------------- |
| `sesori-bridge config plugins`              | List assistant plugins and whether each is eligible       |
| `sesori-bridge config plugins enable <id>`  | Enable a plugin; restart the Bridge to apply              |
| `sesori-bridge config plugins disable <id>` | Disable a plugin; restart the Bridge to apply             |
| `sesori-bridge config yolo on`              | Automatically approve Bridge permission requests          |
| `sesori-bridge config yolo off`             | Restore permission prompts                                |
| `sesori-bridge config track`                | Show the current release track                            |
| `sesori-bridge config edit`                 | Open the Bridge configuration file in your default editor |

{% hint style="danger" %}
YOLO mode removes the phone approval step for requests routed through the Bridge. Assistant-specific permission bypasses can remove additional safeguards. Read [Security and privacy](/get-started/security-and-privacy.md) before enabling either.
{% endhint %}

The public release track is `stable`. The `internal` track is for Sesori development builds and is not recommended for normal use.

## Updates and restarts

Managed installs check at startup and poll every four hours. If a poll finds a new release, restart the Bridge to apply it. `Ctrl+C` performs an ordered shutdown before you start it again.

## Command not found

Open a new terminal after installation. You can also run the managed binary directly:

{% tabs %}
{% tab title="macOS or Linux" %}

```bash
~/.local/share/sesori/bin/sesori-bridge
```

{% endtab %}

{% tab title="Windows" %}

```powershell
& "$env:LOCALAPPDATA\sesori\bin\sesori-bridge.exe"
```

{% endtab %}
{% endtabs %}

## Sign in again

There is no `--login` flag. Clear the saved account, then start the Bridge:

```bash
sesori-bridge logout
sesori-bridge
```

## Next

👉 [Troubleshooting](/help/troubleshooting.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sesori.com/setup/bridge-cli.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
