password-generator
Installation
SKILL.md
Password Generator
Generate cryptographically secure passwords and memorable passphrases. Customize character sets, length, and rules. Includes strength checking and bulk generation.
Quick Start
from scripts.password_gen import PasswordGenerator
# Generate password
gen = PasswordGenerator()
password = gen.generate(length=16)
print(password) # "K#9mPx$vL2nQ@8wR"
# Generate passphrase
passphrase = gen.passphrase(words=4)
print(passphrase) # "correct-horse-battery-staple"