# Send Authy 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": "authy",
    "name": "Authy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/eric8810/authy",
    "canonicalUrl": "https://clawhub.ai/eric8810/authy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/authy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/commands.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "authy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T06:10:26.294Z",
      "expiresAt": "2026-05-07T06:10:26.294Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authy",
        "contentDisposition": "attachment; filename=\"authy-0.3.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "authy"
      },
      "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/authy"
    },
    "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/authy",
    "downloadUrl": "https://openagent3.xyz/downloads/authy",
    "agentUrl": "https://openagent3.xyz/skills/authy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/authy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/authy/agent.md"
  }
}
```
## Documentation

### Authy — Secure Secret Injection

Inject secrets into subprocesses as environment variables. You never see, handle, or log secret values.

### How It Works

Your token is run-only. You can discover secret names with authy list and inject them into subprocesses with authy run. You never see secret values directly.

### Inject Secrets into a Command

authy run --scope <policy> --uppercase --replace-dash '_' -- <command> [args...]

The --uppercase --replace-dash '_' flags turn secret names like db-host into env vars like DB_HOST.

Examples:

authy run --scope deploy --uppercase --replace-dash '_' -- ./deploy.sh
authy run --scope backend --uppercase --replace-dash '_' -- node server.js
authy run --scope testing --uppercase --replace-dash '_' -- pytest

### Discover Secret Names

authy list --scope <policy> --json

Output: {"secrets":[{"name":"db-host","version":1,...}]}

### Write Scripts That Use Secrets

Write code that reads environment variables, then run it with authy run:

cat > task.sh << 'EOF'
#!/bin/bash
curl -H "Authorization: Bearer $API_KEY" https://api.example.com/data
EOF
chmod +x task.sh
authy run --scope my-scope --uppercase --replace-dash '_' -- ./task.sh

### Error Codes

CodeMeaning0Success2Auth failed — check AUTHY_TOKEN / AUTHY_KEYFILE3Secret or policy not found4Access denied or run-only restriction6Token invalid, expired, or revoked

### Rules

Only use authy run and authy list — these are the only commands available to you
Never hardcode credentials — reference env vars, run via authy run
Never echo, print, or log env vars in subprocess scripts — secrets exist in memory only
Never redirect env vars to files — do not write $SECRET to disk
Use --scope to limit access to needed secrets only
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: eric8810
- Version: 0.3.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-30T06:10:26.294Z
- Expires at: 2026-05-07T06:10:26.294Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/authy)
- [Send to Agent page](https://openagent3.xyz/skills/authy/agent)
- [JSON manifest](https://openagent3.xyz/skills/authy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/authy/agent.md)
- [Download page](https://openagent3.xyz/downloads/authy)