ruff
Run ruff linter and formatter on the project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run ruff linter and formatter on the project
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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.