ワンクリックで
lint
Run static analysis tools (pylint, flake8 for Python, ESLint for JavaScript) to check Google Style compliance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run static analysis tools (pylint, flake8 for Python, ESLint for JavaScript) to check Google Style compliance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check branch status before commit. Ensures work is not done on stale/merged branches.
Create a new feature branch following naming conventions. Uses Git MCP for branch operations.
Create a pull request with change validation. Checks line count limit (max 300 lines) and ensures proper commit prefix. Uses GitHub MCP for PR operations.
Review current code changes for Google Style compliance, security issues, and test coverage. Uses Git MCP for diff analysis.
Run all project tests including Python pytest and JavaScript tests. Reports test results and failures.
| name | lint |
| description | Run static analysis tools (pylint, flake8 for Python, ESLint for JavaScript) to check Google Style compliance. |
| user-invocable | true |
| allowed-tools | Bash, Read |
# Python
cd server && python -m flake8 src/ tests/ --max-line-length=80
cd server && python -m pylint src/ --indent-string=' '
# JavaScript
cd client && npx eslint src/ --ext .js