Git
Last updated
Commands for streamlined Git operations including commits and pull request creation with conventional commit messages.
Maintain consistent commit history - Every commit follows conventional commit format
Reduce PR creation friction - Automated formatting, templates, and linking
Improve issue-to-code workflow - Clear technical specs from issue descriptions
Ensure team consistency - Standardized Git operations across the team
The Git plugin provides commands that automate and standardize Git workflows, ensuring consistent commit messages, proper PR formatting, and efficient issue management. It integrates GitHub best practices and conventional commits with emoji.
Most commands require GitHub CLI (gh) for full functionality including creating PRs, loading issues, and setting labels/reviewers.
# Install the plugin
/plugin install git@NeoLabHQ/context-engineering-kit
# Create a well-formatted commit
> /commit
# Create a pull request
> /create-pr/commit - Create well-formatted commits with conventional commit messages and emoji.
/create-pr - Create pull requests using GitHub CLI with proper templates and formatting.
/analyze-issue - Analyze a GitHub issue and create a detailed technical specification.
/load-issues - Load all open issues from GitHub and save them as markdown files.
/attach-review-to-pr - Add line-specific review comments to pull requests using GitHub CLI API.
/load-pr-comments - Load open/unresolved PR review comments and group them as tasks in .specs/comments/*.md for parallel agents to fix.
resolve-fixed-pr-comments - Verify what PR review comments have been addressed (committed/pushed OR uncommitted local changes) and resolve the threads that are genuinely fixed or no longer relevant.
/worktrees - Create, compare, and merge git worktrees for parallel development with automatic dependency installation
notes - Skill about using git notes to add metadata to commits without changing history.
Last updated
# Load all open issues
> /load-issues
# Analyze a GitHub issue
> /analyze-issue 123