Make online purchases using stored Privacy.com virtual card. Use when buying things online, checking out, making payments, or needing credit card details. Trigger words - buy, purchase, checkout, pay, credit card, payment.
Make online purchases using Sven's Privacy.com virtual card stored in macOS Keychain.
All of Sven's account credentials are stored in macOS Keychain:
# Google account
security find-generic-password -s "google-account" -w
# Apple ID / iCloud password
security find-generic-password -s "apple-id-password" -w
# (email is in ~/.claude/secrets.env as APPLE_ID_EMAIL)
Card details are stored securely in macOS Keychain:
# Get card number
security find-generic-password -a "sven" -s "privacy-card-number" -w
# Get expiration date
security find-generic-password -a "sven" -s "privacy-card-exp" -w
# Get CVV
security find-generic-password -a "sven" -s "privacy-card-cvv" -w
# Retrieve card details
CARD_NUM=$(security find-generic-password -a "sven" -s "privacy-card-number" -w)
CARD_EXP=$(security find-generic-password -a "sven" -s "privacy-card-exp" -w)
CARD_CVV=$(security find-generic-password -a "sven" -s "privacy-card-cvv" -w)
# Format card number with spaces for display
echo "${CARD_NUM:0:4} ${CARD_NUM:4:4} ${CARD_NUM:8:4} ${CARD_NUM:12:4}"
Use the admin's billing address (check Contacts.app or ask admin).
This card has these protections:
If the card is replaced or updated:
# Update card number
security add-generic-password -a "sven" -s "privacy-card-number" -w "NEW_NUMBER" -U
# Update expiration
security add-generic-password -a "sven" -s "privacy-card-exp" -w "MM/YY" -U
# Update CVV
security add-generic-password -a "sven" -s "privacy-card-cvv" -w "XXX" -U