Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

password-gen密码生成器

Agent Skill

password-gen 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,272

周安装

656

GitHub Stars

公开资料未说明

下载量

5,353
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:password-gen(密码生成器)
来源仓库:https://github.com/ouyangabel/password-gen
安装命令:
openclaw skills install password-gen
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install password-gen

简介

安全密码生成器,支持多种字符集和强度分析。

  • 适用于创建强密码或密码短语的需求场景。
  • 可集成到开发流程中用于 API 密钥生成。
  • 建议定期更新密码并启用双因素认证。password-gen 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意本地运行,避免密码通过网络传输。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
password-gen
description
Secure password generator with multiple character sets and strength analysis. Use when: (1) generating strong passwords, (2) creating memorable passphrases, (3) analyzing password strength, or (4) any password-related security needs. Supports random passwords, passphrases, and detailed strength analysis.

Password Generator

Generate secure passwords and passphrases locally. No network calls - everything is generated on your machine using cryptographically secure random functions.

When to Use

  • Generate strong passwords for accounts
  • Create memorable passphrases
  • Analyze existing password strength
  • Build secure password policies

Quick Start

Generate Strong Password

python3 scripts/password-gen.py generate
# Output: 🔐 Password Generated
#         Password: K:kx]h--Xo<RKwKp
#         Length: 16
#         Strength: Strong

Generate Passphrase

python3 scripts/password-gen.py passphrase 6
# Output: Password: lambda-window-yellow-nu-mu

Analyze Password

python3 scripts/password-gen.py analyze "MyPassword123!"

Commands

generate [length] [options]

Generate a random password with specified options.

Options:

  • --no-upper - Exclude uppercase letters
  • --no-lower - Exclude lowercase letters
  • --no-digits - Exclude digits
  • --no-symbols - Exclude symbols
  • --exclude-ambiguous - Exclude ambiguous characters (0,O,l,I)
  • --exclude-similar - Exclude similar characters

Examples:

# Default 16-character password
python3 scripts/password-gen.py generate

# 20-character password
python3 scripts/password-gen.py generate 20

# Letters only (no symbols)
python3 scripts/password-gen.py generate 12 --no-symbols

# Numbers and letters only
python3 scripts/password-gen.py generate 16 --no-symbols

# Exclude ambiguous characters
python3 scripts/password-gen.py generate 16 --exclude-ambiguous

# Custom combination
python3 scripts/password-gen.py generate 12 --no-upper --no-symbols

passphrase [word_count] [options]

Generate a memorable passphrase (series of words).

Options:

  • --separator=char - Word separator (default: "-")

Examples:

# Default 4-word passphrase
python3 scripts/password-gen.py passphrase

# 6-word passphrase
python3 scripts/password-gen.py passphrase 6

# Custom separator
python3 scripts/password-gen.py passphrase 5 --separator="_"

analyze <password>

Analyze the strength and composition of a password.

Examples:

python3 scripts/password-gen.py analyze "MyPassword123!"

python3 scripts/password-gen.py analyze "weakpass"

list

List available character sets and excluded characters.

python3 scripts/password-gen.py list

Password Strength Levels

  • Weak - Short or missing character types
  • Medium - Decent length with multiple character types
  • Strong - Long with all character types
  • Very Strong - Very long with diverse character set

Security Features

  • Uses secrets module for cryptographically secure randomness
  • No network requests - all generation is local
  • Configurable character sets
  • Excludes ambiguous characters option
  • Strength analysis and recommendations

Character Sets

  • Lowercase letters: a-z (or a-z without l,o if excluding ambiguous)
  • Uppercase letters: A-Z (or A-Z without I,O if excluding ambiguous)
  • Digits: 0-9 (or 2-9 if excluding ambiguous)
  • Symbols: !@#$%^&*()_+-=[]{}|;:,.<>?~`

Examples

Basic Usage

# Generate strong password
python3 scripts/password-gen.py generate

# Generate 24-character password
python3 scripts/password-gen.py generate 24

For Different Use Cases

# Database password (no ambiguous chars)
python3 scripts/password-gen.py generate 20 --exclude-ambiguous

# PIN code (numbers only)
python3 scripts/password-gen.py generate 6 --no-upper --no-lower --no-symbols

# Website password (letters and numbers)
python3 scripts/password-gen.py generate 16 --no-symbols

# Memorable password (passphrase)
python3 scripts/password-gen.py passphrase 5

Analysis Examples

# Analyze existing password
python3 scripts/password-gen.py analyze "MyPassword123!"

# Check if password is weak
python3 scripts/password-gen.py analyze "password123"

Tips

  • Use at least 12-16 characters for good security
  • Include all character types when possible
  • Consider passphrases for better memorability
  • Avoid using personal information
  • Use different passwords for different accounts
  • Consider using a password manager

Troubleshooting

"Password too weak" warnings:

  • Increase length
  • Add more character types
  • Use the --exclude-ambiguous option for clarity

"Command not found":

  • Ensure Python 3 is installed
  • Check script permissions: chmod +x scripts/password-gen.py

Security Notes

  • Generated passwords are shown in plain text
  • Copy passwords immediately after generation
  • Don't save passwords in command history
  • Use secure methods to store generated passwords
  • Consider using a password manager for storage

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.22%
按下载量换算4,829

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills