
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
@ai-sdk/devtools
Advanced tools
A local development tool for debugging and inspecting AI SDK applications. View LLM requests, responses, tool calls, and multi-step interactions in a web-based UI.
A local development tool for debugging and inspecting AI SDK applications. View LLM requests, responses, tool calls, and multi-step interactions in a web-based UI.
Note: This package is experimental and intended for local development only. Do not use in production environments.
npm install @ai-sdk/devtools
# or
pnpm add @ai-sdk/devtools
ai@canary)Register DevToolsTelemetry globally so it captures all AI SDK calls:
import { registerTelemetry } from 'ai';
import { DevToolsTelemetry } from '@ai-sdk/devtools';
registerTelemetry(DevToolsTelemetry());
Telemetry is enabled automatically once an integration is registered:
import { generateText } from 'ai';
const result = await generateText({
model: yourModel,
prompt: 'What cities are in the United States?',
});
You can also pass the integration to individual calls instead of registering it globally:
import { streamText } from 'ai';
import { DevToolsTelemetry } from '@ai-sdk/devtools';
const result = streamText({
model: yourModel,
prompt: 'Hello!',
telemetry: {
integrations: [DevToolsTelemetry()],
},
});
npx @ai-sdk/devtools
Open http://localhost:4983 to view your AI SDK interactions.
If you are using a monorepo, start DevTools from the same workspace where your AI SDK code runs.
The DevToolsTelemetry integration hooks into the AI SDK telemetry lifecycle to
capture generateText, streamText, generateObject, and streamObject calls.
It captures:
Data is stored locally in a JSON file (.devtools/generations.json) and served through a web UI.
AI SDK call -> DevToolsTelemetry -> JSON file -> Hono API -> React UI
pnpm install
pnpm dev # Start dev server at http://localhost:5173
MIT
FAQs
A local development tool for debugging and inspecting AI SDK applications. View LLM requests, responses, tool calls, and multi-step interactions in a web-based UI.
The npm package @ai-sdk/devtools receives a total of 220,787 weekly downloads. As such, @ai-sdk/devtools popularity was classified as popular.
We found that @ai-sdk/devtools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.