RepoRadar hands-on verification log run_id: cohort-20260712-langgraph-local-routing entity_id: gh:langchain-ai/langgraph mode: local_smoke started_at: 2026-07-13T10:35:27.439649Z completed_at: 2026-07-13T10:35:30.621650Z duration_seconds: 3.182 installation_setup_minutes_ceiling: 1 command: \AppData\Local\hermes\bin\uv.EXE run --isolated --no-project --with langgraph==1.2.9 python -c "import json; from typing_extensions import TypedDict; from langgraph.graph import StateGraph, START, END; exec('class State(TypedDict):\n incident: str\n route: str\n action: str'); g=StateGraph(State); g.add_node('classify',lambda s:{'route':'urgent' if 'outage' in s['incident'] else 'routine'}); g.add_node('page',lambda s:{'action':'paged-oncall'}); g.add_node('record',lambda s:{'action':'logged'}); g.add_edge(START,'classify'); g.add_conditional_edges('classify',lambda s:s['route'],{'urgent':'page','routine':'record'}); g.add_edge('page',END); g.add_edge('record',END); r=g.compile().invoke({'incident':'checkout outage','route':'','action':''}); assert r['route']=='urgent' and r['action']=='paged-oncall'; open('result.json','w',encoding='utf-8').write(json.dumps(r,sort_keys=True)); print('CHECK_OK route='+r['route']+' action='+r['action'])" credential_policy: child environment allowlisted; credential-like variables excluded; known token patterns redacted from retained output network_policy: isolated package resolution may contact package registries; telemetry and Promptfoo sharing disabled; no model/provider credentials supplied fixture_count: 0 artifact_expectation_count: 1 timeout_seconds: 180 timed_out: false exit_code: 0 expected_marker: CHECK_OK route=urgent action=paged-oncall expected_marker_observed: true result: passed cleanup: Per-check temporary home and work directory removed. ===== FIXTURE MANIFEST ===== ===== ARTIFACT EVIDENCE ===== result.json: exists=true bytes=76 sha256=ffd6a208021a781686985a66414ec446b1b9302574fa18fd27777b999d2d9ad4 required_markers=3 required_markers_observed=true excluded_markers=0 excluded_markers_absent=true ===== STDOUT ===== CHECK_OK route=urgent action=paged-oncall ===== STDERR ===== Installed 35 packages in 160ms cohort_cache_cleanup: Shared cohort package cache removed. bounded_workflow_intended: true bounded_workflow_completed: true