From 4661868e46f6a9c88c8fc377260a609b050c9866 Mon Sep 17 00:00:00 2001 From: Patrick Wyatt Date: Mon, 14 Sep 2026 09:15:21 -0700 Subject: [PATCH 1/2] Update README to correct agentsview URL Fixes #257 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e8705d..568195b 100644 --- a/README.md +++ b/README.md @@ -264,7 +264,7 @@ Explicit command-line arguments are appended after `SANDVAULT_ARGS`, so they are ## `agentsview` Integration -[`agentsview`](https://github.com/badlogic/agentsview) is a dashboard for AI coding agents (Claude Code, Codex, OpenCode, Gemini, pi). It shows session history, search, and cost tracking. If you have agentsview installed on the host, `sv-agentsview-setup` mirrors sandbox session data so that it appears next to your host-side sessions. Muse Code is not included: agentsview has no parser for its session format yet. +[`agentsview`](https://www.agentsview.io) is a dashboard for AI coding agents that shows session history, search, and cost tracking. If you have agentsview installed on the host, `sv-agentsview-setup` mirrors sandbox session data so that it appears next to your host-side sessions. ```bash # Detect agentsview, prompt to opt in, and configure From b718fc0dfd7954ff73765980c0e215ebf0d5775c Mon Sep 17 00:00:00 2001 From: Patrick Wyatt Date: Mon, 14 Sep 2026 10:42:16 -0700 Subject: [PATCH 2/2] Fix test failure during exit trap --- tests/tests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests b/tests/tests index aaccdec..2313f5c 100755 --- a/tests/tests +++ b/tests/tests @@ -31,7 +31,7 @@ if [[ -z "${SV_SESSION_ID:-}" && -z "${SV_TESTS_REEXEC:-}" ]]; then readonly SRC_DIR DST_DIR="$(mktemp -d -p "$SHARED_WORKSPACE")" readonly DST_DIR - trap 'rm -rf "$DST_DIR"' EXIT + trap 'rm -rf "$DST_DIR" 2>/dev/null || true' EXIT # git clone --depth 1 --no-local "$SRC_DIR" "$DST_DIR" &>/dev/null tar -c \ -C "$SRC_DIR" \