원클릭으로
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: