npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vibekit-cli

v0.4.6

Published

Deploy apps from your terminal. Built for AI coding agents. One command to production.

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 anthropic

Modes

  • Cloud mode: use vibekit-cli to submit tasks, deploy apps, and manage VibeKit-hosted workloads.
  • Local bridge mode: use vibekit-agent if 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 daily

JSON 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 --json

Exit 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
fi

Related Packages

  • vibekit-mcp: MCP access to VibeKit cloud from Claude Desktop, Cursor, and other MCP clients
  • vibekit-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