zeabur
Expert guidance for Zeabur, the cloud deployment platform that auto-detects frameworks, builds and deploys applications with zero configuration, and provides managed services like databases and message queues. Helps developers deploy full-stack applications with automatic scaling and one-click marketplace services.
Best use case
zeabur is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Expert guidance for Zeabur, the cloud deployment platform that auto-detects frameworks, builds and deploys applications with zero configuration, and provides managed services like databases and message queues. Helps developers deploy full-stack applications with automatic scaling and one-click marketplace services.
Teams using zeabur should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/zeabur/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How zeabur Compares
| Feature / Agent | zeabur | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Expert guidance for Zeabur, the cloud deployment platform that auto-detects frameworks, builds and deploys applications with zero configuration, and provides managed services like databases and message queues. Helps developers deploy full-stack applications with automatic scaling and one-click marketplace services.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Zeabur — Modern Cloud Deployment Platform
## Overview
Zeabur, the cloud deployment platform that auto-detects frameworks, builds and deploys applications with zero configuration, and provides managed services like databases and message queues. Helps developers deploy full-stack applications with automatic scaling and one-click marketplace services.
## Instructions
### CLI Deployment
```bash
# Install Zeabur CLI
npm install -g zeabur
# Login
zeabur auth login
# Deploy from current directory (auto-detects framework)
zeabur deploy
# Deploy with specific settings
zeabur deploy --name my-api --region hkg # Hong Kong region
# Environment variables
zeabur env set DATABASE_URL "postgres://..."
zeabur env set NODE_ENV production
zeabur env list
# Manage domains
zeabur domain add api.myapp.com
zeabur domain list
```
### Project Configuration
```toml
# zeabur.toml — Optional project configuration
[build]
# Override auto-detected build command
command = "npm run build"
output = "dist"
[runtime]
# Override start command
command = "node dist/server.js"
[env]
# Default environment variables (overridden by dashboard/CLI)
NODE_ENV = "production"
PORT = "3000"
[scaling]
min_instances = 1
max_instances = 5
[health_check]
path = "/health"
interval = "30s"
```
### Framework Auto-Detection
Zeabur automatically detects and configures:
```markdown
## Supported Frameworks (auto-detected, zero config)
- **Node.js**: Next.js, Nuxt, Remix, Express, Fastify, Hono, NestJS
- **Python**: Django, Flask, FastAPI, Streamlit
- **Go**: Gin, Echo, Fiber, standard net/http
- **Rust**: Actix, Axum, Rocket
- **Java**: Spring Boot, Quarkus
- **PHP**: Laravel, Symfony
- **Ruby**: Rails, Sinatra
- **Static**: React, Vue, Svelte, Astro, Hugo, Gatsby
## How it works:
1. Push code to GitHub or deploy via CLI
2. Zeabur detects the framework from package.json/requirements.txt/go.mod/etc.
3. Builds using the appropriate buildpack (Nixpacks)
4. Deploys to an isolated container with auto-scaling
5. Provisions a subdomain with SSL (*.zeabur.app)
```
### Marketplace Services
Deploy managed services alongside your application:
```typescript
// Available marketplace services (one-click deploy via dashboard or API)
const services = {
databases: [
"PostgreSQL", // Managed Postgres with automatic backups
"MySQL", // Managed MySQL/MariaDB
"MongoDB", // Managed MongoDB
"Redis", // Managed Redis for caching
],
messaging: [
"RabbitMQ", // Message broker
"Kafka", // Event streaming (via Redpanda)
],
search: [
"Meilisearch", // Full-text search engine
"Elasticsearch",
],
tools: [
"MinIO", // S3-compatible object storage
"n8n", // Workflow automation
"Umami", // Web analytics
"Plausible", // Privacy-focused analytics
"Ghost", // Blog/CMS
"Strapi", // Headless CMS
],
};
// Services are deployed in the same project
// Connection strings are auto-injected as environment variables
// Example: DATABASE_URL is automatically available after adding PostgreSQL
```
### Git Integration
```yaml
# Automatic deployment on push
# Configure in Zeabur dashboard:
# 1. Connect GitHub/GitLab account
# 2. Select repository
# 3. Choose branch for auto-deploy
# 4. Zeabur creates a webhook that triggers deployment on push
# Branch-based environments:
# - main → production (api.myapp.com)
# - develop → staging (staging-api.myapp.com)
# - PR branches → preview deployments (pr-123-api.zeabur.app)
```
### API Integration
```typescript
// scripts/zeabur-api.ts — Zeabur API for automation
const ZEABUR_API = "https://gateway.zeabur.com/graphql";
const ZEABUR_TOKEN = process.env.ZEABUR_TOKEN!;
async function zeaburQuery(query: string, variables?: Record<string, any>) {
const response = await fetch(ZEABUR_API, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${ZEABUR_TOKEN}`,
},
body: JSON.stringify({ query, variables }),
});
const result = await response.json();
if (result.errors) throw new Error(result.errors[0].message);
return result.data;
}
// List all services in a project
async function listServices(projectId: string) {
return zeaburQuery(`
query ($projectId: ObjectID!) {
project(_id: $projectId) {
services {
_id
name
status
domains { domain }
}
}
}
`, { projectId });
}
// Restart a service
async function restartService(serviceId: string) {
return zeaburQuery(`
mutation ($serviceId: ObjectID!) {
restartService(_id: $serviceId)
}
`, { serviceId });
}
```
## Examples
### Example 1: Setting up Zeabur for a microservices project
**User request:**
```
I have a Node.js API and a React frontend running in Docker. Set up Zeabur for monitoring/deployment.
```
The agent creates the necessary configuration files based on patterns like `# Install Zeabur CLI`, sets up the integration with the existing Docker setup, configures appropriate defaults for a Node.js + React stack, and provides verification commands to confirm everything is working.
### Example 2: Troubleshooting project configuration issues
**User request:**
```
Zeabur is showing errors in our project configuration. Here are the logs: [error output]
```
The agent analyzes the error output, identifies the root cause by cross-referencing with common Zeabur issues, applies the fix (updating configuration, adjusting resource limits, or correcting syntax), and verifies the resolution with appropriate health checks.
## Guidelines
1. **Let auto-detection work** — Don't add config unless Zeabur gets it wrong; framework detection handles 90% of cases
2. **Use marketplace for databases** — Don't containerize your own Postgres; Zeabur's managed services handle backups and scaling
3. **Branch-based environments** — Map branches to environments (main→prod, develop→staging) for consistent deployment workflows
4. **Environment variable injection** — Marketplace services auto-inject connection strings; reference them by the standard variable names
5. **Custom domains early** — Add your domain and point DNS before going live; Zeabur handles SSL automatically
6. **Monitor build logs** — Check build logs when auto-detection fails; override with `zeabur.toml` if needed
7. **Use regions strategically** — Deploy close to your users; Zeabur supports multiple regions including Asia
8. **Scale based on traffic** — Configure auto-scaling with min/max instances; pay only for what you useRelated Skills
zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.
zig
Expert guidance for Zig, the systems programming language focused on performance, safety, and readability. Helps developers write high-performance code with compile-time evaluation, seamless C interop, no hidden control flow, and no garbage collector. Zig is used for game engines, operating systems, networking, and as a C/C++ replacement.
zed
Expert guidance for Zed, the high-performance code editor built in Rust with native collaboration, AI integration, and GPU-accelerated rendering. Helps developers configure Zed, create custom extensions, set up collaborative editing sessions, and integrate AI assistants for productive coding.
zapier
Automate workflows between apps with Zapier. Use when a user asks to connect apps without code, automate repetitive tasks, sync data between services, or build no-code integrations between SaaS tools.
zabbix
Configure Zabbix for enterprise infrastructure monitoring with templates, triggers, discovery rules, and dashboards. Use when a user needs to set up Zabbix server, configure host monitoring, create custom templates, define trigger expressions, or automate host discovery and registration.
yup
Validate data with Yup schemas. Use when adding form validation, defining API request schemas, validating configuration, or building type-safe validation pipelines in JavaScript/TypeScript.
yt-dlp
Download video and audio from YouTube and other platforms with yt-dlp. Use when a user asks to download YouTube videos, extract audio from videos, download playlists, get subtitles, download specific formats or qualities, batch download, archive channels, extract metadata, embed thumbnails, download from social media platforms (Twitter, Instagram, TikTok), or build media ingestion pipelines. Covers format selection, audio extraction, playlists, subtitles, metadata, and automation.
youtube-transcription
Transcribe YouTube videos to text using OpenAI Whisper and yt-dlp. Use when the user wants to get a transcript from a YouTube video, generate subtitles, convert video speech to text, create SRT/VTT captions, or extract spoken content from YouTube URLs.
youtube-marketing
Create, optimize, and manage YouTube content for channel growth, audience building, and monetization. Use when someone asks to "grow on YouTube", "optimize YouTube videos", "YouTube SEO", "YouTube Shorts strategy", "YouTube API integration", "automate YouTube uploads", "YouTube analytics", "YouTube thumbnail", or "YouTube content strategy". Covers long-form video, Shorts, SEO, thumbnail design, YouTube Data API, analytics, monetization, and growth strategies.