smithery.ai

agentuity-cli-cloud-keyvalue-set

Set a key and value in the keyvalue storage. Requires authentication. Use for Agentuity cloud platform operations

First seen Apr 16, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.24
LicenseApache-2.0
Allowed toolsBash(agentuity:*)
More metadata
command
agentuity cloud keyvalue set
tags
mutating updates-resource slow requires-auth

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,790 B
  • docs SUMMARY.md 153 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

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
<namespace> string Yes -
<key> string Yes -
<value> string Yes -
<ttl> string No -

Examples

Store user data:

bunx @agentuity/cli kv set production user:123 '{"name":"Alice","email":"[email protected]"}'

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
success boolean Whether the operation succeeded
namespace string Namespace name
key string Key name
contentType string Content type (application/json or text/plain)
durationMs number Operation duration in milliseconds
ttl number TTL in seconds if set