A Windows desktop app (Python + CustomTkinter) that runs ordered mouse and keyboard automation: single/double click, hold, type text, key presses, repeats, and multi-cycle runs. Use it to repeat UI-driven tasks and cut manual clicking—only where you are allowed to automate input.
From the repository root, with Python 3.10+:
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt(On Git Bash, use source .venv/Scripts/activate instead of the second line.)
From the repository root (so the configs/ folder resolves correctly):
python src/main.pyOr double-click scripts\run.bat. If the target app only accepts input from an elevated process, use scripts\run_as_admin.bat.
See docs/ for global hotkeys, an informal roadmap, and repo / JSON notes (hotkeys.md, roadmap.md, structure-and-code-conventions.md). A sample config is configs/example_config.json.
Use only where permitted. Automating games or online services may break their terms. Provided as-is, without warranty.
MIT — see LICENSE.