Install runtimeai-ide from PyPI — forecast cost, match library scenarios, or generate a custom check-ride from the SQL, DDL, or policy file in your editor. No Vantage monorepo clone. No PYTHONPATH.
Works in any repo — dbt, notebooks, agent configs. RuntimeAI talks to the hosted API at
vantageai.cc; you only bring a provider key when you want live check-rides.
pip install runtimeai-ide
python3 -m runtimeai_ide doctor
python3 -m runtimeai_ide suggest --file models/orders.sql
python3 -m runtimeai_ide forecast --scenario de_sql_optimization_v1 --turns 8
python3 -m runtimeai_ide preflight --question "Which model is good enough for our SQL agent?" --file models/orders.sql
First Agent prompt (open any SQL file):
“Use runtimeai_forecast_cost for de_sql_optimization_v1 with 8 turns, then suggest a scenario for my open SQL file.”
Add your own scenario (same file):
“Use runtimeai_generate_scenario on my open SQL file — draft a partition-pruning check-ride from the attached schema.”
Save the JSON, then reference custom_… in CI — see
Add scenarios guide.
Add a custom scenario from your repo
Library scenarios (e.g. de_sql_optimization_v1) cover common patterns.
When your tables, policies, or APIs are specific to your stack, generate a draft from context — no hand-written YAML.
runtimeai-ide generate \
--file models/fact_orders.sql \
--brief "Agent must fix partition pruning using attached schema" \
--out runtimeai-draft.json
In Cursor Agent chat, call runtimeai_generate_scenario instead.
Works without OPENROUTER_API_KEY (hosted generation; server credits apply).
With vs without OPENROUTER_API_KEY
Planning and scenario design are free. Bring a key only when you want to execute and score an agent.