IDE Extension Workflow (VS Code / Cursor)
Use the extension scaffold to run probe workflows directly from your editor via CodeLens.
What the Extension Does
- Adds
Run insideLLMs probesCodeLens actions in Python files. - Executes:
insidellms harness <config> --run-dir <run_dir> --overwrite --skip-report
- Lets you set harness path and run directory in workspace settings.
Install and Build (Scaffold)
cd extensions/vscode-insidellms
npm install
npm run build
Settings
insidellms.harnessConfigPath(default:ci/harness.yaml)insidellms.runDir(default:.tmp/runs/ide)
Recommended Inner Loop
- Edit prompt/probe code in your Python file.
- Trigger
Run insideLLMs probesCodeLens. - Inspect
records.jsonl,summary.json, andreport.htmlin the configured run dir. - If behavior changed intentionally, validate with
insidellms diff --interactive.
Roadmap (Current Direction)
- Inline diff summaries next to changed prompt regions.
- One-click
baseline vs candidatelocal diff view. - Optional judge triage (
--judge) surfaced in editor diagnostics. - Jump-to-record links from CodeLens to run artifacts.