git-commit

Featured

Create git commits using Nimbalyst's interactive commit proposal widget. ONLY use when the user explicitly clicks "Commit with AI" button or asks for "smart commit". For regular commit requests, use standard git commands instead.

Code & Development 1,691 stars 249 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Git Commit Workflow in Nimbalyst This skill is for the "Commit with AI" feature which provides an interactive commit proposal widget. **IMPORTANT: Only use this when:** - The user clicks the "Commit with AI" button (you'll see a message asking you to use developer_git_commit_proposal) - The user explicitly asks for "smart commit" or "commit with AI" **Do NOT use this for:** - Generic commit requests like "commit this", "commit the changes", "make a commit" - For those, use standard git commands: `git add` and `git commit` ## Required Steps 1. **Check if file context is already provided in the prompt** When the user clicks "Commit with AI", the prompt includes a pre-fetched list of session-edited files with uncommitted changes. If you see a file list in the prompt (lines like `- path/to/file.ts (modified)`), skip step 2 and go directly to step 3 using those files. 2. **Get session-edited files (fallback only)** Only if no file list was provided in the prompt: Call `mcp__nimbalyst__get_session_edited_files` to get ALL files you edited during this AI session, then cross-reference with git status. 3. **Propose the commit** Call `mcp__nimbalyst__developer_git_commit_proposal` with: - `filesToStage`: ALL session-edited files that have changes (do not cherry-pick a subset) - `commitMessage`: A well-crafted commit message following the guidelines below - `reasoning`: Explanation of why these files were selected ## Commit Message Guidelines - Start with...

Details

Author
nimbalyst
Repository
nimbalyst/nimbalyst
Created
10 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category