{
  "schemaVersion": "1.0",
  "item": {
    "slug": "passkey",
    "name": "Passkey",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/ivangdavila/passkey",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/passkey",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/passkey",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=passkey",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/passkey"
    },
    "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/passkey",
    "agentPageUrl": "https://openagent3.xyz/skills/passkey/agent",
    "manifestUrl": "https://openagent3.xyz/skills/passkey/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/passkey/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": "Security-Critical Rules",
        "body": "Challenge must be unique per ceremony — reused challenges enable replay attacks\nOrigin validation is mandatory — missing check allows phishing from similar domains\nStore and verify sign count — detects cloned authenticators when count doesn't increment\nNever implement CBOR parsing manually — use established libraries, crypto is hard"
      },
      {
        "title": "Server Implementation",
        "body": "Use battle-tested libraries — SimpleWebAuthn (JS), py_webauthn (Python), webauthn-rs (Rust)\nChallenges expire quickly — 60-120 seconds max, store server-side\nStore credential ID as base64 — binary data, needs encoding for database\nStore public key in COSE format — libraries handle this, don't transform it"
      },
      {
        "title": "Credential Storage Requirements",
        "body": "Credential ID — unique identifier, used in allowCredentials\nPublic key — COSE format, for signature verification\nSign count — integer, increment check detects cloning\nTransports hint — helps browser suggest correct authenticator"
      },
      {
        "title": "Registration Traps",
        "body": "userVerification: \"required\" enforces biometric/PIN — \"preferred\" may skip verification\nAttestation usually unnecessary — requiring it reduces device compatibility\nAllow multiple passkeys per account — users have multiple devices\nResident key capability varies — don't assume all authenticators support discoverable credentials"
      },
      {
        "title": "Authentication Traps",
        "body": "Empty allowCredentials enables discoverable credentials — but not all passkeys are discoverable\nTimeout too short frustrates users — 120 seconds minimum for cross-device flows\nCross-device auth (QR code) adds latency — don't timeout during Bluetooth handshake"
      },
      {
        "title": "User Experience",
        "body": "Provide password fallback — not all users have passkey-capable devices\nConditional UI (mediation: \"conditional\") for autocomplete — passkeys appear in username field\nClear messaging on registration — users don't understand \"security key\" terminology\nAccount recovery path required — hardware loss shouldn't lock out account forever"
      },
      {
        "title": "Platform Sync Behavior",
        "body": "Apple iCloud Keychain syncs across Apple devices — but not to Android/Windows\nGoogle Password Manager syncs Android + Chrome — but not to Apple devices\nWindows Hello is TPM-backed, local by default — doesn't sync\n1Password/Bitwarden provide cross-platform sync — broadest compatibility option"
      },
      {
        "title": "Testing",
        "body": "Chrome DevTools > Application > WebAuthn — simulate authenticators without hardware\nVirtual authenticators in CI — no physical keys needed for automated tests\nTest both resident and non-resident credentials — different flows\nCross-browser testing essential — Safari, Chrome, Firefox implementations vary"
      }
    ],
    "body": "Security-Critical Rules\nChallenge must be unique per ceremony — reused challenges enable replay attacks\nOrigin validation is mandatory — missing check allows phishing from similar domains\nStore and verify sign count — detects cloned authenticators when count doesn't increment\nNever implement CBOR parsing manually — use established libraries, crypto is hard\nServer Implementation\nUse battle-tested libraries — SimpleWebAuthn (JS), py_webauthn (Python), webauthn-rs (Rust)\nChallenges expire quickly — 60-120 seconds max, store server-side\nStore credential ID as base64 — binary data, needs encoding for database\nStore public key in COSE format — libraries handle this, don't transform it\nCredential Storage Requirements\nCredential ID — unique identifier, used in allowCredentials\nPublic key — COSE format, for signature verification\nSign count — integer, increment check detects cloning\nTransports hint — helps browser suggest correct authenticator\nRegistration Traps\nuserVerification: \"required\" enforces biometric/PIN — \"preferred\" may skip verification\nAttestation usually unnecessary — requiring it reduces device compatibility\nAllow multiple passkeys per account — users have multiple devices\nResident key capability varies — don't assume all authenticators support discoverable credentials\nAuthentication Traps\nEmpty allowCredentials enables discoverable credentials — but not all passkeys are discoverable\nTimeout too short frustrates users — 120 seconds minimum for cross-device flows\nCross-device auth (QR code) adds latency — don't timeout during Bluetooth handshake\nUser Experience\nProvide password fallback — not all users have passkey-capable devices\nConditional UI (mediation: \"conditional\") for autocomplete — passkeys appear in username field\nClear messaging on registration — users don't understand \"security key\" terminology\nAccount recovery path required — hardware loss shouldn't lock out account forever\nPlatform Sync Behavior\nApple iCloud Keychain syncs across Apple devices — but not to Android/Windows\nGoogle Password Manager syncs Android + Chrome — but not to Apple devices\nWindows Hello is TPM-backed, local by default — doesn't sync\n1Password/Bitwarden provide cross-platform sync — broadest compatibility option\nTesting\nChrome DevTools > Application > WebAuthn — simulate authenticators without hardware\nVirtual authenticators in CI — no physical keys needed for automated tests\nTest both resident and non-resident credentials — different flows\nCross-browser testing essential — Safari, Chrome, Firefox implementations vary"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/passkey",
    "publisherUrl": "https://clawhub.ai/ivangdavila/passkey",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/passkey",
    "downloadUrl": "https://openagent3.xyz/downloads/passkey",
    "agentUrl": "https://openagent3.xyz/skills/passkey/agent",
    "manifestUrl": "https://openagent3.xyz/skills/passkey/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/passkey/agent.md"
  }
}