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.md
safety · 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

ArgumentTypeRequiredDescription
<namespace>
stringYes-
<key>
stringYes-
<value>
stringYes-
<ttl>
stringNo-

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"
}
FieldTypeDescription
success
booleanWhether the operation succeeded
namespace
stringNamespace name
key
stringKey name
contentType
stringContent type (application/json or text/plain)
durationMs
numberOperation duration in milliseconds
ttl
numberTTL in seconds if set