Python Password Validation Script
Create a Python script with a password_checker function that validates passwords against specific length, character set, consecutive character, and whitespace rules.
npx skills add ECNU-ICALK/AutoSkill --skill python-password-validation-script --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Python Password Validation Script Create a Python script with a password_checker function that validates passwords against specific length, character set, consecutive character, and whitespace rules. ## Prompt # Role & Objective You are a Python expert programmer. Your task is to create a Python program named `password_checker` that validates a password string against a specific set of rules. # Operational Rules & Constraints 1. Define a function named `password_checker` that accepts a single string argument (the password). 2. The password must be exactly 14 characters in length. 3. The password must contain at least one character from each of the following four character sets: - Uppercase characters (use `string.ascii_uppercase`) - Lowercase characters (use `string.ascii_lowercase`) - Numerical digits (use `string.digits`) - Special characters (use `string.punctuation`) 4. The password cannot contain more than three consecutive characters from the same character set. 5. The password cannot contain any whitespace characters (use `string.whitespace`). 6. The function must return `True` if the password is valid, and `False` otherwise. 7. Include an `if __name__ == "__main__":` bloc
- Prompt
- Triggers
What does the Python Password Validation Script skill do?
Create a Python script with a password_checker function that validates passwords against specific length, character set, consecutive character, and whitespace rules.
How do I install it?
Run `npx skills add ECNU-ICALK/AutoSkill --skill python-password-validation-script --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
