zeabur/agent-skills

zeabur-service-delete

Use when deleting a Zeabur service. Use when user says "delete service", "remove service", or "tear down service". Always confirm service name and ID with the user before deleting.

First seen Mar 14, 2026

Installation

$ npx skills add zeabur/agent-skills --skill zeabur-service-delete

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from zeabur/agent-skills · top by installs.

npx skills add zeabur/agent-skills

Browse all from zeabur/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 41
License MIT
Default branch main
Open issues 4
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,437 B
  • docs SUMMARY.md 209 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 149 installs

SKILL.md

Zeabur Service Delete

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.

Deleting a service removes its deployments, domains, and data. This is irreversible — always confirm with the user before proceeding.

Safety First

Before deleting:

  1. List services so the user can verify the target
  2. Show the service name and ID and ask for explicit confirmation
  3. Only then run the delete command

Delete by ID

npx zeabur@latest service delete -i=false --id <service-id> -y

Flags

Flag Description
--id Service ID to delete
-y, --yes Skip confirmation prompt
-i=false Non-interactive mode (always use this)

Workflow

# 1. List services to find the target (use the `zeabur-service-list` skill)
npx zeabur@latest service list --project-id <project-id> -i=false --json

# 2. Confirm with user: "Delete <service-name> (<service-id>)?"

# 3. Delete
npx zeabur@latest service delete -i=false --id <service-id> -y

To delete an entire project instead, use the zeabur-project-delete skill.