# tron-clean > Clean TRON repo build artifacts, caches, and generated binaries before committing. - Author: Gabor Nyul - Repository: GaborNyul/lite3_python - Version: 20251226030602 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/GaborNyul/lite3_python - Web: https://mule.run/skillshub/@@GaborNyul/lite3_python~tron-clean:20251226030602 --- --- name: tron-clean description: Clean TRON repo build artifacts, caches, and generated binaries before committing. --- # TRON Repo Cleanup Use this skill to clean build artifacts and caches before committing. ## Cleanup Steps Run the following commands from the repo root: ```bash make -C tron_lib clean rm -rf .venv .pytest_cache tron.egg-info build dist __pycache__ tron/__pycache__ tests/__pycache__ examples/__pycache__ .mypy_cache .ruff_cache rm -f tron/_tron.*.so ``` ## Notes - The extension binary is generated by `uv pip install -e .`. - The `tron_lib/` clean target removes `obj/` and `build/`.