Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .csbignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules
dist
.vscode
*.log
14 changes: 14 additions & 0 deletions .devcontainer/Dockerfile.claude
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#Use Ubuntu 22.04 as the base image
FROM ubuntu:22.04

# Install curl and git, update package list
RUN apt-get update && apt-get install -y curl git ripgrep

# Install Node.js 24.x
RUN curl -sL https://deb.nodesource.com/setup_24.x | bash - && apt-get install -y nodejs

# Confirm installations
RUN node -v && npm -v && git --version

# Install Claude Code globalliy
RUN npm install -g @anthropic-ai/claude-code
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "vibekit-claude-code",
"build": { "dockerfile": "Dockerfile.claude" },
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,6 @@ test-daytona.ts
test-package.ts
test-envs.ts
test-run-tests.ts
test-togetherai.ts
.cluso/config.json
.inngest/main.db
230 changes: 226 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.22",
"@codesandbox/sdk": "^1.1.6",
"@daytonaio/sdk": "^0.20.2",
"@e2b/code-interpreter": "1.2.0-beta.4",
"@opentelemetry/api": "^1.9.0",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type {
ModelProvider,
E2BConfig,
DaytonaConfig,
TogetherAIConfig,
EnvironmentConfig,
GithubConfig,
TelemetryConfig,
Expand Down
Loading