From zeabur
Deletes Zeabur projects by ID or name with safety confirmations. Lists projects first, then removes all services and data. Use for tearing down test or temporary projects.
How this skill is triggered — by the user, by Claude, or both
Slash command
/zeabur:zeabur-project-deleteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **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.
Always use
npx zeabur@latestto invoke Zeabur CLI. Never usezeaburdirectly or any other installation method. Ifnpxis not available, install Node.js first.
Deleting a project removes all services, deployments, and data in it. This is irreversible — always confirm with the user before proceeding.
Before deleting:
Never batch-delete more than one project without confirming each one.
npx zeabur@latest project delete -i=false --id <project-id> -y
npx zeabur@latest project delete -i=false -n "<project-name>" -y
# List all projects
npx zeabur@latest project list -i=false
# Filter by name (strip ANSI codes)
npx zeabur@latest project list -i=false 2>/dev/null | grep "<project-name>"
# 1. List projects to find the target
npx zeabur@latest project list -i=false
# 2. Check services with the `zeabur-service-list` skill, then confirm with user: "Delete <project-name> (<project-id>)?"
# 3. Delete
npx zeabur@latest project delete -i=false --id <project-id> -y
| Flag | Description |
|---|---|
--id | Project ID to delete |
-n, --name | Project name to delete |
-y, --yes | Skip confirmation prompt |
-i=false | Non-interactive mode (always use this) |
npx claudepluginhub zeabur/agent-skills --plugin zeaburDeletes a Zeabur service by ID after user confirmation. Triggered by phrases like 'delete service', 'remove service', or 'tear down service'.
Permanently deletes a Stitch project including all screens, designs, and history via MCP tool after fetching details with stitch-mcp-get-project and explicit user confirmation. Use for user-requested project cleanup.
Removes brewcode project files like templates, configs, logs, and plans while preserving task directories and user rules. Supports --dry-run to list files without deletion.