It would be neat to have a random password generator included in the UI when adding a secret.
Contributor guide
Tech stack
javascriptreact
Domain
frontend
Issue type
feature
DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
2
Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
1-3 hours
Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
stale
ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
clear
Prerequisites
basic ReactJavaScript fundamentals
Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
80
Research direction
Look into the UI component where secrets are added (likely in a form component). Add a button that generates a random password using cryptographically secure methods (e.g., window.crypto). Implement a simple function to generate passwords with configurable length and character set. Ensure the generated password populates the secret field. Check if any existing password generation utilities are used in the codebase. The change should be localized to one component.