Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ bwai -- session -r # runs "goose session -r" to resume a session
bwai -- --model gemini-2.0-flash-exp # runs "claude --model gemini-2.0-flash-exp"
```

Everything after `--` is passed as extra arguments to the resolved command.

### Exposing extra directories (read-only)

Use `--ro-dir` to give the agent read-only access to directories outside the current project. This is useful when the project you are working on depends on another local project that you want the agent to use as reference:
Expand All @@ -88,8 +90,6 @@ bwai --ro-dir /absolute/path/to/lib --ro-dir /another/path

The flag is repeatable and accepts both relative and absolute paths. Each directory is mounted at the same absolute path inside the sandbox. `bwai` will refuse to start if any of the given paths does not exist.

Everything after `--` is passed as extra arguments to the resolved command.

## Configuration

`bwai` works out of the box with no config file. To customise behaviour, create `~/.bwai.json` as a global config. To use a different file for a single run:
Expand Down
Loading