Code editor: agent SDK and Node IntelliSense by default
September 9, 2026 · release
@voicethere/agent
Opening the dashboard Code tab used to leave import from @voicethere/agent and Node globals like process without completions until you ran Typecheck. That friction is gone for the core agent SDK and Node built-ins.
IntelliSense
IntelliSense for @voicethere/agent and Node (@types/node) loads when you open the Code tab.
Running Typecheck (or Compile) still refreshes dependency typings from your project's package.json: lodash, date libraries, and other npm packages you add.
You can start editing agent code with completions immediately. Add npm deps and typecheck when you need those packages in the editor.
Try it
- Open the VoiceThere dashboard → a project → Code.
- Type
import { defineAgent } from "@voicethere/agent". Completions should appear without running Typecheck first. - Add dependencies in
package.json, Save, then Typecheck to refresh dependency IntelliSense.
- Docs: Dashboard code editor