| name | nanocontacts |
| description | Search, view, create, and update contacts with the nanocontacts CLI. Use when working on a Mac where nanocontacts is installed and you need Apple Contacts data or updates from the terminal. |
nanocontacts CLI
Use nanocontacts directly. Always pass --json for structured output.
Read
nanocontacts me --json
nanocontacts groups --json
nanocontacts search "Jenny" --limit 10 --json
nanocontacts show --id "UUID:ABPerson" --json
Write
nanocontacts create --first "Jane" --last "Doe" --email "jane@example.com" --phone "+15551234567" --json
nanocontacts update --id "UUID:ABPerson" --first "Jane" --last "Smith" --json
nanocontacts update --id "UUID:ABPerson" --add-email "new@example.com" --json
nanocontacts update --id "UUID:ABPerson" --add-phone "+15559876543" --json
Workflow
- Search before creating to avoid duplicates.
- Use IDs from
search results for show and update.
- Ask for missing details before creating a new contact.
- Ask for confirmation before creating or updating contacts.