Install
openclaw skills install local-passwordGenerate secure random passwords and check password strength. Supports custom length and character types (uppercase, lowercase, numbers, symbols). Pure local operation, no external dependencies. Use when users need to generate new secure passwords or check password strength.
openclaw skills install local-passwordA simple local tool for generating secure random passwords and checking password strength. Fully configurable: choose password length, enable/disable different character types. Estimates password entropy and crack time. All operations run locally, no data leaves your machine.
# Default: 16 characters, all character types
python3 scripts/generate.py
# Custom length with no symbols
python3 scripts/generate.py --length 20 --no-symbols
# Exclude ambiguous characters
python3 scripts/generate.py --length 12 --no-ambiguous
python3 scripts/check.py "your-password-here"
generate.py - Generate secure random password with custom optionscheck.py - Check password strength and estimate entropy/crack time