LaunchKit · 2026
Back to Skills

agentkeys

Secure credential proxy for AI agents.

0
462 downloads
by @alexandr-belogubov

Setup & Installation

openclaw skills install @alexandr-belogubov/agentkeys

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agentkeys

Version History

v1.2.0Feb 19, 2026 - Version note by skill developer:

API key mode: one key for all credentials via X-Credential-Name header. Per-credential proxy tokens (AGENTKEYS_PROXY_TOKEN_STRIPE). Python tab. Credential editing.

What This Skill Does

AgentKeys is a credential proxy for AI agents. API calls route through the proxy, which injects real secrets server-side before forwarding to the target. The agent never handles plaintext API keys, tokens, or passwords.

Decoupling secrets from agents means revoking access or rotating keys requires no changes to agent code.

When to use it

  • Sending emails via Resend without embedding the API key in an agent
  • Revoking a compromised agent's API access without rotating the underlying credential
  • Auditing which agent made calls to a third-party service and when
  • Sharing one credential across multiple agents without duplicating secrets
  • Rotating API keys without redeploying or reconfiguring agents

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Send a transactional email via Resend without giving the agent direct API access

AGENT
  1. 1Reads AGENTKEYS_PROXY_URL and AGENTKEYS_API_KEY from environment
  2. 2Sends POST to the proxy endpoint with X-Credential-Name: resend and X-Target-Url pointing to the Resend API
  3. 3AgentKeys decrypts the real Resend credential server-side
  4. 4Proxy injects the credential into headers and forwards the request to Resend
  5. 5Returns the API response and logs the call in the audit trail
OUTPUT

Email sent via Resend; the real API key was never exposed to the agent

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

AgentKeys account at app.agentkeys.ioAGENTKEYS_PROXY_URL env var (value: https://proxy.agentkeys.io)AGENTKEYS_API_KEY (workspace API key from AgentKeys Settings) or AGENTKEYS_PROXY_TOKEN (proxy token assigned to an agent in the AgentKeys dashboard)