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.