@@ -101,6 +101,11 @@ python pycompiler_ark.py main
101101# Launch BCASL standalone (plugin manager)
102102python pycompiler_ark.py bcasl
103103python pycompiler_ark.py bcasl /path/to/workspace
104+
105+ # Launch Engines standalone (compilation engine manager)
106+ python pycompiler_ark.py engines
107+ python pycompiler_ark.py engines /path/to/workspace
108+ python pycompiler_ark.py engines --dry-run # List available engines
104109```
105110
106111#### BCASL Standalone Module
@@ -161,6 +166,24 @@ See [SUPPORTED_MATRIX.md](SUPPORTED_MATRIX.md) for detailed compatibility inform
161166- [ BCASL Standalone README] ( bcasl/only_mod/README.md ) - Complete BCASL standalone documentation
162167- [ BCASL CLI Guide] ( bcasl/only_mod/CLI_GUIDE.md ) - Command-line interface usage
163168
169+ ### Engines Standalone Module
170+ - Launch standalone compilation engine manager with GUI or CLI
171+ - Manage PyInstaller, Nuitka, and cx_Freeze engines
172+ - Check engine compatibility and run compilations
173+
174+ #### Engines Standalone Module
175+
176+ ``` bash
177+ # Launch Engines GUI directly
178+ python -m Core.engines_loader.engines_only_mod
179+
180+ # List available engines (CLI mode)
181+ python -m Core.engines_loader.engines_only_mod --list-engines
182+
183+ # Check engine compatibility
184+ python -m Core.engines_loader.engines_only_mod --check-compat nuitka
185+ ```
186+
164187
165188### Developer Documentation
166189- [ Contributing] ( CONTRIBUTING.md ) - How to contribute to the project
0 commit comments