What problem does it solve? AI agents often need Redis for short-term memory, conversation history, or work queues, but users have not provided credentials and setting up an account is friction. This Skill provisions a working Redis endpoint and token with a single POST to https://upstash.com/start-redis, no signup or SDK setup required. ## Core Features & Use Cases - Zero-Config Provisioning: One curl POST with an optional UUIDv4 Idempotency-Key returns an endpoint, token, metrics URL, and console URL. - Retry-Safe Re-Fetch: Re-POSTing the same Idempotency-Key returns the same database credentials instead of minting duplicates. - Agent Memory Patterns: Covers common patterns like short-term memory with SET/GET and TTL, conversation logs with LPUSH/LRANGE, sub-agent work queues with LPUSH/RPOP, and ranked recall with ZADD/ZREVRANGE. - Use Case: An agent needs to track conversation state across tool calls for a user session. It provisions a scratch database, stores session JSON with a TTL, and surfaces the console URL so the user can claim the database before it expires in 3 days. ## Quick Start Ask the agent to provision a temporary Upstash Redis database and store a session value with a one-hour TTL using the returned endpoint and token.