Skip to content

Commit 1a41832

Browse files
committed
docs: update Windows development docs with quality engine module invocation
1 parent 9c04673 commit 1a41832

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/development/WINDOWS_DEVELOPMENT.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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
5757
echo "Running code quality checks..."
58-
python tools/scripts/code_quality.py check
58+
python -m codeflow_engine.actions.quality_engine --mode fast
5959
if [ $? -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
7979
python -m flake8 . --max-line-length 100
8080
python -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

Comments
 (0)