AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Git Commit Helper

skill-cor-incorporated-claude-code-skills-git-commit-helper · by Cor-Incorporated

Analyze git diff and generate descriptive conventional commit messages. Use when staging changes, writing commit messages, or reviewing staged changes before committing. Triggers: 'commit this', 'write commit message', 'what should the commit say', 'review staged changes', 'help me commit'. Do NOT use for git branching strategy, merge conflict resolution, or PR creation.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-cor-incorporated-claude-code-skills-git-commit-helper

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cor-incorporated-claude-code-skills-git-commit-helper)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Git Commit Helper? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Git Commit Helper

Analyze staged changes and generate conventional commit messages.

Workflow

  1. Review staged changes:

``bash git diff --staged --stat git diff --staged ``

  1. Identify commit type from changes:
  • feat: New feature
  • fix: Bug fix
  • refactor: Code restructuring (no behavior change)
  • docs: Documentation only
  • test: Adding/updating tests
  • style: Formatting (no logic change)
  • chore: Maintenance, dependencies
  • perf: Performance improvement
  • ci: CI/CD changes
  1. Determine scope from affected area (e.g., auth, api, ui, db, ci).
  1. Generate message following this format:

``` ():

[Body: explain WHY, not WHAT]

[Footer: breaking changes, issue refs] ```

Rules

  • Use imperative mood: "add feature" not "added feature".
  • Keep summary under 50 characters.
  • Capitalize first letter of summary.
  • No period at end of summary.
  • Body explains WHY the change was made.
  • Mark breaking changes with ! after scope and BREAKING CHANGE: in footer.
  • One logical change per commit -- do not mix unrelated changes.

Examples

feat(auth): add JWT refresh token support

Implement automatic token refresh to prevent session
expiration during active use. Users were being logged
out mid-workflow.

Closes #142
fix(api): handle null values in user profile

Prevent crashes when optional profile fields are null.
Add null checks before accessing nested properties.
feat(api)!: restructure response format to JSON:API

BREAKING CHANGE: All API responses now use JSON:API spec.
Migration guide: docs/migration-v2.md

Error Handling

  • If no changes are staged, run git status and suggest which files to stage.
  • If staged changes span unrelated areas, recommend splitting into separate commits.
  • If commit type is ambiguous (e.g., feat + fix mixed), flag it and suggest separation.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.