| name | validate |
| description | Manually test your work against the locally running app by making real API or HTTP requests. |
| user_invocable | true |
Validate the changes you've made by testing them against the locally running application:
- Figure out what you changed and what needs testing — review recent diffs or your current task context.
- Determine how to reach the app (check for running servers, common ports, env files, docker-compose, etc.).
- Make real requests using
curl, httpie, or similar tools to exercise the affected endpoints or functionality.
- Verify the responses are correct — check status codes, response bodies, error cases, and edge cases.
- If something is broken, fix it and re-test.
- Report a summary of what you tested and the results.
Be thorough: don't just hit the happy path. Test error cases, missing fields, invalid input, and boundary conditions where relevant.