# Send AgentKeys to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentkeys",
    "name": "AgentKeys",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/alexandr-belogubov/agentkeys",
    "canonicalUrl": "https://clawhub.ai/alexandr-belogubov/agentkeys",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentkeys",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentkeys",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentkeys",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T15:33:03.226Z",
      "expiresAt": "2026-05-06T15:33:03.226Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentkeys",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentkeys",
        "contentDisposition": "attachment; filename=\"agentkeys-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentkeys"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agentkeys"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agentkeys",
    "downloadUrl": "https://openagent3.xyz/downloads/agentkeys",
    "agentUrl": "https://openagent3.xyz/skills/agentkeys/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentkeys/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentkeys/agent.md"
  }
}
```
## Documentation

### AgentKeys Skill

Secure credential proxy for AI agents. Route API calls through AgentKeys so your agent never sees real secrets.

### Configuration

You have two options. Set these in your environment or .env:

### Option A — API Key (recommended, multi-credential)

AGENTKEYS_API_KEY=ak_ws_...
AGENTKEYS_PROXY_URL=https://proxy.agentkeys.io

Use your workspace API key to proxy requests to any credential by name. Get your API key from Settings.

### Option B — Direct Proxy Token (single credential)

AGENTKEYS_PROXY_TOKEN=pxr_...
AGENTKEYS_PROXY_URL=https://proxy.agentkeys.io

Use a proxy token for one specific credential. Get it by assigning a credential to an agent in the dashboard.

### With API Key (Option A) — reference credentials by name

curl -X POST $AGENTKEYS_PROXY_URL/v1/proxy \\
  -H "Authorization: Bearer $AGENTKEYS_API_KEY" \\
  -H "X-Credential-Name: resend" \\
  -H "X-Target-Url: https://api.resend.com/emails" \\
  -H "Content-Type: application/json" \\
  -d '{"from": "noreply@example.com", "to": "user@example.com", "subject": "Hello", "text": "Sent via AgentKeys"}'

### With Proxy Token (Option B) — direct credential access

curl -X POST $AGENTKEYS_PROXY_URL/v1/proxy \\
  -H "Authorization: Bearer $AGENTKEYS_PROXY_TOKEN" \\
  -H "X-Target-Url: https://api.resend.com/emails" \\
  -H "Content-Type: application/json" \\
  -d '{"from": "noreply@example.com", "to": "user@example.com", "subject": "Hello", "text": "Sent via AgentKeys"}'

### Headers

HeaderRequiredDescriptionAuthorization✅Bearer $AGENTKEYS_API_KEY or Bearer $AGENTKEYS_PROXY_TOKENX-Target-Url✅Target API URL to forward toX-Credential-Name✅ (API key mode)Name of the credential to use (case-insensitive)Content-Type❌Passed through to target

### How It Works

Agent sends request to AgentKeys proxy with API key + credential name (or proxy token)
AgentKeys finds and decrypts the real credential server-side
Real credential is injected into headers
Request is forwarded to the target API
Response is returned to the agent
Every request is logged in the audit trail

The agent never sees the real API key, OAuth token, or password.

### Credential Types Supported

API Key — injected as Authorization: Bearer <key>
Basic Auth — injected as Authorization: Basic base64(user:pass)
Custom Headers — injected as key-value pairs
Query Parameters — appended to URL
Cookies — injected as Cookie header
OAuth — auto-refreshed tokens

### Security

Credentials are AES-256-GCM encrypted at rest
Proxy tokens are scoped to one credential + one agent
API key mode still respects workspace permissions
Tokens can be revoked instantly from the dashboard
Full audit trail for every proxied request
Agent never has access to plaintext secrets

### Links

Dashboard: app.agentkeys.io
Docs: agentkeys.io/docs
Support: support@agentkeys.io
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: alexandr-belogubov
- Version: 1.2.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T15:33:03.226Z
- Expires at: 2026-05-06T15:33:03.226Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentkeys)
- [Send to Agent page](https://openagent3.xyz/skills/agentkeys/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentkeys/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentkeys/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentkeys)