ruff
Run ruff linter and formatter on the project
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Run ruff linter and formatter on the project
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Add observability (probes, trackers, charts) to a simulation
Analyze simulation results and provide insights
Help choose the right happysimulator components for a use case
Troubleshoot a broken or misbehaving simulation
Walk through a library example with detailed explanation
Generate a complete simulation from a high-level description
| name | ruff |
| description | Run ruff linter and formatter on the project |
| disable-model-invocation | true |
Run the ruff linter and/or formatter on the project. Configuration is in pyproject.toml under [tool.ruff].
Determine what the user wants:
Run the appropriate commands using .venv/Scripts/python.exe -m ruff:
.venv/Scripts/python.exe -m ruff check ..venv/Scripts/python.exe -m ruff check --fix ..venv/Scripts/python.exe -m ruff format --check ..venv/Scripts/python.exe -m ruff format ..venv/Scripts/python.exe -m ruff check --fix . && .venv/Scripts/python.exe -m ruff format .If a specific path is provided, replace . with that path in all commands.
Report the results:
Do NOT auto-fix violations unless the user asks for "fix", "all", or explicitly requests fixes.