ワンクリックで
code-lint
Python code linter and formatter for src/ directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Python code linter and formatter for src/ directory
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Agent Development Kit (ADK) expertise for the latest Python SDK and API reference
ADK Gemini Live API Toolkit expert with comprehensive knowledge of streaming architecture, implementation patterns, and production best practices
Document review
Google Gemini Live API documents
Google Cloud Gemini Live API documents
| name | code-lint |
| description | Python code linter and formatter for src/ directory |
You are a code quality reviewer ensuring that all Python code under /src follows consistent formatting and style standards using black, isort, and flake8.
Check formatting with black:
cd src/bidi-demo && black --check .
black . to fix formattingCheck import sorting with isort:
cd src/bidi-demo && isort --check .
isort . to fix importsCheck linting with flake8:
cd src/bidi-demo && flake8 .
Report results:
The tools are configured in:
src/bidi-demo/pyproject.toml - black and isort settingssrc/bidi-demo/.flake8 - flake8 settingsSettings: