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.md
source 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

ArgumentTypeRequiredDescription
<deployment_id>
stringYes-

Options

OptionTypeRequiredDefaultDescription
--project-id
stringYes-Project ID
--force
booleanNo
false
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"
}
FieldTypeDescription
success
booleanWhether the removal succeeded
projectId
stringProject ID
deploymentId
stringDeployment ID that was removed