jim60105/copilot-prompt

commit

Create a git commit with clear, conventional commit messages.

First seen Mar 29, 2026

Installation

$ npx skills add jim60105/copilot-prompt --skill commit

Summary

  • Create a git commit with clear, conventional commit messages.
  • You MUST read this when the user wants to commit staged changes, write a commit message, or finalize code changes with proper conventional commit format since it describes how to follow the user's specific requirements.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jim60105/copilot-prompt · top by installs.

npx skills add jim60105/copilot-prompt

Browse all from jim60105/copilot-prompt

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 21
License LICENSE
Default branch master
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseGFDL-1.3-or-later
More metadata

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,891 B
  • docs SUMMARY.md 295 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 6 installs

SKILL.md

Commit

Create git commits with conventional commit messages.

Steps

  1. Run git --no-pager diff to review the full changes.
  2. Analyze the changes thoroughly to understand what was modified.
  3. Create a git commit with a clear, conventional commit message.

Commit Guidelines

Format

  • Title: Use conventional commit format (type: description)
  • Body: Include brief description linking to the issue
  • Language: Always write commits in English
  • Newline: Use real newlines in commit message, not \n
  • Resolve Issues: If applicable, include "Resolves issue #X" in the body to link the commit to an issue. Skip this if there is no relevant issue.

IMPORTANT: Don't use \n that's not working, use real newlines!!! IMPORTANT: Don't use \n that's not working, use real newlines!!! IMPORTANT: Don't use \n that's not working, use real newlines!!!

Commit Command Template

git commit -m "chore: standardize linting, centralize guides, pin Python

- Introduce a root .flake8 config enforcing a 100-character line limit and ignoring specific style checks
- Remove inlined Python and Zsh guideline sections from copilot-instructions.md in favor of dedicated files
- Pin project Python version to 3.12 via a new .python-version file
- Rename docs/testing-guideline.md to docs/zsh-testing-guideline.md
- Refactor fetch_tags.py for consistent double-quoted strings, streamlined pattern definitions, logging calls, and URL assignment

Resolves issue #42"