Native
LangGraphStore and ADKStore authorities expose their framework’s narrower checkpoint contract. They do not provide every Harnest-owned capability in this table.
Every application resolves exactly one checkpoint factory across its root and Runtime Plugin extensions. This example assumes the shared PostgresStore from lib/state.py in the storage overview:
extensions/checkpoints.py
Run multiple replicas
Point every replica at the same Harnest checkpointer. Atomic run and continuation transitions allow one replica to claim a resume while another safely observes it. See Durable execution for replica recovery and response polling.Configure advanced framework ownership
Advanced LangGraph can compile with a Harnest adapter:agent.py
LangGraphStore, use the wrapper to compile the graph, and return the same wrapper from @lifecycle.storage.checkpoints. Keep a separate SessionStore factory for committed conversation state.
For ADK-native ownership, create one ADKStore(session_service) in lib/state.py. Return that same object from the session and checkpoint factories so Harnest does not create a second session authority.
Switch frameworks safely
Framework checkpoints are opaque and cannot be translated between ADK and LangGraph. Finish or cancel active runs before switching. Committed session state remains portable when the new application uses compatible session storage. Harnest records privacy-safe OTEL mutation events, never checkpoint payloads, prompts, arguments, credentials, or results.Configure sessions separately
Persist committed conversation history and application data through the session authority.