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

### Privacy Cards

Manage virtual cards via the Privacy.com API.

### Getting API Access

Sign up for a Privacy.com account
Email support@privacy.com to request API access
Once approved, you'll receive your API key

### Configuration

export PRIVACY_API_KEY="your-api-key"

Environments:

Production: https://api.privacy.com/v1
Sandbox: https://sandbox.privacy.com/v1

All requests: Authorization: api-key $PRIVACY_API_KEY

### Create a Card

curl -s -X POST "https://api.privacy.com/v1/cards" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": "SINGLE_USE",
    "memo": "One-time purchase",
    "spend_limit": 5000,
    "spend_limit_duration": "TRANSACTION"
  }' | jq

### Card Types

TypeBehaviorSINGLE_USECloses after first transactionMERCHANT_LOCKEDLocks to first merchant, reusable thereUNLOCKEDWorks anywhere (requires issuing access)

### Create Parameters

ParameterRequiredDescriptiontypeYesSINGLE_USE, MERCHANT_LOCKED, UNLOCKEDmemoNoLabel/descriptionspend_limitNoLimit in centsspend_limit_durationNoTRANSACTION, MONTHLY, ANNUALLY, FOREVERstateNoOPEN (default) or PAUSEDfunding_tokenNoSpecific funding source UUID

### Response

{
  "token": "card-uuid",
  "type": "SINGLE_USE",
  "state": "OPEN",
  "memo": "One-time purchase",
  "last_four": "1234",
  "pan": "4111111111111234",
  "cvv": "123",
  "exp_month": "12",
  "exp_year": "2027",
  "spend_limit": 5000,
  "spend_limit_duration": "TRANSACTION",
  "created": "2024-01-15T10:30:00Z"
}

Note: pan, cvv, exp_month, exp_year require enterprise access in production. Always available in sandbox.

### All transactions for a card

curl -s "https://api.privacy.com/v1/transactions?card_token={card_token}" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

### Filter by date range

curl -s "https://api.privacy.com/v1/transactions?card_token={card_token}&begin=2024-01-01&end=2024-01-31" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

### Filter by result

# Only approved
curl -s "https://api.privacy.com/v1/transactions?result=APPROVED" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

# Only declined
curl -s "https://api.privacy.com/v1/transactions?result=DECLINED" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

### Query Parameters

ParameterDescriptioncard_tokenFilter by card UUIDresultAPPROVED or DECLINEDbeginOn or after date (YYYY-MM-DD)endBefore date (YYYY-MM-DD)pagePage number (default: 1)page_sizeResults per page (1-1000, default: 50)

### Transaction Response

{
  "token": "txn-uuid",
  "card_token": "card-uuid",
  "amount": -2500,
  "status": "SETTLED",
  "result": "APPROVED",
  "merchant": {
    "descriptor": "NETFLIX.COM",
    "mcc": "4899",
    "city": "LOS GATOS",
    "state": "CA",
    "country": "USA"
  },
  "created": "2024-01-15T14:22:00Z"
}

### Transaction Statuses

PENDING → SETTLING → SETTLED

Also: VOIDED, BOUNCED, DECLINED

### List all cards

curl -s "https://api.privacy.com/v1/cards" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

### Get single card

curl -s "https://api.privacy.com/v1/cards/{card_token}" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" | jq

### Pause a card

curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"state": "PAUSED"}' | jq

### Close a card (permanent)

curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"state": "CLOSED"}' | jq

### Update spend limit

curl -s -X PATCH "https://api.privacy.com/v1/cards/{card_token}" \\
  -H "Authorization: api-key $PRIVACY_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"spend_limit": 10000, "spend_limit_duration": "MONTHLY"}' | jq

### Common Decline Reasons

CodeMeaningCARD_PAUSEDCard is pausedCARD_CLOSEDCard is closedSINGLE_USE_RECHARGEDSingle-use already usedUNAUTHORIZED_MERCHANTWrong merchant for locked cardUSER_TRANSACTION_LIMITSpend limit exceededINSUFFICIENT_FUNDSFunding source issue

See references/api.md for complete field documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JohnieLee
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/privacy-cards)
- [Send to Agent page](https://openagent3.xyz/skills/privacy-cards/agent)
- [JSON manifest](https://openagent3.xyz/skills/privacy-cards/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/privacy-cards/agent.md)
- [Download page](https://openagent3.xyz/downloads/privacy-cards)