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.
What shipped
- Always on: IntelliSense for
@voicethere/agentand Node (@types/node) loads when you open the Code tab. - Typecheck still helps: Running Typecheck (or Compile) 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