commit and push all local changes to remote repo
# Commit and Push Commit all local changes following Conventional Commits format and push to remote. ## Step 1: Gather Context Run these commands in parallel to understand the changes: ## Step 2: Analyze Changes Review the changes and determine: - **Type**: What kind of change is this? - `feat` - New feature or capability - `fix` - Bug fix - `docs` - Documentation only - `refactor` - Code restructure without behavior change - `test` - Adding or updating tests - `chore` - Maintenance, dependency updates - `perf` - Performance improvement - `ci` - CI/CD changes - **Sco...