Claude-skill-registry agentuity-cli-cloud-deployment-remove
Remove a specific deployment. Requires authentication. Use for Agentuity cloud platform operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-cloud-deployment-remove" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-deployment-remove && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-deployment-remove/SKILL.mdsource content
Cloud Deployment Remove
Remove a specific deployment
Prerequisites
- Authenticated with
agentuity auth login - cloud deploy
Usage
agentuity cloud deployment remove <deployment_id> [options]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Project ID |
| boolean | No | | Force removal without confirmation |
Examples
Remove with confirmation:
bunx @agentuity/cli cloud deployment remove dep_abc123xyz
Remove without confirmation:
bunx @agentuity/cli cloud deployment remove dep_abc123xyz --force
Remove deployment from specific project:
bunx @agentuity/cli cloud deployment remove deployment-2024-11-20 --project-id=proj_abc123xyz
Output
Returns JSON object:
{ "success": "boolean", "projectId": "string", "deploymentId": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the removal succeeded |
| string | Project ID |
| string | Deployment ID that was removed |