Warning, /swf-testbed/docs/diagram6_corunai_loop.md is written in an unsupported language. File is not indexed.
0001 # diagram6_corunai_loop
0002
0003 corun-ai research loop — shows corun-ai is not a chatbot but an
0004 orchestrated research system with config-compare as a first-class
0005 feature.
0006
0007 ```mermaid
0008 sequenceDiagram
0009 autonumber
0010 participant U as Expert evaluator
0011 participant S as Scheduler
0012 participant W as Worker LLM
0013 participant M as MCP tools
0014 participant E as Research entry
0015
0016 U->>S: submit research prompt<br/>+ config (model · sysprompt · MCP set)
0017 S->>W: spawn worker with config
0018 loop deep analysis — minutes to tens of minutes
0019 W->>M: tool call (PanDA / LXR / Rucio / ...)
0020 M-->>W: results
0021 W->>W: reason · refine · iterate
0022 end
0023 W-->>S: completed analysis
0024 S->>E: write research entry
0025 E-->>U: notify + surface result
0026 U->>E: annotate · thread comments
0027 Note over U,E: config variants compared<br/>side-by-side in threads —<br/>an R&D testbed, not a product
0028 ```