CLI for interacting with LangGraph API
Overall
score
74%
Evaluation — 74%
↑ 1.17xAgent success when using this tile
Build a small CLI utility around LangGraph configuration validation. The tool must delegate schema checking to the dependency's validator rather than re-implementing rules, and should surface a concise summary of the config.
langgraph.json, prints CONFIG OK and exits with status code 0. @testgraphs to stderr and exits with status code 1. @testpython: <value>, node: <value> using version fields from the config (blank if a value is absent). @testDependencies: followed by each dependency name on its own line, then Graphs: with each graph key on its own line. @test./langgraph.json; validation errors go to stderr on failure, while summaries go to stdout. @test@generates
def validate_and_report(config_path: str | None = None) -> int:
"""Validate a langgraph.json at config_path (or ./langgraph.json), print summary, and return a process exit code."""Uses the package's configuration validation to check langgraph.json contents.
Install with Tessl CLI
npx tessl i tessl/pypi-langgraph-clievals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10