Install
openclaw skills install cn-password-generator-v2Generate cryptographically random passwords with customizable character sets. Control length, include/exclude character types. Pure Python, no API key required.
openclaw skills install cn-password-generator-v2Generate strong, random passwords.
# Default: 16 chars, all types
python3 scripts/pwd_gen_v2.py
# 24 chars, no symbols
python3 scripts/pwd_gen_v2.py --length 24 --no-symbols
# 5 passwords, 12 chars each
python3 scripts/pwd_gen_v2.py --length 12 --count 5
# Letters only (no digits, no symbols)
python3 scripts/pwd_gen_v2.py --length 20 --no-digits --no-symbols
{
"passwords": [
"Kj8#mNp2$xL9@vQw7",
"Rt4&fBc6%Yn3*Hs8j"
],
"length": 16
}
secrets module for cryptographic randomness