with one click
git-workflow
// Git workflow and commit conventions. Use when committing code, creating branches, or making pull requests.
// Git workflow and commit conventions. Use when committing code, creating branches, or making pull requests.
Simplify and clean up code after changes are complete. Reduces complexity, improves readability, and ensures consistency.
Commit changes, push to remote, and create a pull request. Use for completing features or fixes ready for review.
Find and fix technical debt including duplicated code, dead code, outdated patterns, and code smells. Run at the end of sessions to clean up.
Python code style and formatting standards using Ruff. Use when writing or reviewing Python code.
LLM and ML development best practices with LangChain and transformers. Use when building AI/ML applications.
Testing conventions using pytest. Use when writing tests, creating fixtures, or running test suites.
| name | git-workflow |
| description | Git workflow and commit conventions. Use when committing code, creating branches, or making pull requests. |
feature/add-auth, fix/login-bugUse the following prefixes:
| Prefix | Description |
|---|---|
feat: | New feature |
fix: | Bug fix |
docs: | Documentation only |
style: | Formatting, no code change |
refactor: | Code change without feature/fix |
test: | Adding or updating tests |
chore: | Maintenance, dependencies |
Examples:
feat: add user authentication endpoint
fix: resolve login timeout issue
docs: update API documentation
refactor: extract validation logic to utility
test: add unit tests for auth service
chore: update dependencies
pytestruff format .ruff check .git diff.env files with secretscredentials.json