
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
@vibe-kit/daytona
Advanced tools
Daytona sandbox provider for VibeKit.
npm install @vibe-kit/daytona
import { VibeKit } from "@vibe-kit/sdk";
import { createDaytonaProvider } from "@vibe-kit/daytona";
// Create the Daytona provider with configuration
const daytonaProvider = createDaytonaProvider({
apiKey: process.env.DAYTONA_API_KEY!,
serverUrl: "https://app.daytona.io/api", // optional
image: "superagentai/vibekit-claude:1.0", // optional, will be auto-selected based on agent
});
// Create the VibeKit instance with the provider
const vibeKit = new VibeKit()
.withAgent({
type: "claude",
provider: "anthropic",
apiKey: process.env.CLAUDE_API_KEY!,
model: "claude-3-5-sonnet-20241022",
})
.withSandbox(daytonaProvider) // Pass the provider instance
.withWorkingDirectory("/var/custom-workdir") // Optional: specify working directory
.withSecrets({
// Any environment variables for the sandbox
NODE_ENV: "development",
});
// Use the configured instance
const response = await vibeKit.generateCode("Create a simple React component");
console.log(response);
The Daytona provider accepts the following configuration:
apiKey (required): Your Daytona API keyserverUrl (optional): Daytona server URL (defaults to "https://app.daytona.io")image (optional): Docker image to use. If not provided, it will be auto-selected based on the agent type:
claude → superagentai/vibekit-claude:1.0opencode → superagentai/vibekit-opencode:1.0gemini → superagentai/vibekit-gemini:1.0codex → superagentai/vibekit-codex:1.0Previous versions used a factory pattern with configuration objects. The new version uses provider instances:
const vibeKit = new VibeKit()
.withSandbox({
type: "daytona",
apiKey: process.env.DAYTONA_API_KEY!,
serverUrl: "https://app.daytona.io/api",
image: "superagentai/vibekit-claude:1.0",
});
import { createDaytonaProvider } from "@vibe-kit/daytona";
const daytonaProvider = createDaytonaProvider({
apiKey: process.env.DAYTONA_API_KEY!,
serverUrl: "https://app.daytona.io/api",
image: "superagentai/vibekit-claude:1.0",
});
const vibeKit = new VibeKit()
.withSandbox(daytonaProvider);
MIT
FAQs
Daytona sandbox provider for VibeKit.
The npm package @vibe-kit/daytona receives a total of 12 weekly downloads. As such, @vibe-kit/daytona popularity was classified as not popular.
We found that @vibe-kit/daytona demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.