소스 정보
- 저장소
- ahmedelgabri/dotfiles
- 최근 소스 활동
- 2026년 5월 9일 17:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 291
- 포크
- 18
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ahmedelgabri/dotfiles --skill git-commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git-commit |
| description | Create a commit (or draft a commit message) in a Git repository |
Your user may invoke this skill explicitly with a slash command, or informally with a phrase like "commit this" or "suggest a commit message". If they use a loose instruction like "commit this" your first task is to determine whether you are working in a Git repository and should make a Git commit (using this skill), or you are working in a Jujutsu repo and should create a Jujutsu commit (using the dedicated Jujutsu commit skill).
IMPORTANT: Always identify the repository root of the current working directory before making a commit. You must ensure that you are actually in a repo, and that the repo uses the specific version control system that you intend to use to create the commit.
Most frequently, you will be in a Git repository (which you can determine via
the presence of a .git directory and the absence of a .jj directory in the
current working directory's repository root). In Git repositories, you should
use this skill to create commits.
Less frequently, you will find yourself in a Jujutsu repository (which you can
determine via the presence of a .jj directory in the current working
directory's repository root). In Jujutsu repositories, you should use the
dedicated Jujutsu commit skill to create commits. For general information on
Jujutsu, see the Jujutsu version-control skill.
Generally, if your user wants you to commit only a subset of the changes in the working directory, they will instruct you to do so. Nevertheless, if you determine that there are unrelated changes waiting to be committed, you should clarify with the user how they wish to split them up into distinct commits, rather than committing them all at once.
Usually, you will include all changes in the working directory in the commit
(that is, you should run git diff to see what the changes are, and/or
git diff --staged to see what has already been staged).
.agent-notes/, a directory which may be ignored via the global
~/.config/git/ignore file: these plan files should never be included in a
commit as they are intended to be local-only aids to development.| Type | When to use |
|---|---|
| fix | Bug fixes |
| feat | New features |
| chore | Content |
| refactor | Code improvements (eg. for better readability, easier maintenance etc) which don't change behavior |
| docs | Documentation changes (including changes to code comments) |
| test | Changing or adding/removing tests |
| perf | Performance improvements |
| style | Formatting changes, automated lint fixes |
refactor: remove unused `recurse` setting
We were never exposing a user-accessible setting here. It is always `true`
in practice, except in the benchmarks where we offered an override via the
environment.
If there is ever a call for this in the future, we can resurrect it, but
for now, leaving it out presents us with an opportunity to simplify.
It may even be a tiny bit faster (1.3% better CPU time, and 2.4%
better wall time), with reasonable confidence, due to saving us some
conditional checks.