User Creation
Add a Test User Mechanism
Provide a command-line utility that adds a new user to your web application from a local development environment. This user will be used to test the application’s functionality.
The command will be dependent on your tech stack. For example, if you are using Node, you could add a command to your package.json file that you would call with npm run add-user.
This command should also add any necessary data to your database so that this test user has been onboarded to your web application.
If you would like to add this command quickly and are using a LLM-powered IDE (ex: Cursor, Claude Code, etc.), you can prompt the assistant in your IDE with the following (or something comparable if you are not using Node):
Implement a command to seed a new user with an email address and password.
Add a `script` to the package.json as part of this work.Next, you’ll need to add your coding agent. We currently only support Claude Code for GitHub Actions. To setup Claude Code, follow the guide here.