Claude Code Plugins

Community-maintained marketplace

Feedback

agentuity-cli-cloud-keyvalue-create-namespace

@agentuity/examples
3
0

Create a new keyvalue namespace. Requires authentication. Use for Agentuity cloud platform operations

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name agentuity-cli-cloud-keyvalue-create-namespace
description Create a new keyvalue namespace. Requires authentication. Use for Agentuity cloud platform operations
version 0.0.104
license Apache-2.0
allowed-tools Bash(agentuity:*)
argument-hint <name>
metadata [object Object]

Cloud Keyvalue Create-namespace

Create a new keyvalue namespace

Prerequisites

  • Authenticated with agentuity auth login
  • Project context required (run from project directory or use --project-id)

Usage

agentuity cloud keyvalue create-namespace <name>

Arguments

Argument Type Required Description
<name> string Yes -

Examples

Create production namespace:

bunx @agentuity/cli kv create-namespace production

Create staging namespace (using alias):

bunx @agentuity/cli kv create staging

Create cache namespace:

bunx @agentuity/cli kv create cache

Output

Returns JSON object:

{
  "success": "boolean",
  "namespace": "string",
  "message": "string"
}
Field Type Description
success boolean Whether the operation succeeded
namespace string Namespace name
message string Success message