Claude-skill-registry cache-expert

Covers Dagger Engine caching internals including cache key derivation, invalidation, and the immutable DAG model. Use when debugging cache misses, unexpected invalidations, or implementing caching-related engine features.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cache-expert" ~/.claude/skills/majiayu000-claude-skill-registry-cache-expert && rm -rf "$T"
manifest: skills/data/cache-expert/SKILL.md
source content

Cache Expert

High-Level Architecture

The Dagger Engine serves a GraphQL-based API for building and executing DAG workflows.

Each operation takes immutable objects/scalar values as inputs and produces an immutable object/scalar value as output. "Mutability" is simulated as a DAG of these operations on immutable values, similar to functional programming.

This enables caching: since inputs are immutable and operations are deterministic, cache keys can be derived from the operation and its inputs.

DAGs of operations can be serialized as IDs, which have associated digests that serve as the operations' cache keys.

Quick Reference

Jump to the right doc for your task:

TaskRead
Understand how IDs encode operationsids.md
Understand the GraphQL server implementationdagql-api-server.md
Understand how results are cachedcache-storage.md
Debug a cache missdebugging.md

Core References

To build deep experitise, read these in order:

  1. ids.md - How IDs encode operations and derive digests
  2. dagql-api-server.md - The dagql GraphQL server implementation
  3. cache-storage.md - How dagql results are cached

Optional References

Load on-demand for specific tasks:

  • debugging.md - Techniques for diagnosing cache misses and unexpected invalidations