@@ -24,12 +24,12 @@ Instead of relying on pre-commit hooks, use our provided scripts for code qualit
2424
2525``` cmd
2626# Run all code quality checks before committing
27- scripts\code_quality.bat check
27+ python -m codeflow_engine.actions.quality_engine --mode comprehensive
2828
29- # Or run individual tools
30- scripts\code_quality.bat format
31- scripts\code_quality.bat lint
32- scripts\code_quality.bat test
29+ # Or run with different modes
30+ python -m codeflow_engine.actions.quality_engine --mode fast
31+ python -m codeflow_engine.actions.quality_engine --mode smart
32+ python -m codeflow_engine.actions.quality_engine --mode ai_enhanced
3333```
3434
3535#### Option 2: Install Standard Python 3.13.5 (Highly Recommended)
@@ -55,7 +55,7 @@ If you want to keep Windows Store Python, you can create manual git hooks:
5555``` bash
5656#! /bin/sh
5757echo " Running code quality checks..."
58- python tools/scripts/code_quality.py check
58+ python -m codeflow_engine.actions.quality_engine --mode fast
5959if [ $? -ne 0 ]; then
6060 echo " Code quality checks failed. Please fix issues before committing."
6161 exit 1
@@ -79,8 +79,8 @@ python -m isort . --profile black
7979python -m flake8 . --max-line-length 100
8080python -m mypy . --config-file pyproject.toml
8181
82- # Or use our convenience script
83- scripts\code_quality.bat check
82+ # Or use our convenience module
83+ python -m codeflow_engine.actions.quality_engine --mode comprehensive
8484```
8585
8686### Commit Message Format
0 commit comments