From git
Commit only files that were modified during this conversation. No co-authoring.
npx claudepluginhub noeljackson/nstack --plugin gitCommit only files that were modified during this conversation. No co-authoring. ## Steps 1. Review the conversation to identify which files you created or modified 2. Run `git status` to see all changes 3. Run `git diff <file>` for each file you modified to verify your changes 4. Run `git log --oneline -5` to see recent commit message style 5. Analyze YOUR changes and draft a concise commit message: - Summarize the nature of the changes (feature, fix, refactor, docs, etc.) - Focus on the "why" rather than the "what" - Match the repository's commit message style 6. Stage ONLY the ...
Share bugs, ideas, or general feedback.
Commit only files that were modified during this conversation. No co-authoring.
git status to see all changesgit diff <file> for each file you modified to verify your changesgit log --oneline -5 to see recent commit message stylegit add <file1> <file2> ...git status to verify the commit succeededUse conventional commit style when appropriate:
feat: for new featuresfix: for bug fixesrefactor: for code refactoringdocs: for documentation changestest: for test changeschore: for maintenance tasksKeep the first line under 72 characters. Add a blank line and description if needed.