Skip to main content
Back to the directory
langchain-ai/langchain-skillsSoftware EngineeringFrontend and Design

langgraph-persistence

Durable graph execution with thread-scoped checkpoints, state history, and cross-thread long-term memory.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
5

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill langgraph-persistence
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, langgraph-persistence has 5 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: langchain-ai/langchain-skills. Canonical URL: https://skills.sh/langchain-ai/langchain-skills/langgraph-persistence.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykFAIL
About this skill
Durable graph execution with thread-scoped checkpoints, state history, and cross-thread long-term memory. Two memory types: class State(TypedDict): messages: Annotated[list, operator.add] def add_message(state: State) -> dict: return {"messages": ["Bot response"]} checkpointer = InMemorySaver() graph = ( StateGraph(State) .add_node("respond", add_message) .add_edge(START, "respond") .add_edge("respond", END) .compile(checkpointer=checkpointer) # Pass at compile time ) config = {"configurable": {"thread_id": "conversation-1"}} result1 = graph.invoke({"messages": ["Hello"]}, config) print(len(result1["messages"])) # 2 result2 = graph.invoke({"messages": ["How are you?"]}, config) print(len(result2["messages"])) # 4 (previous + new) with PostgresSaver.from_conn_string(os.environ["DATABASE_URL"]) as checkpointer: graph = builder.compile(checkpointer=checkpointer) graph.invoke({"messages": ["Hi from Alice"]}, alice_config) graph.invoke({"messages": ["Hi from Bob"]}, bob_config) result = graph.invoke({"messages": ["start"]}, config) states = list(graph.get_state_history(config)) past = states[-2] result = graph.invoke(None, past.config) # None = resume from checkpoint fork_config = graph.update_state(past.config, {"messages": ["edited"]}) result = graph.invoke(None, fork_config) graph.update_state(config, {"data": "manually_updated"}) result = graph.invoke(None, config) When...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does langgraph-persistence do?

Durable graph execution with thread-scoped checkpoints, state history, and cross-thread long-term memory.

Is langgraph-persistence good?

langgraph-persistence does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support langgraph-persistence?

langgraph-persistence currently lists compatibility with Skills CLI.

Is langgraph-persistence safe to install?

langgraph-persistence has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to langgraph-persistence?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install langgraph-persistence?

Run the following command to install langgraph-persistence: npx skills add https://github.com/langchain-ai/langchain-skills --skill langgraph-persistence

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering