Files
litestream/CLAUDE.md
2026-01-06 13:34:01 -06:00

1.3 KiB

CLAUDE.md - Claude Code Configuration

Claude-specific optimizations for Litestream. See AGENTS.md for project documentation.

Context Window

With Claude's large context window, load documentation as needed:

Claude-Specific Resources

Specialized Agents (.claude/agents/)

  • sqlite-expert.md - SQLite WAL and page management
  • replica-client-developer.md - Storage backend implementation
  • ltx-compaction-specialist.md - LTX format and compaction
  • test-engineer.md - Testing strategies
  • performance-optimizer.md - Performance optimization

Commands (.claude/commands/)

  • /analyze-ltx - Analyze LTX file structure
  • /debug-wal - Debug WAL replication issues
  • /test-compaction - Test compaction scenarios
  • /trace-replication - Trace replication flow
  • /validate-replica - Validate replica client
  • /add-storage-backend - Create new storage backend
  • /fix-common-issues - Diagnose common problems
  • /run-comprehensive-tests - Execute full test suite

Quick Commands

go build -o bin/litestream ./cmd/litestream
go test -race -v ./...
pre-commit run --all-files