KS
Killer-Skills

git-commit — how to use git-commit how to use git-commit, git-commit best practices, git-commit alternative, git-commit vs git add, git-commit install, git-commit setup guide, what is git-commit, git-commit for AI agents, git-commit and Git workflow

v1.0.0
GitHub

About this Skill

Ideal for Version Control Agents needing precise Git workflow management and commit message drafting capabilities. git-commit is a novel computing interface that assists with creating commit messages and managing Git workflows.

Features

Verifies change sets using git status, git diff, and git diff --staged
Stages code safely with git add -p for mixed diffs
Detects secrets and credentials in commit messages using rg -n -i
Prevents accidental commits of sensitive information
Supports Git workflow best practices

# Core Topics

semanticdreams semanticdreams
[0]
[0]
Updated: 3/6/2026

Quality Score

Top 5%
39
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add semanticdreams/space/git-commit

Agent Capability Analysis

The git-commit MCP Server by semanticdreams is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for how to use git-commit, git-commit best practices, git-commit alternative.

Ideal Agent Persona

Ideal for Version Control Agents needing precise Git workflow management and commit message drafting capabilities.

Core Value

Empowers agents to verify change sets using git status, git diff, and git diff --staged, ensuring safe staging of code with git add -p, while preventing accidental commits of secrets or credentials via regex pattern matching with rg -n -i.

Capabilities Granted for git-commit MCP Server

Verifying change sets before commit
Safely staging mixed diffs with git add -p
Preventing accidental commits of sensitive information

! Prerequisites & Limits

  • Requires Git repository access
  • Command-line interface needed for git commands
Project
SKILL.md
2.3 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Git Commit Messages (space)

Use this skill whenever you're about to create a commit (or when asked to "commit", "write a commit message", "draft a commit", etc.).

Workflow and safety

  • Verify the change set:
    • git status
    • git diff
    • git diff --staged
  • Stage only what you intend to ship; prefer git add -p for mixed diffs.
  • Never commit secrets/credentials. When in doubt:
    • git diff --staged | rg -n -i "api[_-]?key|secret|token|password|-----begin|private key"
  • Avoid destructive history ops unless explicitly asked (reset --hard, clean -fdx, rebase, --amend, force-push).

Commit subject line

  • Format: type(scope): <imperative subject> (scope optional).
  • Keep it <= 72 chars and in imperative mood ("Add", "Fix", "Refactor").
  • Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert.
  • Scopes (when useful): engine, render, physics, audio, lua, ui, assets, scripts.
  • Breaking changes: append an exclamation mark after type/scope (e.g. feat!:) and call it out in Impact + Risk.

Body (required for non-trivial changes)

Be explicit about impact (user-visible) vs what changed (code/data). Include risk when plausible.

Template:

type(scope): Short imperative subject (<= 72 chars)

Impact:
- <user-visible result / behavior change; include repro if useful>

What:
- <key code/data changes>

Why:
- <motivation / constraints>

How:
- <implementation approach, key files/systems>

Risk:
- <what could go wrong + mitigations/rollback>

Testing:
- <commands run + brief summary; DO NOT paste full logs>

Follow-ups:
- <next steps / cleanup / tech debt>

References:
- Refs: #123

Testing section expectations

  • Prefer running the full suite before committing:
    • SKIP_KEYRING_TESTS=1 XDG_DATA_HOME=/tmp/space/tests/xdg-data SPACE_DISABLE_AUDIO=1 SPACE_ASSETS_PATH=$(pwd)/assets make test
  • For targeted runs, include the command and a short result summary (e.g., “passed” / “failed: <test name>”).
  • Do not paste full test output into the commit message; keep it to a couple lines.

Practical: avoid shell-quoting footguns

  • Prefer writing the message to a file and committing with -F, especially if the body contains backticks:
    • cat > /tmp/commitmsg.txt <<'EOF' ... EOF
    • git commit -F /tmp/commitmsg.txt

Related Skills

Looking for an alternative to git-commit or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication