Library
21 public scenarios
Curated scenarios for common agent workflows — SQL optimization, pipeline triage, support macros, fintech & healthcare domain packs, and more. Use as-is or as templates to understand rubric shape.
Vantage RuntimeAI · Adopt
Start free with sample demo (vantage-core demo) or local YAML contracts (vantage-core init) — or generate hosted drafts from the SQL, DDL, policy, or OpenAPI already in your repo. Also: 21 library scenarios to prove the method.
Library demos prove the method. Free path: vantage-core demo or YAML
contracts in your repo (init → suite run →
suite rerun --baseline latest → ci stub github).
Hosted path: generate a custom_… id
in Sim / Editor for Cloud surfaces — same ship/don’t-ship idea either way.
Library
Curated scenarios for common agent workflows — SQL optimization, pipeline triage, support macros, fintech & healthcare domain packs, and more. Use as-is or as templates to understand rubric shape.
Custom
Point at your tables, routes, refund policy, or API spec. Same deterministic rubrics as library scenarios — no hand-written YAML fixtures.
Free CLI: vantage-core demo → init → edit
contracts/ → suite run → suite rerun --baseline latest →
ci stub github.
Hosted assist: attach repo context, generate a draft, save a custom_… id
for Simulator, Editor, API, or Cloud CI.
SQL · DDL · policy · OpenAPI already in your project
RuntimeAI builds multi-turn scenario + rubric from context
Persist JSON → receive a custom_… scenario id
Simulator · Editor · API batch · vantage-core CI
Want free CI gate with no RuntimeAI account?
└─ yes → pip install vantage-core && vantage-core demo
then: init → edit contracts/ → suite run
→ suite rerun --baseline latest → ci stub github
Have Cursor open with a SQL / schema file?
└─ yes → MCP: runtimeai_generate_scenario (hosted draft)
Prefer terminal only (hosted)?
└─ yes → runtimeai-ide generate --file …
No install?
└─ yes → Simulator ?create=1
Wiring hosted custom_… into GitHub Actions?
└─ yes → curl generate + save → Repo → CI guide
Same generate → save → run pipeline everywhere. Choose the surface that matches where you work today.
Recommended
Start from your stakes, headcount, and funded budget — generate a scenario in context of org economics, then forecast.
Open Preflight →
Editor
Open a SQL or schema file → ask Agent to call runtimeai_generate_scenario. No monorepo clone; no OPENROUTER_API_KEY for generation.
Editor / MCP setup →
Terminal
pip install runtimeai-ide then generate --file … from any project directory.
CLI example ↓
Browser
Paste context in the UI — generate, review, and save without installing anything.
Open Simulator →
Automation
POST /api/scenarios/generate then POST /api/scenarios/custom — wire into bootstrap scripts.
curl snippets →
schema
DDL, dbt models, migration files
sql_sample
Broken query + EXPLAIN output
policy
Refund rules, escalation macros, tier entitlements
api_spec
OpenAPI paths, routing rules, error-code matrix
Brief is optional when context blocks are substantial (40+ chars). More specific brief → tighter rubric.
Install once: pip install runtimeai-ide, wire MCP, restart Cursor.
Full setup: Editor / MCP guide.
Agent prompt (open any SQL file): “Use runtimeai_generate_scenario on my open SQL file — draft a partition-pruning scenario from the attached schema.”
Works without OPENROUTER_API_KEY (hosted generation; server credits apply).
Bring a key only when you want to execute and score with runtimeai_run_checkride.
pip install runtimeai-ide
runtimeai-ide doctor
runtimeai-ide generate \
--file models/fact_orders.sql \
--brief "Agent must fix partition pruning using attached schema" \
--out runtimeai-draft.json
Omit --brief and the CLI fills one from the file type. Review runtimeai-draft.json, then save via Simulator or API.
Open Simulator create mode — paste schema/SQL/policy, generate, edit the draft, save. Same JSON shape as CLI and API.
curl -sS -X POST https://www.vantageai.cc/api/scenarios/generate \
-H "Content-Type: application/json" \
-H "X-Flightdeck-Product: runtimeai" \
-d @- <<'EOF'
{
"brief": "Data engineer must fix a partition filter on fact_orders.",
"product": "runtimeai",
"contexts": [
{
"type": "schema",
"label": "Orders DDL",
"content": "CREATE TABLE fact_orders (order_id INT, dt DATE, amount DECIMAL); -- partition column: dt"
}
]
}
EOF
Then POST /api/scenarios/custom with the draft JSON to receive your custom_… id.
Copy-paste bootstrap and GitHub Actions snippets on the
Repo → CI guide.
Add RuntimeAI scenarios: 21 library scenarios or generate custom from repo context. Flow: context → generate → save custom_ id → run in Sim/IDE/CI. MCP runtimeai_generate_scenario, runtimeai-ide generate, or POST /api/scenarios/generate. Preflight adds org stakes and costing before generate.