git-commit

git-commit is a skill for Claude Code from yuanqiyibiansheng/DeepSeek-Harness-GUI. It costs 46 tokens per session (707 once invoked), scanned A, a copy of git-commit, MIT.

A helper for creating Git commits with Conventional Commits, a shared format such as “fix: correct login error” that makes project history easier to understand and automate.

In plain words
What is it for?
Use it when you need to create a commit, stage related changes, or use the `/commit` command. It analyzes the current diff and forms a standardized message.
Why use it?
It reduces the work of inspecting changes, choosing a suitable commit type, and staging the right files. It also helps avoid vague or inconsistent commit messages.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it when you need to create a commit, stage related changes, or use the /commit command. It analyzes the current diff and forms a standardized message.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yuanqiyibiansheng/deepseek-harness-gui/git-commit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add yuanqiyibiansheng/DeepSeek-Harness-GUI --skill git-commit
Clone the repo
git clone --depth 1 https://github.com/yuanqiyibiansheng/DeepSeek-Harness-GUI

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for git-commit

README.md
[![agentmods](https://agentmods.dev/badge/skills/yuanqiyibiansheng/deepseek-harness-gui/git-commit.svg)](https://agentmods.dev/skills/yuanqiyibiansheng/deepseek-harness-gui/git-commit)
Your own site
<a href="https://agentmods.dev/skills/yuanqiyibiansheng/deepseek-harness-gui/git-commit"><img src="https://agentmods.dev/badge/skills/yuanqiyibiansheng/deepseek-harness-gui/git-commit.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 707 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 83% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.00707
Opus 5 $0.00023 $0.00353
Sonnet 5 $0.00009 $0.00141
Haiku 4.5 $0.00005 $0.00071

Measured 7d ago against content hash 82f87820e7bf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

git-commit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

83% identical to git-commit — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

apps/desktop-installer/skills-seed/git-commit/SKILL.md · 126 lines

How it starts

The opening of the file, as written. The whole thing — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git Commit with Conventional Commits

Overview

Create standardized, semantic git commits using the Conventional Commits specification. Analyze the actual diff to determine appropriate type, scope, and message.

Conventional Commit Format

<type>[optional scope]: <description>

[optional body]

[optional footer(s)]

Commit Types

Type Purpose
feat New feature
fix Bug fix
docs Documentation only
style Formatting/style (no logic)
refactor Code refactor (no feature/fix)
perf Performance improvement
test Add/update tests
build Build system/dependencies
ci CI/config changes
chore Maintenance/misc
revert Revert commit

Breaking Changes

# Exclamation mark after type/scope
feat!: remove deprecated endpoint

# BREAKING CHANGE footer
feat: allow config to extend other configs

BREAKING CHANGE: `extends` key behavior changed

Workflow

1. Analyze Diff

# If files are staged, use staged diff
git diff --staged

# If nothing staged, use working tree diff
git diff

# Also check status
git status --porcelain

2. Stage Files (if needed)

If nothing is staged or you want to group changes differently:

# Stage specific files
git add path/to/file1 path/to/file2

# Stage by pattern
git add *.test.*
git add src/components/*

# Interactive staging
git add -p

Never commit secrets (.env, credentials.json, private keys).

3. Generate Commit Message

Analyze the diff to determine:

  • Type: What kind of change is this?
  • Scope: What area/module is affected?
  • Description: One-line summary of what changed (present tense, imperative mood, <72 chars)

4. Execute Commit

# Single line
git commit -m "<type>[scope]: <description>"

# Multi-line with body/footer
git commit -m "$(cat <<'EOF'
<type>[scope]: <description>

<optional body>

<optional footer>
EOF
)"

Read the full file on GitHub · 126 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 126 lines · 46 tokens per session scan A 82f87820e7bf

Subscribe to this mod's changes

git-commit is a skill published in the GitHub repository yuanqiyibiansheng/DeepSeek-Harness-GUI (20 stars, last pushed 5d ago), licensed MIT. It adds 46 tokens to every session and 707 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 83% identical to git-commit, differing in 3 lines, and is treated as a copy.