{"record":{"id":"cd87c7d60ba8c313","repo":"nikivdev/code","slug":"run-agent-bridge-list-failed","errorCode":null,"errorMessage":"run-agent bridge list failed: {}","messagePattern":"run-agent bridge list failed: (.+?)","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"src/ai.rs","lineNumber":4711,"sourceCode":"    let router_path = run_agent_router_path();\n    if !router_path.is_file() {\n        bail!(\n            \"run-agent bridge is unavailable; expected router at {}\",\n            router_path.display()\n        );\n    }\n    Ok(router_path)\n}\n\nfn run_agent_router_list() -> Result<Vec<String>> {\n    let router_path = require_run_agent_router_path()?;\n    let output = Command::new(\"bash\")\n        .arg(&router_path)\n        .arg(\"list\")\n        .output()\n        .with_context(|| format!(\"failed to execute {}\", router_path.display()))?;\n    if !output.status.success() {\n        bail!(\n            \"run-agent bridge list failed: {}\",\n            command_output_error_detail(&output)\n        );\n    }\n    Ok(parse_run_agent_list_output(&output.stdout))\n}\n\nfn run_agent_router_show(agent_id: &str) -> Result<String> {\n    let router_path = require_run_agent_router_path()?;\n    let output = Command::new(\"bash\")\n        .arg(&router_path)\n        .arg(\"show\")\n        .arg(agent_id)\n        .output()\n        .with_context(|| format!(\"failed to execute {}\", router_path.display()))?;\n    if !output.status.success() {\n        bail!(\n            \"run-agent bridge show failed: {}\",","sourceCodeStart":4693,"sourceCodeEnd":4729,"githubUrl":"https://github.com/nikivdev/code/blob/a747e741ae92c09071d0ae946ab48488adcff1ce/src/ai.rs#L4693-L4729","documentation":"Error \"run-agent bridge list failed: {}\" thrown in nikivdev/code.","triggerScenarios":"Thrown at src/ai.rs:4711 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"a747e741ae92c09071d0ae946ab48488adcff1ce","analyzedAt":"2026-09-01T22:43:55.719Z","contentChangedAt":null,"schemaVersion":2},"datasetVersion":"2026-09-08T10:18:20.063Z"}