
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@livekit/agents-plugin-baseten
Advanced tools
Node.js/TypeScript plugin for LiveKit Agents with Baseten-hosted models (LLM, STT, TTS).
cd packages/livekit-plugin-baseten
pnpm install
pnpm build
Create .env file:
BASETEN_API_KEY=your_api_key_here
BASETEN_MODEL_ID=your_llm_model_id
BASETEN_TTS_MODEL_ID=your_tts_model_id
BASETEN_STT_MODEL_ID=your_stt_model_id
import { LLM } from 'livekit-plugin-baseten'
const llm = new LLM({
model: 'openai/gpt-4o-mini',
apiKey: process.env.BASETEN_API_KEY
})
import { STT } from 'livekit-plugin-baseten'
const stt = new STT({
apiKey: process.env.BASETEN_API_KEY,
modelId: process.env.BASETEN_STT_MODEL_ID
})
const stream = stt.stream()
for await (const event of stream) {
// Handle speech events
}
import { TTS } from 'livekit-plugin-baseten'
const tts = new TTS({
apiKey: process.env.BASETEN_API_KEY,
modelEndpoint: 'your-model-endpoint-url'
})
const stream = tts.synthesize('Hello world')
for await (const frame of stream) {
// Process audio frames
}
pnpm test:llm-cli # Interactive LLM chat
pnpm test:tts-cli # TTS synthesis
pnpm test:stt-cli # STT with microphone
See TESTING.md for details.
pnpm build # Build
pnpm dev # Watch mode
pnpm typecheck # Type checking
pnpm lint # Linting
FAQs
Baseten plugin for LiveKit Node Agents
We found that @livekit/agents-plugin-baseten demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 42 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.