Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
Sign inSign up free
catalog / Orchestration / LangGraph
⌬WorkflowOrchestrationFree

LangGraph

Build stateful, multi-actor agent workflows as directed graphs — cycles, branching, human-in-the-loop, and persistent state built in.

@ai-supply
Installs122k
⟳ upstream 1.2.9 · updated 16d ago
↗ Source repository
← More OrchestrationOrchestration leaderboard →How we grade security →Source ↗
! Grade B · 88/100 · ReviewSecurity assessment
✓No compromise signals32capabilities surfaced1known CVE5of 20 OWASP controls clear
Broad capability surfaceSuspicious network referencesBroad capability surfacePotentially unbounded loop
scanned 14d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

LangGraph

LangGraph extends LangChain with a graph-based runtime for building stateful agent and multi-actor workflows. Unlike linear chains, LangGraph supports cycles, conditional branching, parallel execution, and durable persistence — making it the go-to framework for production agentic systems.

Key features

  • Stateful graphs — each node reads and writes to a shared typed state object
  • Cycles — agents can loop, retry, and re-plan — not just run top-to-bottom
  • Human-in-the-loop — pause execution at any node and resume after human review
  • Persistence — checkpoint state to SQLite, Postgres, or Redis for fault tolerance
  • Multi-agent — route messages between specialized sub-graphs (supervisor, swarm patterns)
  • LangGraph Platform — hosted deployment with streaming, webhooks, and a Studio debugger

Quick start

npx ai-supply add langgraph-stateful-agent-workflows

# Or install directly
pip install langgraph langchain-anthropic
from typing import TypedDict
from langgraph.graph import StateGraph, END
from langchain_anthropic import ChatAnthropic

class State(TypedDict):
    messages: list

llm = ChatAnthropic(model="claude-opus-4-5")

def call_model(state: State):
    response = llm.invoke(state["messages"])
    return {"messages": state["messages"] + [response]}

graph = StateGraph(State)
graph.add_node("agent", call_model)
graph.set_entry_point("agent")
graph.add_edge("agent", END)

app = graph.compile()
result = app.invoke({"messages": [{"role": "user", "content": "Hello!"}]})
print(result["messages"][-1].content)

Curated mirror of the open-source LangGraph project (MIT). Install upstream from the repository.

Rating rank
#1
of 16 in Orchestration
Install rank
#8
of 16 in Orchestration
Security score
88/100 · B
review
Security rank
#7
of 16 in Orchestration
Installs
122k
cat avg 126k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Orchestration leaderboard →
! Security: Review · 8888/100 · grade Bscanned 14d ago
✓ no compromise signals33 risk-surface · 10/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → docs.langchain.com, forum.langchain.com, reference.langchain.com, chat.langchain.com, stackoverflow.com, linkedin.com, blog.pypi.org, docs.pypi.org +32
138 steps⚑ uses secretsdocs.langchain.comforum.langchain.comreference.langchain.comchat.langchain.comgithub.comstackoverflow.comastral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM01Prompt Injectionhigh
Adversarial instructions embedded in an artifact that hijack a downstream LLM.
•Prompt-injection phrasing — instruction-subversion language detected · langchain-ai-langgraph-55ec2f2/examples/rag/langgraph_crag_local.ipynb (CWE-77)expected
⚠LLM03Supply Chainhigh
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 4 pip requirements declared · langchain-ai-langgraph-55ec2f2/libs/cli/examples/graphs_reqs_a/requirements.txtrisk surface
•Dependency manifest — 18 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-examples/package.jsonrisk surface
•Dependency manifest — 4 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/apps/agent/package.jsonrisk surface
•Dependency manifest — 1 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/libs/shared/package.jsonrisk surface
•Dependency manifest — 13 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/package.jsonrisk surface
•Dependency manifest — 2 pip requirements declared · langchain-ai-langgraph-55ec2f2/libs/langgraph/tests/example_app/requirements.txtrisk surface
•Non-registry dependency source — 1 requirement(s) from git/URL/editable · langchain-ai-langgraph-55ec2f2/libs/langgraph/tests/example_app/requirements.txt (CWE-829)risk surface
•Vulnerable dependencies — 6 known vulnerabilities in: brace-expansion@1.1.12, brace-expansion@5.0.2, mistune@3.2.1, soupsieve@2.8.1 (CWE-1395)known CVE · -12 pts
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pickle deserialization · langchain-ai-langgraph-55ec2f2/.github/THREAT_MODEL.md (CWE-502)expected
•Suspicious code patterns — dynamic code execution · langchain-ai-langgraph-55ec2f2/examples/code_assistant/langgraph_code_assistant_mistral.ipynb (CWE-95)expected
•Suspicious code patterns — OS command execution · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/docker.py (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/uv_lock.py (CWE-78)expected
•Encoded path traversal — percent/utf-8-encoded '../' sequence — bypasses naive path filters · langchain-ai-langgraph-55ec2f2/libs/sdk-py/tests/streaming/test_transport_path_encoding.py (CWE-22)expected
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 6 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/ISSUE_TEMPLATE/bug-report.ymlexpected
•External endpoints declared — 4 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/ISSUE_TEMPLATE/config.ymlexpected
•External endpoints declared — 2 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/ISSUE_TEMPLATE/privileged.ymlexpected
•External endpoints declared — 3 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/PULL_REQUEST_TEMPLATE.mdexpected
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · langchain-ai-langgraph-55ec2f2/.github/THREAT_MODEL.md (CWE-272)risk surface
•External endpoints declared — 1 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/THREAT_MODEL.mdexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · langchain-ai-langgraph-55ec2f2/.github/workflows/_sdk_integration_test.yml (CWE-272)risk surface
•External endpoints declared — 5 distinct host(s) · langchain-ai-langgraph-55ec2f2/.github/workflows/release.ymlexpected
•External endpoints declared — 15 distinct host(s) · langchain-ai-langgraph-55ec2f2/README.mdexpected
•External endpoints declared — 7 distinct host(s) · langchain-ai-langgraph-55ec2f2/examples/rag/langgraph_adaptive_rag_cohere.ipynbexpected
•External endpoints declared — 10 distinct host(s) · langchain-ai-langgraph-55ec2f2/examples/rag/langgraph_adaptive_rag_local.ipynbexpected
•External endpoints declared — 9 distinct host(s) · langchain-ai-langgraph-55ec2f2/examples/rag/langgraph_self_rag_local.ipynbexpected
•External endpoints declared — 11 distinct host(s) · langchain-ai-langgraph-55ec2f2/libs/checkpoint-postgres/README.mdexpected
•External endpoints declared — 8 distinct host(s) · langchain-ai-langgraph-55ec2f2/libs/checkpoint/README.mdexpected
•Egress to a private/loopback host — 127.0.0.1 · langchain-ai-langgraph-55ec2f2/libs/cli/tests/unit_tests/test_deploy_helpers.py (CWE-918)expected
•External endpoints declared — 14 distinct host(s) · langchain-ai-langgraph-55ec2f2/libs/cli/tests/unit_tests/test_deploy_helpers.pyexpected
•External endpoints declared — 12 distinct host(s) · langchain-ai-langgraph-55ec2f2/libs/langgraph/README.mdexpected
⚠LLM07System Prompt Leakagemedium
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · langchain-ai-langgraph-55ec2f2/libs/checkpoint/tests/test_encrypted.py (CWE-200)risk surface
•Low-confidence secret match — possible: JWT · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/constants.py (CWE-798)risk surface
•Low-confidence secret match — 1 possible: jwt · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/constants.py (CWE-798)risk surface
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · langchain-ai-langgraph-55ec2f2/libs/checkpoint-postgres/langgraph/checkpoint/postgres/__init__.py (CWE-835)risk surface
⚠LLM02Sensitive Information Disclosurelow
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — possible: JWT · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/constants.py (CWE-798)risk surface
•Low-confidence secret match — 1 possible: jwt · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/constants.py (CWE-798)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Prompt-injection phrasing — instruction-subversion language detected · langchain-ai-langgraph-55ec2f2/examples/rag/langgraph_crag_local.ipynb (CWE-77)expected
⚠ML06AI Supply Chainhigh
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 4 pip requirements declared · langchain-ai-langgraph-55ec2f2/libs/cli/examples/graphs_reqs_a/requirements.txtrisk surface
•Dependency manifest — 18 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-examples/package.jsonrisk surface
•Dependency manifest — 4 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/apps/agent/package.jsonrisk surface
•Dependency manifest — 1 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/libs/shared/package.jsonrisk surface
•Dependency manifest — 13 npm dependencies declared · langchain-ai-langgraph-55ec2f2/libs/cli/js-monorepo-example/package.jsonrisk surface
•Dependency manifest — 2 pip requirements declared · langchain-ai-langgraph-55ec2f2/libs/langgraph/tests/example_app/requirements.txtrisk surface
•Non-registry dependency source — 1 requirement(s) from git/URL/editable · langchain-ai-langgraph-55ec2f2/libs/langgraph/tests/example_app/requirements.txt (CWE-829)risk surface
•Vulnerable dependencies — 6 known vulnerabilities in: brace-expansion@1.1.12, brace-expansion@5.0.2, mistune@3.2.1, soupsieve@2.8.1 (CWE-1395)known CVE · -12 pts
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pickle deserialization · langchain-ai-langgraph-55ec2f2/.github/THREAT_MODEL.md (CWE-502)expected
•Suspicious code patterns — dynamic code execution · langchain-ai-langgraph-55ec2f2/examples/code_assistant/langgraph_code_assistant_mistral.ipynb (CWE-95)expected
•Suspicious code patterns — OS command execution · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/docker.py (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/uv_lock.py (CWE-78)expected
•Encoded path traversal — percent/utf-8-encoded '../' sequence — bypasses naive path filters · langchain-ai-langgraph-55ec2f2/libs/sdk-py/tests/streaming/test_transport_path_encoding.py (CWE-22)expected
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (11) · hygiene / uncategorized
•Suspicious network references — raw IP URL (2 URLs) · langchain-ai-langgraph-55ec2f2/.github/scripts/run_langgraph_cli_test.pyrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · langchain-ai-langgraph-55ec2f2/.gitignorerisk surface
•Unrecognized file type — '.?' is not on the allowlist · langchain-ai-langgraph-55ec2f2/LICENSErisk surface
•Unrecognized file type — '.dockerignore' is not on the allowlist · langchain-ai-langgraph-55ec2f2/libs/cli/js-examples/.dockerignorerisk surface
•Unrecognized file type — '.editorconfig' is not on the allowlist · langchain-ai-langgraph-55ec2f2/libs/cli/js-examples/.editorconfigrisk surface
•Unrecognized file type — '.cjs' is not on the allowlist · langchain-ai-langgraph-55ec2f2/libs/cli/js-examples/.eslintrc.cjsrisk surface
•Suspicious network references — raw IP URL (8 URLs) · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/cli.pyrisk surface
•Suspicious network references — suspicious TLD (5 URLs) · langchain-ai-langgraph-55ec2f2/libs/cli/langgraph_cli/templates.pyrisk surface
•Suspicious network references — raw IP URL (17 URLs) · langchain-ai-langgraph-55ec2f2/libs/cli/tests/unit_tests/cli/test_cli.pyrisk surface
•Suspicious network references — raw IP URL (32 URLs) · langchain-ai-langgraph-55ec2f2/libs/cli/tests/unit_tests/test_deploy_helpers.pyrisk surface
•Unrecognized file type — '.ambr' is not on the allowlist · langchain-ai-langgraph-55ec2f2/libs/langgraph/tests/__snapshots__/test_large_cases.ambrrisk surface
✔ verified source · pinned langchain-ai-langgraph-55ec2f2
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/langgraph-stateful-agent-workflows/check). Click a policy:

Consume LangGraph programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/langgraph-stateful-agent-workflows

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/langgraph-stateful-agent-workflows/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add langgraph-stateful-agent-workflows

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/langgraph-stateful-agent-workflows/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "langgraph-stateful-agent-workflows" })
OpenAPI spec →
vlatest
! Security: Review · 881mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Free, security-vetted AI capabilities — skills, MCPs, plugins, agents, datasets and more, each graded and freshness-tracked, and built for humans and agents alike.

api · v3.1status · all green
Contact
support@ai-supply.storesecurity@ai-supply.store
Catalog
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
  • Security
  • Scan a repo
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
Account
  • Create account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy