Claude-skill-registry agentuity-cli-cloud-storage-create
Create a new storage resource. 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-storage-create" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-storage-create && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-storage-create/SKILL.mdsource content
Cloud Storage Create
Create a new storage resource
Prerequisites
- Authenticated with
agentuity auth login - Organization context required (
or default org)--org-id
Usage
agentuity cloud storage create
Examples
Create a new cloud storage bucket:
bunx @agentuity/cli cloud storage create
Alias for "cloud storage create" (shorthand "new"):
bunx @agentuity/cli cloud storage new
Dry-run: display what would be created without making changes:
bunx @agentuity/cli --dry-run cloud storage create
Output
Returns JSON object:
{ "success": "boolean", "name": "string" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether creation succeeded |
| string | Created storage bucket name |