Claude-skill-registry agentuity-cli-cloud-keyvalue-set
Set a key and value in the keyvalue storage. 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-keyvalue-set" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-keyvalue-set && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-keyvalue-set/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- dumps environment variables
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Cloud Keyvalue Set
Set a key and value in the keyvalue storage
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity cloud keyvalue set <namespace> <key> <value> [ttl]
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
| string | Yes | - |
| string | Yes | - |
| string | No | - |
Examples
Store user data:
bunx @agentuity/cli kv set production user:123 '{"name":"Alice","email":"alice@example.com"}'
Store session with 1h TTL:
bunx @agentuity/cli kv set cache session:abc "session-data-here" --ttl 3600
Cache homepage for 10m:
bunx @agentuity/cli kv set staging cache:homepage "<!DOCTYPE html>..." --ttl 600
Output
Returns JSON object:
{ "success": "boolean", "namespace": "string", "key": "string", "contentType": "string", "durationMs": "number", "ttl": "number" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the operation succeeded |
| string | Namespace name |
| string | Key name |
| string | Content type (application/json or text/plain) |
| number | Operation duration in milliseconds |
| number | TTL in seconds if set |