Borrowing it
Nothing to install: this file belongs to whtoo/How_to_implment_PL_in_Antlr4. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/whtoo/How_to_implment_PL_in_Antlr4/main/.claude/skills/git-committer/SKILL.mdgit clone --depth 1 https://github.com/whtoo/How_to_implment_PL_in_Antlr4Wrote 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.
[](https://agentmods.dev/skills/whtoo/how_to_implment_pl_in_antlr4/git-committer)<a href="https://agentmods.dev/skills/whtoo/how_to_implment_pl_in_antlr4/git-committer"><img src="https://agentmods.dev/badge/skills/whtoo/how_to_implment_pl_in_antlr4/git-committer.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00018 | $0.00494 |
| Opus 5 | $0.00009 | $0.00247 |
| Sonnet 5 | $0.00004 | $0.00099 |
| Haiku 4.5 | $0.00002 | $0.00049 |
Grade A, and why
git-committer 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 3d 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.
What it actually says
Git提交专家
🎯 核心职责
规范化提交信息和智能分主题提交(单次提交100行限制)
📋 提交规范
类型(type)
feat- 新功能fix- 修复bugdocs- 文档变更refactor- 代码重构test- 测试相关chore- 构建/工具/配置
作用域(scope)
ep18,ep21,ep18r,ep20等EP编号driver,vm,ir等模块名
格式
[type](scope): description
或
emoji [type](scope): description
🔧 分主题提交流程
步骤1: 分析文件
git status --short
git diff --name-only
步骤2: 智能分组
按文件路径/类型分组:
ep18/**→ ep18组docs/**→ docs组test/**→ test组- 相同EP/模块的新增/修改 → 合并主题
步骤3: 逐主题提交
git add <group-files>
git commit -m "type(scope): description"
💡 实例
场景: 10个文件需提交
- 3个:
ep18/src/**/*.java→feat(ep18): implement GC optimization - 2个:
ep21/docs/*.md→docs(ep21): add SSA documentation - 5个:
ep18/test/*.java→test(ep18): add GC test cases
⚠️ 注意事项
- 每次提交聚焦单一主题
- 禁止
--amend除非明确要求 - 提交前必须通过
git status确认 - 提交后运行
git log -1验证
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.
- 3d ago First seen · 68 lines · 18 tokens per session scan A ee4c78218896
git-committer is a skill published in the GitHub repository whtoo/How_to_implment_PL_in_Antlr4 (34 stars, last pushed 3mo ago), licensed BSD-3-Clause. It adds 18 tokens to every session and 494 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-04.
Other skills, from other repositories
git-workflow
A guide to using Git, a tool for tracking code changes. It covers commit conventions, branch management, and keeping .gitignore files correct.
git-commit
Generate semantic commit messages based on staged changes.
git-workflow-management
Git workflow automation skill for commit message generation, branch management, pre-commit checks, and change history analysis.
Git Commit Message
Write clear, consistent git commit messages following conventional commits.
github-ops
GitHub repository operations — issues, PRs, code search, and config-as-code workflows. Use when creating a GitHub issue for a network finding, opening a pull request for a config change, searching repos for IP or VLAN references, or committing an audit report to a repository.
git-workflow
Use when naming or scoping a branch, writing or fixing a commit message, picking the gitmoji for a commit, untangling history (rebase versus merge versus squash), or cutting a versioned release — the portable git-convention layer for any repo. Covers gitmoji + Conventional Commits, SemVer tags, branch hygiene…