Deploy your projects to the internet effortlessly. No VMs, no build pipelines, no infrastructure headaches.
Yeet makes deployment simple. Build your project and deploy it to the internet with a single command.
This Claude Code plugin automates the entire deployment workflow:
- Analyzes your project type (Go, Rust, Node.js, Python, Ruby, etc.)
- Builds your project (binary or Docker image)
- Deploys to yeet automatically
- Provides a public URL and management commands
Binary Deployment:
- Go, Rust, C/C++, Zig
- Bun/Deno (if compilable)
Docker Deployment:
- Node.js, Python, Ruby, PHP
- Any project with a Dockerfile
/plugin marketplace add yeetrun/claude-codeThen install the plugin from the marketplace.
In your project directory, run:
/yeet:yeetClaude will:
- Detect your project type
- Ask for service name and HTTP port
- Build your project
- Deploy it to yeet
- Give you a public URL
- yeet CLI installed and in your PATH
- Docker (for Docker-based deployments)
- Project build tools (go, cargo, npm, etc.)
You: /yeet:yeet
Claude: I see this is a Go project. What would you like to name the service?
You: my-api
Claude: What HTTP port does your application listen on?
You: 8080
Claude: [builds and deploys]
Result: Service deployed at https://my-api-abc123.yeet.run
Management commands:
- yeet logs my-api
- yeet restart my-api
- yeet status my-api
- Automatic project detection - Identifies Go, Rust, Node.js, Python, Ruby, PHP, and more
- Smart builds - Compiles binaries or creates optimized Docker images
- Interactive - Asks only what's needed, no assumptions
- Updates - Redeploy by running
/yeet:yeetagain with the same service name - Management - Get full yeet CLI commands for logs, restart, rollback
The plugin uses specialized agents to:
- Builder Agent - Analyzes your project and creates a deployable artifact
- Deployer Agent - Uses yeet CLI to deploy and manage your service
Both binary and Docker deployments result in the same experience: a running service with a public URL.
MIT