Manage passwords with generation, strength checks, and storage. Use when creating credentials, auditing strength, rotating secrets, checking breaches.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add bytesagain/ai-skills --skill password --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Password?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/bytesagain-password)More formats (shields.io, HTML) on the badges page.
---
name: password
version: "3.0.1"
author: BytesAgain
homepage: https://bytesagain.com
source: https://github.com/bytesagain/ai-skills
license: MIT-0
tags: [password, tool, utility]
description: "Manage passwords with generation, strength checks, and storage. Use when creating credentials, auditing strength, rotating secrets, checking breaches."
---
# password
Generate, check, and analyze passwords.
## Commands
### `generate`
Generate a random password (default: 16 chars)
```bash
scripts/script.sh generate
```
### `strength`
Rate password strength (weak/fair/good/strong/excellent)
```bash
scripts/script.sh strength
```
### `entropy`
Calculate Shannon entropy in bits
```bash
scripts/script.sh entropy
```
### `batch`
Generate multiple passwords at once
```bash
scripts/script.sh batch
```
### `diceware`
Generate a diceware-style passphrase
```bash
scripts/script.sh diceware
```
### `pin`
Generate a numeric PIN
```bash
scripts/script.sh pin
```
## Requirements
- curl
---
*Powered by BytesAgain | bytesagain.com | hello@bytesagain.com*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Java Spring Boot 服务中关于身份验证/授权、验证、CSRF、密钥、标头、速率限制和依赖安全的 Spring Security 最佳实践。