askill
commit

commitSafety 100Repository

Create commit messages following Conventional Commit conventions. Use when committing code changes, writing commit messages, or formatting git history. Follows conventional commits with-specific issue references.

1 stars
1.2k downloads
Updated 3/16/2026

Package Files

Loading files...
SKILL.md

Commit Messages

Follow these conventions when creating commits for projects.

When to Use This Skill

Use this skill when:

  • Committing code changes
  • Writing commit messages
  • Formatting git history
  • Following commit Conventional Commit conventions
  • Referencing issues in commits

Prerequisites

Before committing, ensure you're working on a feature branch, not the main branch.

# Check current branch
git branch --show-current

If you're on main or master, create a new branch first:

# Create and switch to a new branch
git checkout -b <type>/<short-description>

Branch naming should follow the pattern: <type>/<short-description> where type matches the commit type (e.g., feat/add-user-auth, fix/null-pointer-error, ref/extract-validation).

Format

<type>(<scope>): <subject>

<body>

<footer>

The header is required. Scope is optional. All lines must stay under 100 characters.

πŸ“‹ Types of Commit

  1. feat: A new feature for the user or system
    Example: feat(auth): add Google login feature

  2. fix: A bug fix for the user or system
    Example: fix(button): resolve issue with button hover state

  3. chore: Routine tasks like maintenance or updating dependencies
    Example: chore(deps): update react to version 17.0.2

  4. docs: Documentation updates
    Example: docs(readme): update installation instructions

  5. style: Changes related to code style (e.g., formatting, missing semi-colons)
    Example: style(button): fix button alignment in CSS

  6. refactor: Code change that neither fixes a bug nor adds a feature
    Example: refactor(auth): simplify login form validation logic

  7. test: Adding or updating tests
    Example: test(auth): add unit tests for login function

  8. build: Changes that affect the build system or external dependencies
    Example: build(webpack): add webpack config for production build

  9. ci: Continuous integration-related changes
    Example: ci(gitlab): update CI config for deployment pipeline

  10. perf: Code changes that improve performance Example: perf(api): optimize database queries for faster responses

  11. env: Changes related to environment setup or configuration Example: env(docker): update Dockerfile for staging environment

  12. sec: Security fixes or improvements Example: sec(auth): add encryption for user passwords

  13. config: Changes to configuration files Example: config: update .eslint rules for stricter code checks

  14. api: Updates to API contracts or integrations Example: api(user): add new endpoint for user profile updates

Additional Commit Types

revert: Reverts a previous commit

Example: revert(auth): rollback Google login feature

merge: Indicates a merge commit

Example: merge: branch 'feature/auth' into 'main'

deps: Dependency-specific updates

Example: deps: bump axios from 0.21.1 to 0.24.0

design: UI or UX improvements

Example: design(button): update hover effect

Subject Line Rules

  • Use imperative, present tense: "Add feature" not "Added feature"
  • Capitalize the first letter
  • No period at the end
  • Maximum 70 characters

Body Guidelines

  • Explain what and why, not how
  • Use imperative mood and present tense
  • Include motivation for the change
  • Contrast with previous behavior when relevant

Footer: Issue References

Reference issues in the footer using these patterns:

Fixes GH-1234
Fixes #1234
Fixes-1234
Refs LINEAR-ABC-123
  • Fixes closes the issue when merged
  • Refs links without closing

AI-Generated Changes

When changes were primarily generated by a coding agent (like Copilot), include the Co-Authored-By attribution in the commit footer:

Co-Authored-By: Copilot <>

This is the only indicator of AI involvement that should appear in commits. Do not add phrases like "Generated by AI", "Written with Claude", or similar markers in the subject, body, or anywhere else in the commit message.

Examples

Simple fix

fix(api): Handle null response in user endpoint

The user API could return null for deleted accounts, causing a crash
in the dashboard. Add null check before accessing user properties.

Fixes-5678
Co-Authored-By: Claude <noreply@anthropic.com>

Feature with scope

feat(alerts): Add Slack thread replies for alert updates

When an alert is updated or resolved, post a reply to the original
Slack thread instead of creating a new message. This keeps related
notifications grouped together.

Refs GH-1234

Refactor

ref: Extract common validation logic to shared module

Move duplicate validation code from three endpoints into a shared
validator class. No behavior change.

Breaking change

feat(api)!: Remove deprecated v1 endpoints

Remove all v1 API endpoints that were deprecated in version 23.1.
Clients should migrate to v2 endpoints.

BREAKING CHANGE: v1 endpoints no longer available
Fixes-9999

Revert Format

revert: feat(api): Add new endpoint

This reverts commit abc123def456.

Reason: Caused performance regression in production.

Principles

  • Each commit should be a single, stable change
  • Commits should be independently reviewable
  • The repository should be in a working state after each commit

References

For a deeper understanding of Conventional Commits, check out the official documentation: Conventional Commits.

Install

Download ZIP
Requires askill CLI v1.0+β–Ά

AI Quality Score

94/100Analyzed 2/24/2026

High-quality skill document covering Conventional Commit conventions comprehensively. Includes clear when-to-use guidance, all commit types with examples, formatting rules, and even covers AI-generated changes. Well-structured with good metadata. The .github location is appropriate for commit-related automation. Score penalized slightly (R8) for path location but content is universally applicable.

100
94
90
95
92

Metadata

Licenseunknown
Version-
Updated3/16/2026
PublisherYanBerdin

Tags

apici-cddatabasellmsecuritytesting