Secure string creator.
There is a particular leap of faith in generating a password on a website you found through search. You are asking an anonymous server to hand you the secret that guards your accounts, and trusting that it is not quietly logging what it produced. Most of these tools do run in the browser, but you have no way to confirm that and no reason to extend the trust. This blueprint removes the guesswork. You own the code, so you can see exactly where the randomness comes from and confirm nothing leaves your machine.
A password generator with the controls that matter: adjustable length, toggles for symbols and numbers, a strength meter that reacts as you change the options, and one-click copy so you are not hand-selecting a string of random characters. The randomness is drawn from the browser's cryptographic source, not a predictable shortcut, so the output is genuinely hard to guess.
You watch it happen in the task workspace: the agent scaffolds the project, wires the generation and strength logic, starts the dev server, and confirms it produces valid passwords before handing you a live preview. The code lands on a branch in your repository with a pull request ready.
The first version is a base you steer with plain follow-up messages:
Each follow-up wakes the same repository and the agent continues on its own code.
Do I need to know how to code? No. You describe what you want; the agent writes it, verifies it generates valid passwords, and ships the code to your repository.
Does my password get sent anywhere? No. Generation happens entirely in your browser, and you own the code that proves it.
Is the randomness actually secure? Yes. It uses the browser's cryptographic random source, the same class of generator that security tools rely on.