From zeabur
Safely deletes Zeabur projects: lists to verify, confirms name/ID with user, runs non-interactive CLI delete command. For test/temporary project cleanup.
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.
Deletes Zeabur services via CLI after listing services, confirming name and ID with user, and using non-interactive mode. For irreversible service removal.
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.
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.
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) |