AgentStack
SKILL verified MIT Self-run

Password Generator

skill-publisher-skill-claude-skill-password-generator · by publisher-skill

密码生成器 - 生成安全密码、易记密码、PIN码,检查密码强度

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-publisher-skill-claude-skill-password-generator

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Password Generator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Password Generator Skill

密码生成器,生成安全密码、易记密码、PIN码,检查密码强度。

功能特性

  • 安全密码 - 生成高随机度安全密码
  • 易记密码 - 单词组合易记密码
  • PIN 码 - 纯数字 PIN 码
  • 强度检查 - 检查密码强度
  • 批量生成 - 一次生成多个密码

使用方法

Python API

from skills.password_generator import PasswordGenerator

gen = PasswordGenerator()

# 生成默认密码
password = gen.generate()

# 自定义密码
password = gen.generate(length=16, include_symbols=True)

# 生成 PIN 码
pin = gen.generate_pin(6)

# 生成易记密码
memorable = gen.generate_memorable(word_count=4)

# 检查强度
result = gen.check_strength(password)
print(result['strength_text'])

API 参考

PasswordGenerator 类

generate(length=12, include_uppercase=True, include_lowercase=True, include_digits=True, include_symbols=True, symbols=None, require_all_types=True)

生成密码

generate_multiple(count, length=12, ...)

生成多个密码

generate_pin(length=6)

生成 PIN 码

generate_memorable(word_count=4, separator='-', capitalize=True)

生成易记密码

generate_passphrase(words=None, length=4, separator=' ', capitalize=False)

生成密码短语

check_strength(password)

检查密码强度

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.