askill
git-commit

git-commitSafety 95Repository

Mandatory read before creating git commits. Stages only intended files and writes a concise Conventional Commits-style subject.

1 stars
1.2k downloads
Updated 2/25/2026

Package Files

Loading files...
SKILL.md

Create a git commit for the current changes using a concise Conventional Commits-style subject.

Format

<type>(<scope>): <summary>

  • type REQUIRED. Use feat for new features, fix for bug fixes. Other common types: docs, refactor, chore, test, perf.
  • scope OPTIONAL. Short noun in parentheses for the affected area (e.g., api, parser, ui).
  • summary REQUIRED. Short, imperative, <= 72 chars, no trailing period.

Notes

  • Body is OPTIONAL. If needed, add a blank line after the subject and write short paragraphs.
  • Do NOT include breaking-change markers or footers.
  • Do NOT add sign-offs (no Signed-off-by).
  • Only commit; do NOT push (unless explicitly asked).
  • If it is unclear whether a file should be included, ask the user which files to commit.
  • Treat any caller-provided arguments as additional commit guidance. Common patterns:
    • Freeform instructions should influence scope, summary, and body.
    • File paths or globs should limit which files to commit. If files are specified, only stage/commit those unless the user explicitly asks otherwise.
    • If arguments combine files and instructions, honor both.

Steps

  1. Infer from the prompt if the user provided specific file paths/globs and/or additional instructions.
  2. Review git status and git diff to understand the current changes (limit to argument-specified files if provided).
  3. (Optional) Run git log -n 50 --pretty=format:%s to see commonly used scopes.
  4. If there are ambiguous extra files, ask the user for clarification before committing.
  5. Stage only the intended files (all changes if no files specified).
  6. Run git commit -m "<subject>" (and -m "<body>" if needed).

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

94/100Analyzed 2/25/2026

High-quality skill for creating git commits with Conventional Commits format. Well-structured with clear format specification, comprehensive notes on edge cases, and numbered steps. Tags seem mismatched (api, prompting, testing) but content is excellent and reusable across projects. Explicitly prevents pushing for safety.

95
95
95
90
95

Metadata

Licenseunknown
Version-
Updated2/25/2026
Publisherdefault-anton

Tags

apipromptingtesting