{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/authy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/commands.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/authy",
    "agentPageUrl": "https://openagent3.xyz/skills/authy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/authy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/authy/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Authy — Secure Secret Injection",
        "body": "Inject secrets into subprocesses as environment variables. You never see, handle, or log secret values."
      },
      {
        "title": "How It Works",
        "body": "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."
      },
      {
        "title": "Inject Secrets into a Command",
        "body": "authy run --scope <policy> --uppercase --replace-dash '_' -- <command> [args...]\n\nThe --uppercase --replace-dash '_' flags turn secret names like db-host into env vars like DB_HOST.\n\nExamples:\n\nauthy run --scope deploy --uppercase --replace-dash '_' -- ./deploy.sh\nauthy run --scope backend --uppercase --replace-dash '_' -- node server.js\nauthy run --scope testing --uppercase --replace-dash '_' -- pytest"
      },
      {
        "title": "Discover Secret Names",
        "body": "authy list --scope <policy> --json\n\nOutput: {\"secrets\":[{\"name\":\"db-host\",\"version\":1,...}]}"
      },
      {
        "title": "Write Scripts That Use Secrets",
        "body": "Write code that reads environment variables, then run it with authy run:\n\ncat > task.sh << 'EOF'\n#!/bin/bash\ncurl -H \"Authorization: Bearer $API_KEY\" https://api.example.com/data\nEOF\nchmod +x task.sh\nauthy run --scope my-scope --uppercase --replace-dash '_' -- ./task.sh"
      },
      {
        "title": "Error Codes",
        "body": "CodeMeaning0Success2Auth failed — check AUTHY_TOKEN / AUTHY_KEYFILE3Secret or policy not found4Access denied or run-only restriction6Token invalid, expired, or revoked"
      },
      {
        "title": "Rules",
        "body": "Only use authy run and authy list — these are the only commands available to you\nNever hardcode credentials — reference env vars, run via authy run\nNever echo, print, or log env vars in subprocess scripts — secrets exist in memory only\nNever redirect env vars to files — do not write $SECRET to disk\nUse --scope to limit access to needed secrets only"
      }
    ],
    "body": "Authy — Secure Secret Injection\n\nInject secrets into subprocesses as environment variables. You never see, handle, or log secret values.\n\nHow It Works\n\nYour 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.\n\nInject Secrets into a Command\nauthy run --scope <policy> --uppercase --replace-dash '_' -- <command> [args...]\n\n\nThe --uppercase --replace-dash '_' flags turn secret names like db-host into env vars like DB_HOST.\n\nExamples:\n\nauthy run --scope deploy --uppercase --replace-dash '_' -- ./deploy.sh\nauthy run --scope backend --uppercase --replace-dash '_' -- node server.js\nauthy run --scope testing --uppercase --replace-dash '_' -- pytest\n\nDiscover Secret Names\nauthy list --scope <policy> --json\n\n\nOutput: {\"secrets\":[{\"name\":\"db-host\",\"version\":1,...}]}\n\nWrite Scripts That Use Secrets\n\nWrite code that reads environment variables, then run it with authy run:\n\ncat > task.sh << 'EOF'\n#!/bin/bash\ncurl -H \"Authorization: Bearer $API_KEY\" https://api.example.com/data\nEOF\nchmod +x task.sh\nauthy run --scope my-scope --uppercase --replace-dash '_' -- ./task.sh\n\nError Codes\nCode\tMeaning\n0\tSuccess\n2\tAuth failed — check AUTHY_TOKEN / AUTHY_KEYFILE\n3\tSecret or policy not found\n4\tAccess denied or run-only restriction\n6\tToken invalid, expired, or revoked\nRules\nOnly use authy run and authy list — these are the only commands available to you\nNever hardcode credentials — reference env vars, run via authy run\nNever echo, print, or log env vars in subprocess scripts — secrets exist in memory only\nNever redirect env vars to files — do not write $SECRET to disk\nUse --scope to limit access to needed secrets only"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/eric8810/authy",
    "publisherUrl": "https://clawhub.ai/eric8810/authy",
    "owner": "eric8810",
    "version": "0.3.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}