askill
commits

commitsSafety 90Repository

Create conventional commits with structured type, scope, and body.

0 stars
1.2k downloads
Updated 2/11/2026

Package Files

Loading files...
SKILL.md

/commits — Conventional Commit Workflow

Create well-structured git commits following the Conventional Commits specification.

Process

  1. Review changes — Run git status and git diff --staged to understand what's being committed. If nothing is staged, run git diff to see unstaged changes and ask which files to stage.

  2. Determine commit type — Based on the changes:

    • feat — new feature or functionality
    • fix — bug fix
    • refactor — code restructuring without behavior change
    • style — formatting, whitespace, missing semicolons
    • docs — documentation only
    • test — adding or updating tests
    • chore — build, tooling, dependencies, config
    • perf — performance improvement
    • ci — CI/CD configuration
  3. Determine scope — Identify the affected area (e.g., auth, billing, ui, api, db). Use the directory or feature name.

  4. Write commit message — Format:

    type(scope): short description
    
    Longer body explaining what changed and why, if needed.
    
  5. Stage and commit — Stage the relevant files (prefer explicit file names over git add .) and create the commit.

Rules

  • Keep the subject line under 72 characters
  • Use imperative mood ("add feature" not "added feature")
  • Do not include file lists in the commit body — git tracks that
  • Group related changes into a single commit
  • Separate unrelated changes into multiple commits
  • Never use --no-verify unless explicitly asked

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

83/100Analyzed 3/2/2026

Well-structured skill for conventional commits with clear process steps, type definitions, and practical rules. Located in a dedicated skills folder with reasonable tags. Actionable workflow but lacks specific examples and reference links. General-purpose enough to be reusable across projects.

90
80
85
75
85

Metadata

Licenseunknown
Version-
Updated2/11/2026
PublishermickaelMamani

Tags

apici-cdgithub-actionssecuritytesting