echo "๐งน Starting code cleanup and publishing process..." echo "โซ Running Black formatter..." black . && echo "โ Code formatting complete!" || echo "โ Black formatting failed!" echo "๐ Running Ruff linter..." ruff check . --fix && echo "โ Linting complete!" || echo "โ Linting failed!" echo "Creating llm.txt file..." python3 llm_txt.py && echo "โ llm.txt file created!" || echo "โ llm.txt file creation failed!" echo "๐๏ธ Building package..." poetry build && echo "โ Build successful!" || echo "โ Build failed!" echo "๐ฆ Publishing to PyPI..." poetry publish && echo "โ Package published!" || echo "โ Publishing failed!" echo "๐ Enter your commit message:" read commit_message git add . && echo "โ Changes staged!" git commit -m "$commit_message" && echo "โ Changes committed!" echo "๐ Pushing to remote repository..." git push && echo "โ Changes pushed to remote!" echo "โจ All done! Package cleaned, built, and published successfully! โจ"