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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/tests
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down