원클릭으로
openevse-development
Guide for developing, testing, and linting the OpenEVSE Home Assistant integration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide for developing, testing, and linting the OpenEVSE Home Assistant integration.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | openevse-development |
| description | Guide for developing, testing, and linting the OpenEVSE Home Assistant integration. |
This skill helps Claude Code develop, test, and format code for the OpenEVSE integration.
custom_components/openevse/: Core integration code.
manifest.json: Configuration, requirements, dependencies.update.py: Firmware update entities.sensor.py, binary_sensor.py, select.py, switch.py, number.py, light.py, button.py: Entity platforms.services.py, services.yaml: Custom service registration and definitions.tests/: Integration tests.Always run the test suite to verify changes:
tox -e py313
Run prek to execute ruff, ruff-format, mypy, codespell, and check file structure:
.tox/py313/bin/prek run --all-files --show-diff-on-failure
You should run this before proposing/committing changes to make sure all formatting and code quality checks pass.
Top-Level Imports (PLC0415)
Always place Python imports at the top-level of a module. Never use inlined imports inside functions or methods (which violates Ruff's import-outside-toplevel check).
Local Testing Against Library Changes
The integration depends on python-openevse-http. To test against local changes in python-openevse-http, temporarily edit requirements.txt to point to the local checkout:
-e /path/to/cloned/python-openevse-http
CRITICAL: You must revert this change back to a published version (e.g., python-openevse-http==1.0.0) before committing, staging, or pushing. Do not ship local paths in requirements.txt or manifest.json.
PR Titles and Templates
chore(deps): bump python-openevse-http to 1.0.0 or fix: resolve websocket connection error)..github/pull_request_template.md) for all Pull Request descriptions.