apple-passwords

Solid

Open macOS Passwords or Keychain entries, locate saved logins, and read specific credentials safely.

AI & Automation 125 stars 11 forks Updated today MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
70
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Apple Passwords Use this skill for Passwords.app and Keychain-backed secret workflows on macOS. ## Scope - open or navigate the Passwords app - locate the right login or passkey entry - inspect Keychain metadata from the terminal - read one specific keychain secret when the user explicitly asks for it ## Default Strategy 1. Confirm the exact site, service, or account first. 2. Prefer metadata lookup before secret readout. 3. Use the Passwords app for browsing and editing saved credentials. 4. Use the built-in `security` CLI only when terminal access is the simpler path. ## Passwords App Open the app on macOS with: ```bash open -a Passwords ``` Use the app when the user wants to browse, edit, share, or visually confirm a saved login or passkey. ## Keychain CLI For generic passwords, inspect metadata first: ```bash security find-generic-password -s "example.com" ``` For internet-password style entries: ```bash security find-internet-password -s example.com ``` Read the secret value only if the user explicitly asked for the password itself: ```bash security find-generic-password -s "example.com" -a "alice@example.com" -w security find-internet-password -s example.com -a "alice@example.com" -w ``` ## Working Rules - Do not print a password value unless the user explicitly wants it. - Confirm the service and account before running a secret read command. - Prefer the GUI app when multiple matches exist or the user is unsure which credential is correct. - Treat...

Details

Author
HybridAIOne
Repository
HybridAIOne/hybridclaw
Created
5 months ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category