1password-credential-lookup
This skill should be used when agents need to log into websites, retrieve passwords, or access credentials. CRITICAL - always use find_credential with the website URL, never guess item names.
What this skill does
# 1Password Credential Lookup ## CRITICAL: Use URL, Not Item Names **WRONG:** ```text get_credential(item_name="github.com") ← NEVER DO THIS get_credential(item_name="GitHub") ← NEVER DO THIS ``` **RIGHT:** ```text find_credential(url="github.com") ← CORRECT find_credential(url="github.com", username="clementwalter") ← EVEN BETTER ``` ## The One Rule **When logging into a website, use `find_credential` with the domain.** 1Password items have arbitrary names that don't match URLs. The `find_credential` tool searches by the URL field stored in 1Password, which matches the website you're visiting. ## Tools (in order of preference) ### 1. `find_credential` - PRIMARY TOOL Use this for ALL credential lookups: ```text find_credential(url="github.com") find_credential(url="linkedin.com", username="[email protected]") ``` **Parameters:** - `url` (required): Domain of website (e.g., "github.com", "twitter.com") - `username` (optional): Filter by username when multiple accounts exist **Returns:** - Single match: `{"username": "...", "password": "...", "item_name": "..."}` - Multiple matches: List of accounts to choose from - No match: Error message ### 2. `list_items_for_url` - When unsure which account ```text list_items_for_url(url="github.com") ``` Shows all accounts for a domain with usernames. Use before `find_credential` if you don't know which account to use. ### 3. `get_credential` - RARELY NEEDED Only use if you have an exact item ID (like `ct2jszznlzlp7r7jeb53rhy5li`). Never pass URLs or guessed names. ## Workflow Example When logging into github.com: ```text # Step 1: Get credentials for the domain find_credential(url="github.com", username="clementwalter") # If multiple accounts and no username filter: # → Returns list: [{"username": "[email protected]"}, {"username": "[email protected]"}] # → Pick one and retry with username filter # Step 2: Use returned credentials to fill login form ``` ## Domain Aliases These domains are treated as equivalent: - `x.com` ↔ `twitter.com` ## Error Handling | Error | Solution | | ---------------------- | ---------------------------------- | | "No items found" | Check domain spelling | | "Multiple items found" | Add `username` parameter to filter | | "op CLI not installed" | User needs 1Password CLI | | "Timed out" | User needs to run `op signin` | ## Anti-Patterns **NEVER do these:** - `get_credential(item_name="github.com")` - URL is not an item name - `get_credential(item_name="GitHub")` - Guessed names don't work - `get_credential(item_name="my github")` - Item names are arbitrary **ALWAYS do this:** - `find_credential(url="github.com")` - Search by the website URL
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.