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
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ web/index.css
.DS_Store

# Local-only files.
mcp_servers.json
README.md
16 changes: 0 additions & 16 deletions .tests/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,24 +51,8 @@ pytest backend/
if [ -n "$EXPECTED_RBT_DEV_OUTPUT_FILE" ]; then
actual_output_file=$(mktemp)

# `--config=dist` overrides `.rbtrc`'s default `hmr` config,
# whose `--mcp-frontend-host=http://localhost:4444` would
# have Envoy proxy `/__/web/**` to a Vite dev server. There
# is no Vite running in CI, and on the macOS executable-Envoy
# path that proxy target makes cluster init hang
# indefinitely, so `--terminate-after-health-check` never
# fires. The `dist` config sets `--mcp-frontend-host=""`,
# which skips the proxy entirely. `web/dist/` doesn't need
# to actually exist; the health check only probes gRPC and
# Envoy listeners.
#
# The librarian agent fails fast if `ANTHROPIC_API_KEY` is
# unset, so we provide a dummy value. No real Anthropic calls
# are made: the health check terminates the process before any
# transcript ingestion happens.
ANTHROPIC_API_KEY="dummy-for-health-check" \
rbt $RBT_FLAGS dev run \
--config=dist \
--terminate-after-health-check \
> "$actual_output_file"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# locally before `docker build` so that `web/dist/` contains the
# bundled UIs. This image copies that prebuilt bundle rather
# than installing Node and rebuilding it here.
FROM ghcr.io/reboot-dev/reboot-base:1.2.0
FROM ghcr.io/reboot-dev/reboot-base:1.2.1

WORKDIR /app

Expand Down
8 changes: 0 additions & 8 deletions mcp_servers.json

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies = [
"uuid7>=0.1.0",
"anyio>=4.0.0",
"pydantic-ai-slim[anthropic]>=1.0.0",
"reboot==1.2.0",
"reboot==1.2.1",
]

[dependency-groups]
Expand Down
10 changes: 5 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"dependencies": {
"@modelcontextprotocol/ext-apps": "1.5.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@reboot-dev/reboot-api": "1.2.0",
"@reboot-dev/reboot-react": "1.2.0",
"@reboot-dev/reboot-api": "1.2.1",
"@reboot-dev/reboot-react": "1.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
Expand Down
Loading