Manage credentials in OS keychains across Windows, macOS, and Linux
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill keychain-credential-manager --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Keychain Credential Manager?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-keychain-credential-manager-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: keychain-credential-manager
description: Manage credentials in OS keychains across Windows, macOS, and Linux
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
tags: [security, credentials, keychain, cross-platform, secrets]
graph:
domains: [domain:software-engineering]
specializations: [specialization:desktop-development]
skillAreas: [skill-area:desktop-system-integration, skill-area:authentication-authorization]
roles: [role:desktop-developer, role:fullstack-engineer]
workflows: [workflow:feature-development, workflow:release-management]
---
# 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`
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!