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

langgraph-fundamentals

Directed graph framework for building stateful, multi-step agent workflows with fine-grained control.

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
6

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-fundamentals
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-fundamentals has 6 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-fundamentals.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Directed graph framework for building stateful, multi-step agent workflows with fine-grained control. Graphs must be compile() d before execution. Follow these 5 steps when building a new graph: class State(TypedDict): name: str # Default: overwrites on update messages: Annotated[list, operator.add] # Appends to list total: Annotated[int, operator.add] # Sums integers from typing import Annotated import operator class State(TypedDict): messages: Annotated[list, operator.add] def my_node(state: State) -> dict: return {"field": "updated"} Node functions accept these arguments: class State(TypedDict): input: str output: str def process_input(state: State) -> dict: return {"output": f"Processed: {state['input']}"} def finalize(state: State) -> dict: return {"output": state["output"].upper()} graph = ( StateGraph(State) .add_node("process", process_input) .add_node("finalize", finalize) .add_edge(START, "process") .add_edge("process", "finalize") .add_edge("finalize", END) .compile() ) result = graph.invoke({"input": "hello"}) print(result["output"]) # "PROCESSED: HELLO" class State(TypedDict): query: str route: str result: str def classify(state: State) -> dict: if "weather" in state["query"].lower(): return {"route": "weather"} return {"route": "general"} def route_query(state: State) -> Literal["weather", "general"]: return state["route"] graph = ( StateGraph(State)...

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-fundamentals do?

Directed graph framework for building stateful, multi-step agent workflows with fine-grained control.

Is langgraph-fundamentals good?

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

Which AI agents support langgraph-fundamentals?

langgraph-fundamentals currently lists compatibility with Skills CLI.

Is langgraph-fundamentals safe to install?

langgraph-fundamentals 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-fundamentals?

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

How do I install langgraph-fundamentals?

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

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering