Skip to content
Merged
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
2 changes: 2 additions & 0 deletions docs/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ Configure via the agent's own settings or through `ox auth`.
### Codex

Codex uses OpenAI authentication (API key or ChatGPT OAuth). When prompted, ox guides you through the setup.
ox's sandbox image installs system `bubblewrap`, so Codex can use `/usr/bin/bwrap`
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence starts a new paragraph/sentence after the previous period, but begins with lowercase "ox's". Capitalize it (e.g., "Ox's") or format the CLI name consistently (e.g., "ox's").

Suggested change
ox's sandbox image installs system `bubblewrap`, so Codex can use `/usr/bin/bwrap`
`ox`'s sandbox image installs system `bubblewrap`, so Codex can use `/usr/bin/bwrap`

Copilot uses AI. Check for mistakes.
without printing its vendored-bubblewrap fallback warning at session startup.
Comment on lines +67 to +68
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This note reads like it applies to all ox sandboxes, but only the Docker base image is updated in this PR. Cloud sandboxes are built via sandbox/cloud-base-steps.yaml (which currently doesn't install bubblewrap), so Codex sessions on the cloud provider may still lack /usr/bin/bwrap and show the warning. Please either scope the docs to the Docker provider/base image or ensure the cloud base snapshot also installs bubblewrap.

Suggested change
ox's sandbox image installs system `bubblewrap`, so Codex can use `/usr/bin/bwrap`
without printing its vendored-bubblewrap fallback warning at session startup.
In Docker-based sandboxes, ox's base image installs system `bubblewrap`, so Codex can use `/usr/bin/bwrap`
without printing its vendored-bubblewrap fallback warning at session startup. Other sandbox providers may not have `/usr/bin/bwrap` available and can still show this warning.

Copilot uses AI. Check for mistakes.

```bash
ox auth check codex
Expand Down
1 change: 1 addition & 0 deletions sandbox/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ LABEL description="Minimal base sandbox environment (no agents)"
LABEL org.opencontainers.image.source=https://github.com/timescale/ox

RUN apt-get update && apt-get install -y --no-install-recommends \
bubblewrap \
ca-certificates \
curl \
git \
Expand Down
Loading