fix: correct typo in user authentication error message for invalid credentials

This commit is contained in:
2026-06-12 04:55:10 +00:00
parent d1dde73877
commit acb3fb43ee
8 changed files with 138 additions and 60 deletions
@@ -64,10 +64,14 @@ Add `CHECK=1` to any of them to report without changing files.
## Running the whole fleet
```bash
make agents-all # run every agent in order and fix
make agents-all CHECK=1 # run every agent in order, report only
make agents-all # fix: run every agent in dependency order
make agents-all CHECK=1 # report only: run the whole fleet at once
```
Because reporting changes nothing, **`CHECK=1` runs every agent concurrently** for a
fast, read-only health check of the whole project. A **fix** run goes one agent at a
time in dependency order, so file changes never collide.
This is the command to run before a release, or in a continuous-integration job
(in `CHECK=1` mode it returns a non-zero exit code if anything is wrong).