Git-Like Versioning
Track changes over time with hash-based versioning
Content-Addressable Deduplication. Store content once, reference by hash forever. Like Git for your context—same content never stored twice.
Capabilities
caz_dedup uses content-addressable storage—hash your content, store once, reference forever. If you store the same file 100 times, you only pay for one copy. The hash serves as a permanent pointer to that content.
Perfect for code file caching, context versioning, and multi-agent context sharing.
SHA-256 Hashing
Content hashed using SHA-256 for permanent reference
Store Once
Identical content stored only once, no matter how many references
Instant Retrieval
Retrieve any stored content by its hash anytime
Git-Like Versioning
Track changes over time with hash-based versioning
Dedup in Action
// First time storing auth.js
hash: "a7f3b2c1d4e5..."
status: "stored" (new block)
// Second time (identical content)
hash: "a7f3b2c1d4e5..."
status: "exists" (no storage used)
Use Cases
Store code files once, reference by hash in prompts. Never re-upload the same file.
Track context changes over time. Each version has unique hash, unchanged parts deduplicated.
Share context between agents via hash. No need to pass full content—just the reference.