npx claudepluginhub noeljackson/nstack --plugin gitCommit ALL staged and unstaged changes and push to remote. No co-authoring. ## Steps 1. Run `git status` to see all changes (staged, unstaged, and untracked) 2. Run `git diff` to see the actual code changes 3. Run `git log --oneline -5` to see recent commit message style 4. Check current branch with `git branch --show-current` 5. Check if branch has upstream with `git status -sb` 6. Analyze the 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 ...
Share bugs, ideas, or general feedback.
Commit ALL staged and unstaged changes and push to remote. No co-authoring.
git status to see all changes (staged, unstaged, and untracked)git diff to see the actual code changesgit log --oneline -5 to see recent commit message stylegit branch --show-currentgit status -sbgit addgit push -u origin <branch>git pushgit status to verify successUse 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.