vibekit-cli
v0.4.6
Published
Deploy apps from your terminal. Built for AI coding agents. One command to production.
Maintainers
Readme
vibekit
Deploy apps from your terminal. Built for AI coding agents.
Install + Auth
npm install -g vibekit-cli
vibekit auth $VIBEKIT_API_KEY
# Or connect a provider interactively
vibekit auth login anthropicModes
- Cloud mode: use
vibekit-clito submit tasks, deploy apps, and manage VibeKit-hosted workloads. - Local bridge mode: use
vibekit-agentif you want Telegram to control Claude Code on your own computer.
vibekit-cli does not run Claude Code on your local machine by itself. For that, install vibekit-agent.
Agent Workflow
The canonical "I just built something, now deploy it":
# After building your app locally
vibekit auth $VIBEKIT_API_KEY
vibekit task "Deploy this app" --repo owner/repo
vibekit wait $TASK_ID --json
# Returns: {"deployUrl": "https://app.vibekit.bot", ...}All Commands
| Command | Description |
|---------|-------------|
| vibekit auth <key> | Save API key |
| vibekit auth login [anthropic|openai|key] | Interactive auth flow |
| vibekit auth status | Show saved auth + provider status |
| vibekit account | Plan & usage info |
| vibekit task "<prompt>" | Submit deployment task |
| vibekit status <id> | Check task status |
| vibekit wait <id> | Wait for completion |
| vibekit tasks | List recent tasks |
| vibekit schedule "<prompt>" | Create recurring task |
| vibekit schedules | List scheduled tasks |
| vibekit unschedule <id> | Cancel schedule |
Task Flags
| Flag | Description |
|------|-------------|
| --repo owner/name | Target GitHub repo |
| --branch name | Branch (default: main) |
| --no-deploy | Skip auto-deploy |
| --callback <url> | Webhook URL for completion |
| --every interval | For schedules: hourly, daily, weekly |
Examples
# Deploy specific repo
vibekit task "Add dark mode" --repo myorg/website
# Deploy without auto-hosting
vibekit task "Fix the auth bug" --repo myorg/api --no-deploy
# With webhook callback
vibekit task "Build landing page" --callback https://myserver.com/done
# Recurring deployment
vibekit schedule "Deploy latest changes" --repo myorg/app --every dailyJSON Mode
Add --json to any command for machine-readable output:
vibekit task "Fix login bug" --repo myorg/app --json
# {"taskId":"task_abc123","status":"running","repo":"vibekit-apps/project-abc123"}
vibekit wait task_abc123 --json
# {"status":"complete","result":{"deployUrl":"https://app.vibekit.bot","summary":"Fixed login validation..."}}
vibekit account --json
# {"plan":"builder","credits":15.42,"usage":{"sessions":23,"appsCreated":3}}
vibekit status task_abc123 --json
# {"taskId":"task_abc123","status":"running","progress":"Installing dependencies..."}All commands support --json for automation and parsing.
Environment Variables
| Variable | Description |
|----------|-------------|
| VIBEKIT_API_KEY | API key (overrides saved config) |
Set in your environment or CI/CD pipeline:
export VIBEKIT_API_KEY=vk_your_key_here
vibekit task "Deploy to production" --repo owner/repo --jsonExit Codes
| Code | Meaning | |------|---------| | 0 | Success | | 1 | Task failed or general error | | 10 | Not authenticated (missing/invalid API key) | | 40 | API error (rate limit, invalid request) |
Use exit codes for error handling in scripts:
if vibekit task "Deploy app" --repo owner/repo --json; then
echo "Deployment started successfully"
else
echo "Failed to start deployment"
exit 1
fiRelated Packages
vibekit-mcp: MCP access to VibeKit cloud from Claude Desktop, Cursor, and other MCP clientsvibekit-agent: Telegram bridge for controlling local Claude Code on your own machine
Links
- Website: https://vibekit.bot
- Dashboard: https://app.vibekit.bot
- API Docs: https://vibekit.bot/SKILL.md
- Telegram Bot: @the_vibe_kit_bot
- GitHub: https://github.com/VibeKit-Bot/vibekit-cli
License
MIT
