mirror of
https://github.com/benbjohnson/litestream.git
synced 2026-01-24 20:56:48 +00:00
1.3 KiB
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:
- Start with AGENTS.md for overview and checklist
- Load docs/PATTERNS.md when writing code
- Load docs/SQLITE_INTERNALS.md for WAL/page work
Claude-Specific Resources
Specialized Agents (.claude/agents/)
sqlite-expert.md- SQLite WAL and page managementreplica-client-developer.md- Storage backend implementationltx-compaction-specialist.md- LTX format and compactiontest-engineer.md- Testing strategiesperformance-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