Use this file when a simulation technically "ran" but you need to decide whether it actually produced meaningful behavior.
Check these before trusting any final report:
state.jsonsimulation_config.jsonrun_state.jsontwitter/actions.jsonlreddit/actions.jsonltwitter_simulation.dbreddit_simulation.db
Ask these in order:
- Did both enabled platforms actually start?
- Did rounds advance beyond initialization?
- Did multiple agents act, or only a tiny subset?
- Did the action mix evolve over time?
- Do files keep changing even if the UI looks stuck?
- both platforms produce actions if both were enabled;
- action counts keep increasing over meaningful rounds;
- more than one or two agents appear repeatedly;
- the action mix is not just startup posts or idle behavior;
- database files exist and are readable.
- only a few startup actions exist;
- one platform is effectively silent;
- the run ends quickly with little or no round progression;
- the report exists, but raw artifacts are thin;
- the UI says "running" while logs stop changing.
Check:
- configured rounds;
- current rounds;
- stopped or completed status;
- any mismatch between expected and actual progress.
Check:
- whether actions continue after initialization;
- which agents appear most often;
- whether the last actions are recent and varied;
- whether one platform never really joined the run.
First introspect the database instead of assuming table names:
SELECT name
FROM sqlite_master
WHERE type = 'table'
ORDER BY name;Then inspect whichever action, post, comment, or trace tables actually exist in your run.
Stop the run and fix inputs or route quality if:
- action growth stalls early;
- both platforms look repetitive or incoherent;
- only initialization artifacts are present;
- the model route keeps failing structured output or status updates.
Classify the runtime before you move on to report analysis:
healthy: sustained multi-agent behavior, usable evidencepartial: some evidence exists, but one platform or one stage is weaktrivial: technically completed, but too little happened to trust the report
If the run is partial or trivial, document that explicitly.