
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
@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
The npm package @livekit/agents-plugin-baseten receives a total of 299 weekly downloads. As such, @livekit/agents-plugin-baseten popularity was classified as not popular.
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.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.