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.
What this skill does
# 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 use
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.