
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.