commit
SkillDev toolsCreate a conventional commit for the current staged/unstaged changes
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the commit skill
What this skill tells your AI
The instructions your AI receives, as published by finos/git-proxy in .agents/skills/commit/SKILL.md and read by ahel’s review.
Create a git commit for the current staged/unstaged changes using Conventional Commits.
Read AGENTS.md first. It is the canonical project guide for this repository.
Rules:
- Run
git statusandgit diffto understand what changed - Stage relevant files (prefer specific files over
git add -A) - Write a commit message following Conventional Commits format
- Use
--signoffto sign off using the committer's git config (do NOT hardcode any name/email) - Do NOT add Co-Authored-By or any other trailers beyond Signed-off-by
- If there are no changes, say so and stop
Commit format:
<type>[optional scope]: <description>
Types: feat, fix, docs, style, refactor, perf, test, build, ci, chore
Scope (optional): a noun describing the affected area in parentheses. Common scopes: config, api, proxy, db, e2e, docker, ci.
Subject line rules:
- Imperative mood ("add", not "added" or "adds")
- Do NOT capitalize the first letter after the type prefix
- Do NOT end with a period
- Keep under 72 characters total
For breaking changes, add ! after the type/scope:
feat(config)!: rename queue config key
Examples of good messages:
- "feat(api): add support for rejection reason"
- "fix(config): handle invalid regex on commitConfig"
- "refactor(ts): remove any/as usages in push-actions"
- "test(proxy): add tests for Git hosts other than GitHub"
- "docs: update architecture diagram in Architecture.md"
- "build: bump express to 5.2.1"
- "chore: remove unused import in services/push.ts"
Commit command:
git commit --signoff -m "<type>[scope]: <description>"
Do NOT:
- Use long multi-line messages for simple changes
- Add Co-Authored-By trailers
- Use past tense ("added", "fixed")
- Hardcode any author name or email
- Omit the type prefix
Signals
- GitHub stars
- 249
- Forks
- 176
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
commit-finos- Source
- github.com/finos/git-proxy