Open Source Verification Pipeline

AgentRunDB Lab

Where every verified run is executed, captured and published.

CORE PRINCIPLE

"Website content is not written. It is run."

The 5-Step Verification Pipeline

How every compatibility verdict is generated from raw execution facts in isolated environments.

01

GitHub Actions Trigger

Scheduled runs (every Saturday 03:17 UTC) or manual dispatch execute the matrix of agents and target models.

02

Isolated Environment

Spawns a clean temporary directory with a test fixture repository containing a failing unit test.

03

Headless Agent Execution

Invokes the agent CLI (e.g. claude -p) with provider endpoint environment injected and a 10-minute timeout.

04

Fact & Verdict Verification

Runs node --test (exit 0 = passed) and verifies file edits via SHA-256 diffs to establish capability facts.

05

Evidence Ingestion & Publication

Archives report.json, log.txt, and fixture diffs, then posts to /api/runs/import for automated site updates.

Recent Pipeline Runs

Live runs emitted from automated verifiers and ingested into AgentRunDB.

View all runs →
DateCompatibilityStatusDurationTokensCostRun
2026-08-19OpenClaw × DeepSeek V4 ProPassed0msdetails
2026-08-19OpenClaw × DeepSeek V4 ProPassed0msdetails
2026-08-19OpenClaw × DeepSeek V4 ProPassed0msdetails
2026-08-19OpenCode × DeepSeek V4 ProPassed0msdetails
2026-08-19OpenCode × DeepSeek V4 ProPassed0msdetails
2026-08-19OpenCode × DeepSeek V4 ProPassed0msdetails
2026-08-19Claude Code × DeepSeek V4 ProPassed0msdetails
2026-08-19Claude Code × DeepSeek V4 ProPassed0msdetails
2026-08-19Claude Code × DeepSeek V4 ProPassed0msdetails
2026-08-19Claude Code × MiniMax-M3Passed15.6s110,936$0.17details

Live Ecosystem Data

Dynamic metrics backed by continuous automated verification.

16
Verified Runs
15
Compatibility Records
8
Agents
8
Skills & MCP Servers

Reproduce Locally

Run the exact same verification pipeline on your local machine in under 2 minutes.

bash — does-it-run
# 1. Clone does-it-run verifier
git clone https://github.com/agentrundb/does-it-run
cd does-it-run

# 2. Run verification against target model
DEEPSEEK_API_KEY=sk-... npm run verify -- --agent claude-code --model deepseek
Standard Contract: All verifier outputs emit standard JSON matching the /api/runs/import contract. POST /api/runs/import

Contribute to the Lab

AgentRunDB and does-it-run are 100% open source. Help expand test coverage across the ecosystem.

Add an Agent Adapter

Create agents/<slug>.js implementing checkInstalled, buildEnv, and invoke. See the agents/ directory.

Add a Test Case

Define prompt, fixture, and expected outcomes in cases/*.json, mapped 1:1 to site test_cases.

Report an Issue / Suggest Targets

Found a broken integration, model API drift, or want to suggest a new agent harness? Open an issue.