Agent skill

langgraph-checkpoints

LangGraph checkpointing and persistence. Use when implementing fault-tolerant workflows, resuming interrupted executions, debugging with state history, or avoiding re-running expensive operations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill langgraph-checkpoints --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: SkillForge
Path: skills/agent/langgraph-checkpoints/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# LangGraph Checkpointing Persist workflow state for recovery and debugging. ## Checkpointer Options ```python from langgraph.checkpoint import MemorySaver from langgraph.checkpoint.sqlite import SqliteSaver from langgraph.checkpoint.postgres import PostgresSaver # Development: In-memory memory = MemorySaver() app = workflow.compile(checkpointer=memory) # Production: SQLite checkpointer = SqliteSaver.from_conn_string("checkpoints.db") app = workflow.compile(checkpointer=checkpointer) # Production: PostgreSQL checkpointer = PostgresSaver.from_conn_string("postgresql://...") app = workflow.compile(checkpointer=checkpointer) ``` ## Using Thread IDs ```python # Start new workflow config = {"configurable": {"thread_id": "analysis-123"}} result = app.invoke(initial_state, config=config) # Resume interrupted workflow config = {"configurable": {"thread_id": "analysis-123"}} result = app.invoke(None, config=config) # Resumes from checkpoint ``` ## PostgreSQL Setup ```python def create_checkpointer(): """Create PostgreSQL checkpointer for production.""" return PostgresSaver.from_conn_string( settings.DATABASE_URL, save_every=1 # Save after each node ) # Compile with checkpointing app = workf

What's inside
Steps it walks through
  1. Checkpointer Options
  2. Using Thread IDs
  3. PostgreSQL Setup
  4. Inspecting Checkpoints
  5. Resuming After Crash
  6. Step-by-Step Debugging
  7. Store vs Checkpointer (2026 Best Practice)
  8. Using Store for Cross-Thread Memory
  9. Memory Architecture
  10. Key Decisions
  11. Common Mistakes
  12. Related Skills
  13. Capability Details
  14. checkpoint-saving
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langgraph-checkpoints skill do?

LangGraph checkpointing and persistence. Use when implementing fault-tolerant workflows, resuming interrupted executions, debugging with state history, or avoiding re-running expensive operations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill langgraph-checkpoints --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going