commit-push-pr
Commit, Push, and Create PR
Automate the git workflow for completing a feature or fix.
Pre-computed Context
Before proceeding, gather this information:
- Current branch:
!git branch --show-current - Git status:
!git status --short - Recent commits on this branch:
!git log --oneline -5 - Diff summary:
!git diff --stat
Workflow
- Review Changes
- Check
git statusfor all modified/added files - Review the diff to understand what's being committed
- Ensure no sensitive files are staged (.env, credentials, etc.)
- Check
More from meleantonio/chernycode
testing
Testing conventions using pytest. Use when writing tests, creating fixtures, or running test suites.
1techdebt
Find and fix technical debt including duplicated code, dead code, outdated patterns, and code smells. Run at the end of sessions to clean up.
1git-workflow
Git workflow and commit conventions. Use when committing code, creating branches, or making pull requests.
1llm-development
LLM and ML development best practices with LangChain and transformers. Use when building AI/ML applications.
1code-simplifier
Simplify and clean up code after changes are complete. Reduces complexity, improves readability, and ensures consistency.
1code-style
Python code style and formatting standards using Ruff. Use when writing or reviewing Python code.
1