vibekit-cli
v0.1.1
Published
AI developer on demand. Submit coding tasks from your terminal, get deployed apps back.
Maintainers
Readme
vibekit
AI developer on demand. Submit coding tasks, get deployed apps back.
Designed for AI agents and automation. Works with any LLM agent framework.
Quick Start
# Install
npm install -g vibekit
# Authenticate (get key from @the_vibe_kit_bot on Telegram with /apikey)
vibekit auth vk_your_api_key_here
# Submit a task
vibekit task "Build a landing page with email signup"
# Wait for completion
vibekit wait task_abc123Commands
| Command | Description |
|---------|-------------|
| vibekit auth <key> | Save your API key |
| vibekit account | Show plan & usage |
| vibekit task "<prompt>" | Submit a coding task |
| vibekit status <id> | Check task status |
| vibekit wait <id> | Wait for task to complete |
| vibekit tasks | List recent tasks |
| vibekit schedule "<prompt>" | Create recurring task |
| vibekit schedules | List scheduled tasks |
| vibekit unschedule <id> | Cancel a schedule |
Flags
| Flag | Description |
|------|-------------|
| --json | Machine-readable JSON output |
| --repo owner/name | Target GitHub repo |
| --branch name | Branch (default: main) |
| --every interval | hourly, daily, weekly, or cron |
| --callback <url> | Webhook URL for completion |
| --no-deploy | Skip auto-deploy |
JSON Mode (for agents)
Add --json to any command for machine-parseable output:
vibekit task "Fix the login bug" --repo myorg/app --json
# {"taskId":"task_abc123","status":"running","message":"..."}
vibekit wait task_abc123 --json
# {"taskId":"task_abc123","status":"complete","result":{"summary":"...","deployUrl":"..."}}Exit Codes
| Code | Meaning | |------|---------| | 0 | Success | | 1 | General error / task failed | | 10 | Not authenticated | | 40 | API error |
Environment Variables
| Variable | Description |
|----------|-------------|
| VIBEKIT_API_KEY | API key (overrides saved config) |
Links
- Website: https://vibekit.bot
- API Docs: https://vibekit.bot/SKILL.md
- Telegram Bot: https://t.me/the_vibe_kit_bot
- GitHub: https://github.com/609NFT/vibekit
License
MIT
