From records
Accesses 1Password vault via local CLI and service account token to audit document metadata, check expiry dates on ID items, and log newly obtained documents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/records:app-1passwordThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Auth:** Local CLI (`op`) with service account token stored in `~/.ai/env/.env`
Auth: Local CLI (op) with service account token stored in ~/.ai/env/.env
URL: https://1password.com
Configuration: Set service account token and vault name in ~/Documents/aireadylife/vault/records/config.md
expiry_date, document_number, storage_location) for structured document recordsAdd to ~/Documents/aireadylife/vault/records/config.md:
op_service_account_token: ops_YOUR_SERVICE_ACCOUNT_TOKEN # stored in ~/.ai/env/.env
op_vault_name: Personal
Add to ~/.ai/env/.env:
OP_SERVICE_ACCOUNT_TOKEN=ops_YOUR_SERVICE_ACCOUNT_TOKEN
# List all items in vault
op item list --vault "Personal" --format json
# Get a specific item's fields
op item get "Passport - Alex" --fields label=expiry_date,label=holder
# List items by tag
op item list --vault "Personal" --tags "documents,ids" --format json
# List document attachments
op document list --vault "Personal" --format json
# Get field value from a secure note
op item get "Document: US Passport" --fields label=expiry_date --format json
~/.ai/env/.envop CLI must be installed: brew install 1password-cliexport OP_SERVICE_ACCOUNT_TOKEN=ops_... then commands work without interactive sign-inop document list resultsrecords-document-audit — list all document items in the vault and check expiry fields against today; flag those nearing expirationrecords-log-document — create or update a secure note with document metadata (expiry, storage location, holder) when a new document is obtained~/Documents/aireadylife/vault/records/00_current/ (audit results cross-referenced back to vault records)
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub fru-dev3/ai-ready-life --plugin records