From zeabur
Publishes new Zeabur templates or updates existing ones to the marketplace using `npx zeabur@latest` CLI commands for create, update, delete, and verification.
npx claudepluginhub zeabur/agent-skills --plugin zeaburThis skill uses the workspace's default tool permissions.
> **Always use `npx zeabur@latest` to invoke Zeabur CLI.** Never use `zeabur` directly or any other installation method. If `npx` is not available, install Node.js first.
Backs up Zeabur templates from URLs like zeabur.com/templates/XXXXXX to local git repos using curl, standardized naming, and commit messages.
Deploys built projects to platforms like Vercel, Cloudflare Workers, Supabase. Detects CLI tools, reads stack YAML for config, sets up DB/env, pushes code, verifies live status.
Initializes, builds, and deploys Webflow Cloud applications via CLI with non-interactive flags, mount path validation, and package manager detection. Use for Webflow project creation and deployment.
Share bugs, ideas, or general feedback.
Always use
npx zeabur@latestto invoke Zeabur CLI. Never usezeaburdirectly or any other installation method. Ifnpxis not available, install Node.js first.
Publish a template YAML file to the Zeabur marketplace, or update an existing one.
npx zeabur@latest template create -f <template-file>.yaml
This uploads the YAML and returns a template code (e.g., VTZ4FX). Save this code — you'll need it for future updates.
npx zeabur@latest template update -c <TEMPLATE_CODE> -f <template-file>.yaml
The template code is the identifier from the template URL: https://zeabur.com/templates/<TEMPLATE_CODE>
npx zeabur@latest template delete -c <TEMPLATE_CODE>
After publishing or updating, check the template page:
https://zeabur.com/templates/<TEMPLATE_CODE>
Or fetch the YAML to confirm:
npx zeabur@latest template get -c <TEMPLATE_CODE> --raw
template create| Flag | Description |
|---|---|
-f, --file | Template YAML file to publish |
template update| Flag | Description |
|---|---|
-c, --code | Template code to update |
-f, --file | Template YAML file with changes |
template delete| Flag | Description |
|---|---|
-c, --code | Template code to delete |
# First time: create and note the returned code (use the `zeabur-template` skill to create the YAML first)
npx zeabur@latest template create -f zeabur-template-myapp.yaml
# → Template created: VTZ4FX
# Later: update with changes
npx zeabur@latest template update -c VTZ4FX -f zeabur-template-myapp.yaml
# Verify
npx zeabur@latest template get -c VTZ4FX --raw