Delete a storage resource or file. Requires authentication. Use for Agentuity cloud platform operations
Scanned 9/2/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill agentuity-cli-cloud-storage-delete-agentuity-examples --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Agentuity Cli Cloud Storage Delete Agentuity Examples?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-agentuity-cli-cloud-storage-delete-agentuity-examp-claude-skill-registry)More formats (shields.io, HTML) on the badges page.
---
name: agentuity-cli-cloud-storage-delete
description: Delete a storage resource or file. Requires authentication. Use for Agentuity cloud platform operations
version: "0.0.103"
license: Apache-2.0
allowed-tools: "Bash(agentuity:*)"
argument-hint: "[name] [filename]"
metadata:
command: "agentuity cloud storage delete"
tags: "destructive deletes-resource slow requires-auth requires-deployment"
---
# Cloud Storage Delete
Delete a storage resource or file
## Prerequisites
- Authenticated with `agentuity auth login`
- Organization context required (`--org-id` or default org)
## Usage
```bash
agentuity cloud storage delete [name] [filename] [options]
```
## Arguments
| Argument | Type | Required | Description |
|----------|------|----------|-------------|
| `<name>` | string | No | - |
| `<filename>` | string | No | - |
## Options
| Option | Type | Required | Default | Description |
|--------|------|----------|---------|-------------|
| `--confirm` | boolean | Yes | - | Skip confirmation prompts |
## Examples
Delete a storage bucket:
```bash
bunx @agentuity/cli cloud storage delete my-bucket
```
Delete a file from a bucket:
```bash
bunx @agentuity/cli cloud storage rm my-bucket file.txt
```
Interactive selection to delete a bucket:
```bash
bunx @agentuity/cli cloud storage delete
```
Dry-run: show what would be deleted without making changes:
```bash
bunx @agentuity/cli --dry-run cloud storage delete my-bucket
```
## Output
Returns JSON object:
```json
{
"success": "boolean",
"name": "string"
}
```
| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | Whether deletion succeeded |
| `name` | string | Deleted bucket or file name |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!