بنقرة واحدة
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: