- Install dependencies:
uv pip install -e .
(or usemake install
) - Install dev dependencies:
uv pip install -e ".[dev]"
(or usemake dev-install
) - Run server:
python -m k8s_mcp_server
- Run unit tests only (default):
pytest
(or usemake test
) - Run all tests (including integration):
pytest -o addopts=""
(or usemake test-all
) - Run unit tests explicitly:
pytest -m unit
(or usemake test-unit
) - Run integration tests only:
pytest -m integration
(or usemake test-integration
) - Run single test:
pytest tests/path/to/test_file.py::test_function_name -v
- Run linter:
ruff check src/ tests/
(or usemake lint
) - Format code:
ruff format src/ tests/
(or usemake format
)
- Python version: Python 3.13+
- Package management:
uv
for fast, reliable package management - Project config:
pyproject.toml
for configuration and dependency management - Environment: Use virtual environment in
.venv
for dependency isolation - Dependencies: Separate production and dev dependencies in
pyproject.toml
- Linting:
ruff
for style and error checking - Type checking: Use VS Code with Pylance for static type checking
- Project layout: Organize code with
src/
layout
- Formatting: Black-compatible formatting via
ruff format
with 120 char line length - Imports: Sort imports with
ruff
(stdlib, third-party, local) - Type hints: Use native Python type hints (e.g.,
list[str]
notList[str]
) - Documentation: Google-style docstrings for all modules, classes, functions
- Naming: snake_case for variables/functions, PascalCase for classes
- Function length: Keep functions short (< 30 lines) and single-purpose
- PEP 8: Follow PEP 8 style guide (enforced via
ruff
)
- File handling: Prefer
pathlib.Path
overos.path
- Debugging: Use
logging
module instead ofprint
- Error handling: Use specific exceptions with context messages and proper logging
- Data structures: Use list/dict comprehensions for concise, readable code
- Function arguments: Avoid mutable default arguments
- Data containers: Leverage
dataclasses
to reduce boilerplate - Configuration: Use environment variables for configuration
- K8s validation: Validate all commands before execution (must start with allowed prefixes)
- Security: Never store/log credentials, set command timeouts
- Favor simplicity: Choose the simplest solution that meets requirements
- DRY principle: Avoid code duplication; reuse existing functionality
- Configuration management: Use environment variables for different environments
- Focused changes: Only implement explicitly requested or fully understood changes
- Preserve patterns: Follow existing code patterns when fixing bugs
- File size: Keep files under 300 lines; refactor when exceeding this limit
- Test coverage: Write comprehensive unit and integration tests with
pytest
; include fixtures - Modular design: Create reusable, modular components
- Logging: Implement appropriate logging levels (debug, info, error)
- Error handling: Implement robust error handling for production reliability
- Security best practices: Follow input validation and data protection practices
- Performance: Optimize critical code sections when necessary
- Dependency management: Add libraries only when essential
- Version control: Commit frequently with clear messages
- Impact assessment: Evaluate how changes affect other codebase areas
- Documentation: Keep documentation up-to-date for complex logic and features