pass/SKILL.md
Password store (pass) integration for secure credential management. Use when dealing with API keys, tokens, or any secrets.
npx skillsauth add snqb/my-skills passInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Secure credential management using pass CLI.
pass list # List all stored passwords
pass show service/key # Get specific credential
pass insert service/key # Store new credential
pass generate service/key 32 # Generate 32-char password
pass rm service/key # Remove credential
API_KEY=$(pass show api/openai)
export GITHUB_TOKEN=$(pass show github/token)
import subprocess
def get_secret(path):
"""Get secret from pass"""
result = subprocess.run(
["pass", "show", path],
capture_output=True,
text=True,
check=True
)
return result.stdout.strip()
# Usage
api_key = get_secret("api/openai")
const { execSync } = require('child_process');
function getSecret(path) {
return execSync(`pass show ${path}`, { encoding: 'utf8' }).trim();
}
// Usage
const apiKey = getSecret('api/openai');
pass showservice/environment/keypass generate for secure random passwords# API keys
pass show api/openai
pass show api/anthropic
# Database credentials
pass show db/production/password
pass show db/staging/password
# Tokens
pass show github/token
pass show npm/token
documentation
Enrich Markdown articles with inline Wikipedia links. First mention of each notable entity gets a hyperlink. Use when asked to add wiki links, enrich, or add references to .md files.
development
Structured visual QA: screenshot → batch issues → fix all → verify. Replaces the 300-cycle screenshot→edit death spiral. Optional bishkek review as exit gate. Use when building/polishing UI with browser testing, or when user asks for N iterations/reviews.
development
Find complex code, analyze intent, recommend battle-tested library replacements. Uses radon/eslint for detection, GitHub quality search for alternatives.
research
Research real-world UI patterns from curated galleries (Collect UI, Component Gallery, Mobbin). Use when exploring what exists: dropdowns, accordions, inputs, navigation, cards, modals, etc.