🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Password Generator

by @dinghaibin

Generate secure passwords and passphrases. Use when user needs to create strong passwords, generate secure tokens, create PINs, or generate memorable passphr...

Versionv1.0.0
Downloads554
TERMINAL
clawhub install dinghaibin-password-generator

πŸ“– About This Skill


name: password-generator description: Generate secure passwords and passphrases. Use when user needs to create strong passwords, generate secure tokens, create PINs, or generate memorable passphrases.

Password Generator

Generate secure passwords and passphrases.

Quick Start

# Generate random password
python scripts/generate.py

Specific length

python scripts/generate.py --length 16

Usage

python scripts/generate.py [OPTIONS]

Options: --length NUM Password length (default: 16) --numbers Include numbers --symbols Include special symbols --uppercase Include uppercase letters --exclude CHARS Exclude specific characters --pin Generate PIN (4-6 digits) --passphrase Generate passphrase --words NUM Words in passphrase (default: 4) --count NUM Number of passwords to generate

Examples

# Simple password
python scripts/generate.py

Strong password with all character types

python scripts/generate.py --length 20 --numbers --symbols --uppercase

PIN code

python scripts/generate.py --pin

Memorable passphrase

python scripts/generate.py --passphrase

Multiple passwords

python scripts/generate.py --count 5

Features

  • Random password generation
  • Configurable character sets
  • PIN generation
  • Passphrase generation
  • Multiple password generation
  • Secure random (os.urandom)
  • πŸ’‘ Examples

    # Simple password
    python scripts/generate.py

    Strong password with all character types

    python scripts/generate.py --length 20 --numbers --symbols --uppercase

    PIN code

    python scripts/generate.py --pin

    Memorable passphrase

    python scripts/generate.py --passphrase

    Multiple passwords

    python scripts/generate.py --count 5