keychain-credential-manager

Solid

Manage credentials in OS keychains across Windows, macOS, and Linux

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

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

Skill Content

# keychain-credential-manager Manage credentials securely in OS keychains (Windows Credential Manager, macOS Keychain, Linux libsecret) with a cross-platform API. ## Capabilities - Store credentials securely - Retrieve credentials at runtime - Delete stored credentials - Support all three desktop platforms - Integrate with keytar/node-keytar - Generate credential access code ## Input Schema ```json { "type": "object", "properties": { "projectPath": { "type": "string" }, "serviceName": { "type": "string" }, "framework": { "enum": ["electron", "native", "dotnet"] } }, "required": ["projectPath", "serviceName"] } ``` ## Cross-Platform API ```javascript // Using keytar (Electron) const keytar = require('keytar'); async function storeCredential(account, password) { await keytar.setPassword('MyApp', account, password); } async function getCredential(account) { return await keytar.getPassword('MyApp', account); } ``` ## Related Skills - `security-hardening` process - `electron-ipc-security-audit`

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills