# Agentuity CLI Cloud Storage Create

> Create a new storage resource. Requires authentication. Use for Agentuity cloud platform operations

- Skill: `agentuity/agentuity-cli-cloud-storage-create` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agentuity/agentuity-cli-cloud-storage-create`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agentuity/agentuity-cli-cloud-storage-create/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: Apache-2.0
- Author: agentuity (https://skillmd.com/u/agentuity)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/agentuity/agentuity-cli-cloud-storage-create

---


# Cloud Storage Create

Create a new storage resource

## Prerequisites

- Authenticated with `agentuity auth login`
- Organization context required (`--org-id` or default org)

## Usage

```bash
agentuity cloud storage create
```

## Examples

Create a new cloud storage bucket:

```bash
bunx @agentuity/cli cloud storage create
```

Alias for "cloud storage create" (shorthand "new"):

```bash
bunx @agentuity/cli cloud storage new
```

Dry-run: display what would be created without making changes:

```bash
bunx @agentuity/cli --dry-run cloud storage create
```

## Output

Returns JSON object:

```json
{
  "success": "boolean",
  "name": "string"
}
```

| Field | Type | Description |
|-------|------|-------------|
| `success` | boolean | Whether creation succeeded |
| `name` | string | Created storage bucket name |

