claude_storage 1.9.1

CLI tool for exploring Claude Code filesystem storage
Documentation
1
2
3
4
5
6
7
#!/usr/bin/env bash
# do build — compile project artifacts (cargo ecosystem)
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo build -p claude_storage"; exit 0; fi
exec cargo build -p claude_storage