Loading...
Loading...
Use when deleting a Zeabur project. Use when user says "delete project", "remove project", or "clean up project". Use when tearing down test or temporary projects. Always confirm project name and ID with the user before deleting.
npx skill4agent add zeabur/agent-skills zeabur-project-deleteAlways useto invoke Zeabur CLI. Never usenpx zeabur@latestdirectly or any other installation method. Ifzeaburis not available, install Node.js first.npx
npx zeabur@latest project delete -i=false --id <project-id> -ynpx 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 |
|---|---|
| Project ID to delete |
| Project name to delete |
| Skip confirmation prompt |
| Non-interactive mode (always use this) |