# Send Passkey 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": "passkey",
    "name": "Passkey",
    "source": "tencent",
    "type": "skill",
    "category": "安全合规",
    "sourceUrl": "https://clawhub.ai/ivangdavila/passkey",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/passkey",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/passkey",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=passkey",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "passkey",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T10:17:30.433Z",
      "expiresAt": "2026-05-06T10:17:30.433Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=passkey",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=passkey",
        "contentDisposition": "attachment; filename=\"passkey-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "passkey"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Security-Critical Rules

Challenge must be unique per ceremony — reused challenges enable replay attacks
Origin validation is mandatory — missing check allows phishing from similar domains
Store and verify sign count — detects cloned authenticators when count doesn't increment
Never implement CBOR parsing manually — use established libraries, crypto is hard

### Server Implementation

Use battle-tested libraries — SimpleWebAuthn (JS), py_webauthn (Python), webauthn-rs (Rust)
Challenges expire quickly — 60-120 seconds max, store server-side
Store credential ID as base64 — binary data, needs encoding for database
Store public key in COSE format — libraries handle this, don't transform it

### Credential Storage Requirements

Credential ID — unique identifier, used in allowCredentials
Public key — COSE format, for signature verification
Sign count — integer, increment check detects cloning
Transports hint — helps browser suggest correct authenticator

### Registration Traps

userVerification: "required" enforces biometric/PIN — "preferred" may skip verification
Attestation usually unnecessary — requiring it reduces device compatibility
Allow multiple passkeys per account — users have multiple devices
Resident key capability varies — don't assume all authenticators support discoverable credentials

### Authentication Traps

Empty allowCredentials enables discoverable credentials — but not all passkeys are discoverable
Timeout too short frustrates users — 120 seconds minimum for cross-device flows
Cross-device auth (QR code) adds latency — don't timeout during Bluetooth handshake

### User Experience

Provide password fallback — not all users have passkey-capable devices
Conditional UI (mediation: "conditional") for autocomplete — passkeys appear in username field
Clear messaging on registration — users don't understand "security key" terminology
Account recovery path required — hardware loss shouldn't lock out account forever

### Platform Sync Behavior

Apple iCloud Keychain syncs across Apple devices — but not to Android/Windows
Google Password Manager syncs Android + Chrome — but not to Apple devices
Windows Hello is TPM-backed, local by default — doesn't sync
1Password/Bitwarden provide cross-platform sync — broadest compatibility option

### Testing

Chrome DevTools > Application > WebAuthn — simulate authenticators without hardware
Virtual authenticators in CI — no physical keys needed for automated tests
Test both resident and non-resident credentials — different flows
Cross-browser testing essential — Safari, Chrome, Firefox implementations vary
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.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-29T10:17:30.433Z
- Expires at: 2026-05-06T10:17:30.433Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/passkey)
- [Send to Agent page](https://openagent3.xyz/skills/passkey/agent)
- [JSON manifest](https://openagent3.xyz/skills/passkey/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/passkey/agent.md)
- [Download page](https://openagent3.xyz/downloads/passkey)