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.
npx agentmods add skills/ufomiao/zcf/git-commitnpx skills add UfoMiao/zcf --skill git-commitgit clone --depth 1 https://github.com/UfoMiao/zcfWhat 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 | $0.00041 | $0.02180 |
| Opus 5 | $0.00020 | $0.01090 |
| Sonnet 5 | $0.00008 | $0.00436 |
| Haiku 4.5 | $0.00004 | $0.00218 |
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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Claude Command: Commit (Git-only)
This command works without any package manager/build tools, using only Git to:
- Read changes (staged/unstaged)
- Determine if changes should be split into multiple commits
- Generate Conventional Commits style messages with optional emoji for each commit
- Execute
git addandgit commitas needed (runs local Git hooks by default; use--no-verifyto skip)
Usage
/git-commit
/git-commit --no-verify
/git-commit --emoji
/git-commit --all --signoff
/git-commit --amend
/git-commit --scope ui --type feat --emoji
Options
--no-verify: Skip local Git hooks (pre-commit/commit-msgetc.).--all: When staging area is empty, automaticallygit add -Ato include all changes in the commit.--amend: Amend the last commit without creating a new one (preserves author and timestamp unless local Git config specifies otherwise).--signoff: AddSigned-off-byline (use when following DCO process).--emoji: Include emoji prefix in commit message (omit for plain text).--scope <scope>: Specify commit scope (e.g.,ui,docs,api), written to message header.--type <type>: Force commit type (e.g.,feat,fix,docs), overrides automatic detection.
Note: If the framework doesn't support interactive confirmation, enable
confirm: truein front-matter to avoid mistakes.
What This Command Does
-
Repository/Branch Validation
- Check if in a Git repository using
git rev-parse --is-inside-work-tree. - Read current branch/HEAD status; if in rebase/merge conflict state, prompt to resolve conflicts first.
- Check if in a Git repository using
-
Change Detection
- Get staged and unstaged changes using
git status --porcelainandgit diff. - If staged files = 0:
- If
--allis passed → Executegit add -A. - Otherwise prompt choice: continue analyzing unstaged changes for suggestions, or cancel to manually group staging.
- If
- Get staged and unstaged changes using
-
Split Suggestions (Split Heuristics)
- Cluster by concerns, file modes, change types (e.g., source code vs docs/tests; different directories/packages; additions vs deletions).
- If multiple independent changesets or large diff detected (e.g., > 300 lines / across multiple top-level directories), suggest splitting commits with pathspecs for each group (for subsequent
git add <paths>).
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.
- 2d ago First seen · 200 lines · 41 tokens per session scan A 08a309da411e
git-commit is a skill published in the GitHub repository UfoMiao/zcf (6,079 stars, last pushed 9d ago), licensed MIT. It adds 41 tokens to every session and 2,180 once invoked, about $0.0002 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-08-30.
Other skills, from other repositories
r3f-animation
React Three Fiber animation - useFrame, useAnimations, spring physics, keyframes. Use when animating objects, playing GLTF animations, creating procedural motion, or implementing physics-based movement.
golden-rss
Use when testing the rss golden build.
r3f-best-practices
React Three Fiber (R3F) and Poimandres ecosystem best practices. Use when writing, reviewing, or optimizing R3F code. Triggers on tasks involving @react-three/fiber, @react-three/drei, zustand, @react-three/postprocessing, @react-three/rapier, or leva.
agile-product-owner
../../../product-team/agile-product-owner/skills/agile-product-owner/SKILL.md.
golden-chat-topics
Use when testing the goldenchattopics golden build.
agent-memory
../../../engineering/agent-memory/skills/agent-memory/SKILL.md.