Source profileQuality 94/100Review permissions

vasilyu1983/AI-Agents-public/frameworks/shared-skills/skills/dev-git-commit-message/SKILL.md

dev-git-commit-message

Generates or validates Conventional Commits messages from staged diffs. Use when drafting commit messages, checking repo rules, or inferring scope from changed files.

Source repository stars
82
Declared platforms
0
Static risk flags
2
Last source update
2026-08-21
Source checked
2026-08-28

Decision brief

What it does: where it fits

Generate or validate Conventional Commits for the staged surface.

Best for

  • Use when drafting commit messages, checking repo rules, or inferring scope from changed files.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill "frameworks/shared-skills/skills/dev-git-commit-message"
Safe inspection promptEditorial

Inspect the Agent Skill "dev-git-commit-message" from https://github.com/vasilyu1983/AI-Agents-public/blob/53f6cb73ea53a2646e3e7d4665062ad66f3683ac/frameworks/shared-skills/skills/dev-git-commit-message/SKILL.md at commit 53f6cb73ea53a2646e3e7d4665062ad66f3683ac. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    1. Decide mode from the Mode Selection table above. 2. For generate mode, inspect staged changes in this order: - git diff --staged --name-status - git diff --staged --stat - git diff --staged --unified=1 only when type, scope, or risk is ambiguous 3. Classify type and scope usi…

    Decide mode from the Mode Selection table above.For generate mode, inspect staged changes in this order:git diff --staged --name-status
  2. 02

    Quick Reference

    Review the “Quick Reference” section in the pinned source before continuing.

    Review and apply the “Quick Reference” source section.
  3. 03

    Decision Tables

    Review the “Decision Tables” section in the pinned source before continuing.

    Review and apply the “Decision Tables” source section.
  4. 04

    Mode Selection

    Review the “Mode Selection” section in the pinned source before continuing.

    Review and apply the “Mode Selection” source section.
  5. 05

    Type Selection

    Review the “Type Selection” section in the pinned source before continuing.

    Review and apply the “Type Selection” source section.

Permission review

Static risk signals and limitations

Network access

medium · line 92

The documentation includes network, browsing, or remote request actions.

BAD: feat(api): add comprehensive user search endpoint with full-text search across all profile fields including bio and location

Network access

medium · line 93

The documentation includes network, browsing, or remote request actions.

GOOD: feat(api): add full-text user search endpoint

Runs scripts

medium · line 202

The documentation asks the agent to run terminal commands or scripts.

python scripts/commit_validator.py validate --message "feat(auth): add refresh token rotation"

Runs scripts

medium · line 205

The documentation asks the agent to run terminal commands or scripts.

python scripts/commit_validator.py lint --input data/sample-commit-history.json

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score94/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars82SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
vasilyu1983/AI-Agents-public
Skill path
frameworks/shared-skills/skills/dev-git-commit-message/SKILL.md
Commit
53f6cb73ea53a2646e3e7d4665062ad66f3683ac
License
MIT
Collected
2026-08-28
Default branch
main
View the original SKILL.md

Git Commit Message Generator

Generate or validate Conventional Commits for the staged surface.

Default posture: subject line first; body only when risk, rationale, or breaking-change detail is needed; standard types only unless the repo already defines custom ones; never claim behavior not visible in the diff.

Quick Reference

NeedDefaultReference
Pick a typefeat/fix/perf/refactor/docs/test/build/ci/chore/style/revertType Selection table below
Format a subjecttype(scope): imperative summary, ≤72 chars (50 ideal), no trailing periodPre-Commit Message Checklist below
Mark a breaking change! after type/scope, or a BREAKING CHANGE: footerBreaking Change Format table below
Decide on a bodyOnly for risk, non-obvious rationale, or breaking-change detailBody Required? table below
Handle AI-authored commitsNo tool attribution ever; Assisted-by: trailer only if the repo opts inAI-Authored Commits below
Pick a release/changelog toolrelease-please for reviewed PR releases; semantic-release for full automation; changesets for monoreposreferences/changelog-generation-guide.md
Scope a monorepo commitpackage/app/service directory name, one level deep, stable over timereferences/monorepo-commit-conventions.md
Validate a message locallypython scripts/commit_validator.py validate --message "..."Scripts section below

Decision Tables

Mode Selection

TriggerModeAction
User provides staged diff or asks to commitGenerateInspect staged surface, produce primary + alternatives
User provides an existing message stringValidateCheck rules, return PASS/WARN/FAIL + exact rewrite
Staged diff mixes unrelated areasSplitRecommend split commits before generating
No staged changesStopReport "no staged changes"

Type Selection

ChangeTypeNotes
New user- or API-visible capabilityfeatTriggers MINOR bump
Incorrect behavior correctedfixTriggers PATCH bump
Measurable speed or memory improvementperfTriggers PATCH bump
Structure improved, behavior unchangedrefactorNo release by default
Documentation onlydocsNo release by default
Tests onlytestNo release by default
Build tooling or packagingbuildNo release by default
CI/CD workflowciNo release by default
Repo hygiene, no product changechoreNo release by default
Whitespace or formatting onlystyleNo release by default
Reverting a prior commitrevertTriggers PATCH bump
Security fixfix(security):Prefer standard type + scope over custom security: type
Prompt/skill/YAML behavioral changefeat or fixDo not classify by file extension alone

Scope Selection

SituationAction
Repo has a scope map in config.yamlUse mapped scope
One directory or package clearly dominatesUse that name, lowercase kebab-case
Change spans 2+ stable areas equallyUse broader parent scope or omit
Repository-wide changeOmit scope
Monorepo with independently versioned packagesSee references/monorepo-commit-conventions.md

Body Required?

ConditionInclude body?
Subject is self-explanatoryNo
Reason is non-obvious from subjectYes — one sentence why
Security-sensitive or risky changeYes — risk/rollback note
Breaking changeYes — BREAKING CHANGE: footer required
Caller requests detailed templateYes — use assets/template-commit-message.md

Breaking Change Format

SignalFormat
Inline markerfeat(api)!: change auth to OAuth2
FooterBREAKING CHANGE: <migration summary>
BothAcceptable; footer body gets the detail

Before/After Examples

BAD:  update
GOOD: docs(readme): add deployment instructions

BAD:  fix stuff
GOOD: fix(cart): prevent negative quantity on rapid add

BAD:  feat: added user dashboard (past tense, missing scope)
GOOD: feat(dashboard): add analytics overview panel

BAD:  feat: add search (generated by Copilot)
GOOD: feat(search): add full-text product search

BAD:  feat(api): add comprehensive user search endpoint with full-text search across all profile fields including bio and location
GOOD: feat(api): add full-text user search endpoint

BAD:  feat: add dashboard, fix auth bug, update deps  (mixed concerns)
GOOD: (3 separate commits)
      feat(dashboard): add analytics overview panel
      fix(auth): correct token refresh race condition
      chore(deps): update react to 18.3.0

Pre-Commit Message Checklist

  • Starts with a valid type prefix (feat, fix, docs, test, refactor, perf, build, ci, chore, style, revert)
  • Subject is 72 characters or fewer (50 preferred)
  • Imperative mood: "add" not "added", "fix" not "fixing"
  • No trailing period on subject line
  • Scope, if used, matches repo conventions (lowercase kebab-case)
  • Single logical change; unrelated concerns split into separate commits
  • No tool/assistant attribution in subject or body
  • No generic placeholders: "update", "fix stuff", "WIP", "misc"
  • Breaking changes marked with ! or BREAKING CHANGE: footer
  • Body present only when needed; answers "why", not "what"

Workflow

  1. Decide mode from the Mode Selection table above.
  2. For generate mode, inspect staged changes in this order:
    • git diff --staged --name-status
    • git diff --staged --stat
    • git diff --staged --unified=1 only when type, scope, or risk is ambiguous
  3. Classify type and scope using the tables above.
  4. Detect scope from config.yaml first, then from the nearest stable directory.
  5. Generate: one primary suggestion, up to two alternatives when scope or emphasis is ambiguous, short rationale.
  6. Validate: run all checklist items, return PASS/WARN/FAIL with exact rewrite on failure.
  7. If the diff mixes unrelated work, recommend split commits before offering a combined message.

Output Contract

Generate

[NOTE] Suggested commit messages (3 files changed)

PRIMARY:
fix(auth): reject expired refresh tokens

ALTERNATIVES:
1. fix(api): reject expired refresh tokens
2. fix: reject expired refresh tokens during rotation

RATIONALE:
- Type: fix
- Scope: auth
- Signals: token validation path, regression test update, no new feature surface

Validate

VALIDATION: WARN

Message:
feat: update stuff

Issues:
- `update stuff` is too vague
- summary should name the changed behavior or surface

Suggested fix:
feat(auth): add refresh token rotation

AI-Authored Commits

The commit message describes the change, not the tool that produced it. Apply the same rules regardless of whether a human or an AI agent drafted the code.

Banned in subject and body: generated by, co-authored-by: <ai-tool>, via copilot, via claude, chatgpt, ai assistant, bot.

If your team requires an audit trail for AI-assisted code, add an Assisted-by: trailer as an opt-in team policy (not a default). Keep it out of the subject line. Example:

feat(search): add full-text product search

Assisted-by: claude-sonnet-4-6

This is an organizational opt-in pattern, not a general requirement. The default rule remains: no attribution.

Assisted-by: is a distinct trailer from Co-Authored-By: — several large open-source projects (Linux Kernel, Apache Software Foundation, LLVM, QEMU) have converged on Assisted-by: through 2026 specifically because Co-Authored-By: implies authorship/copyright standing that an AI tool cannot hold or sign a CLA for. If a repo already uses Co-Authored-By: <ai-tool> by convention, do not silently rewrite it to Assisted-by: — flag the distinction and let the maintainer choose; changing trailer conventions after history exists breaks blame/provenance tooling that greps for the old trailer.

Repo Policy Checks

Block or rewrite messages that:

  • omit the type prefix
  • use vague summaries: update, fix stuff, change code, WIP, misc
  • include assistant/tool attribution (see above)
  • overstate impact not visible in the diff
  • use past tense or gerund after the type prefix
  • exceed 72 characters on the subject line
  • end the subject line with a period

Scripts

ScriptPurpose
scripts/commit_validator.pyValidate a single message, lint a history file, or generate a Markdown quality report
# Validate one message
python scripts/commit_validator.py validate --message "feat(auth): add refresh token rotation"

# Lint a batch history file
python scripts/commit_validator.py lint --input data/sample-commit-history.json

# Generate a full Markdown report
python scripts/commit_validator.py report --input data/sample-commit-history.json --output report.md

See scripts/README.md for the full quick-start, input format, and rule reference.

Worktree PR Loop

Use this skill as the commit step inside the broader worktree-first delivery loop defined by ../dev-git-workflow/SKILL.md.

In that loop: create or enter feature worktree → make code changes → stage intentionally → use this skill → run repo gate → open PR.

If the staged diff mixes several unrelated surfaces, stop and recommend split commits before the PR step.

Known Traps

  • Inferring scope from filenames alone, producing scopes that do not match the repo's bounded-context map.
  • Compressing unrelated changes into one "clean" conventional commit, destroying revert and release-note usefulness.
  • Treating AI-generated summaries as authoritative when the diff still contains hidden migrations or breaking changes.
  • Optimizing for lint-pass format while losing the operational intent maintainers need for incident archaeology.
  • Using ! or BREAKING CHANGE casually and creating noisy downstream automation.

Navigation

Fact-Checking

  • Conventional Commits spec is v1.0.0 (stable as of July 2026; no v2 released).
  • commitlint is at v21.x (21.2.1 as of July 2026); requires Node 22+; config uses ESM (export default { extends: [...] }).
  • standard-version is deprecated, not archived — the repo carries a deprecation notice pointing to release-please (GitHub-native) or the community fork commit-and-tag-version. Do not recommend it for new projects either way.
  • release-please-action is at v5 (Node 24 runtime, April 2026 breaking change); the underlying release-please package is at v17.x. Re-check the major tag before pinning a workflow — this skill will drift again.
  • semantic-release is at v25.x as of mid-2026 and actively maintained (recent work adds npm trusted publishing).
  • For current tooling, hook behavior, or release-automation recommendations, verify against primary sources in data/sources.json and use web search when available — pinned major-version numbers in this skill are a snapshot, not a guarantee.
  • If browsing is unavailable, mark volatile tool guidance as unverified.

Learnings Loop

Before applying this skill on a non-trivial task, read learnings.consolidated.md in this directory (and learnings.md if present).

After applying it, if you encountered a pattern worth remembering, append one dated bullet to learnings.md via agents-skills-feedback-loop/scripts/append_learning.py. Do not modify SKILL.md itself.

Frequently asked questions

What to verify before installation and use

What does the dev-git-commit-message source document cover?

Generate or validate Conventional Commits for the staged surface.

How do I install dev-git-commit-message?

The source record exposes this install command: npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill "frameworks/shared-skills/skills/dev-git-commit-message". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged network, exec-script in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 10025,136

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 10015,385

wanshuiyin/Auto-claude-code-research-in-sleep

citation-audit

Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

Computed 10014,706

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

Computed 9967

brucesongs/kali-claw

insecure-design

Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.