| name | format |
| description | Format the codebase. If $ARGUMENTS is provided, format only that target. Codex equivalent of the Claude /format command. |
format
Codex equivalent of the Claude /format command. Follow the same project workflow, using any provided user request as the command arguments.
Format the codebase. If $ARGUMENTS is provided, format only that target.
Targets
| Target | Command |
|---|
| dotnet | dotnet format SpringVoyage.slnx |
| web | npm run lint:fix (eslint --fix across the portal + connectors) |
| python | ruff format agents/ |
| (default) | Run all of the above |
Steps
- Determine the target from $ARGUMENTS (or default to all)
- Run the appropriate format command(s)
- Report what was formatted and any remaining issues
To verify formatting / lint without changing files, run $lint.