소스 정보
- 저장소
- rgomezcasas/dotfiles
- 최근 소스 활동
- 2026년 7월 22일 08:11
- 감지된 SKILL.md 언어
- 영어
- 스타
- 362
- 포크
- 44
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/rgomezcasas/dotfiles --skill global-commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | global-commit |
| description | Create a git commit following Conventional Commits specification |
| allowed-tools | Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git diff:*), Bash(git log:*), Bash(git rev-parse:*), Bash(git branch:*), Bash(git stash:*), Bash(git rm:*) |
| disable-model-invocation | true |
git statusgit diff --cachedgit diffgit branch --show-currentgit log --oneline -10git rev-parse --show-toplevelWe use Conventional Commits specification for all commit messages.
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
| Type | Description |
|---|---|
feat | A new feature |
fix | A bug fix |
docs | Documentation only changes |
style | Changes that do not affect the meaning of the code (white-space, formatting, etc) |
refactor | A code change that neither fixes a bug nor adds a feature |
perf | A code change that improves performance |
test | Adding missing tests or correcting existing tests |
build | Changes that affect the build system or external dependencies |
ci | Changes to CI configuration files and scripts |
chore | Other changes that don't modify src or test files |
revert | Reverts a previous commit |
feat(auth): add login endpoint)! after type/scope or BREAKING CHANGE: in footerfeat(api): add user authentication endpoint
fix(ui): resolve button alignment issue on mobile
docs: update installation instructions
refactor!: drop support for Node 14
chore(deps): update dependencies
Always add a co-author trailer to the commit message with the following format:
Co-Authored-By: {tool} - {model.name} {model.version} ({model.reasoning_effort}) <{tooling_email}>
tool: The AI coding tool used (e.g. Claude Code, Cursor, Copilot, Codex)model.name: The name of the model used to make the change (e.g. Claude Opus, Cursor Composer, OpenAI GPT)model.version: The version of the model used to make the change (e.g. 4.6, 1.5, 5.4)model.reasoning_effort: The reasoning effort of the model used to make the change (e.g. low, medium, high)tooling_email:
noreply@anthropic.comcursoragent@cursor.comcopilot@github.comcodex@openai.comNEVER guess or hardcode these values. They MUST reflect the tool, model, version, and reasoning effort actually running this session and producing the changes — including the real, currently selected reasoning_effort. If you cannot determine a value with certainty, ask instead of inventing one.
When the tool is Claude Code, read the currently selected reasoning_effort from the Claude Code status line, which reflects the effort active for this session.
Based on the changes shown above:
Always run git commit outside the sandbox, since SSH signing needs access to ~/.ssh, which the sandbox blocks.
This section ONLY applies when the last segment of the repository root path (shown above) ends in -course.
When in a course repository, the commit scope MUST always reflect the course module and lesson numbers derived from the folder path.
The folder structure follows the pattern <module>-<topic>/<lesson>-<name>. Extract the module and lesson numbers to build the scope as <module>-<lesson>.
| Changed folder | Scope | Full commit example |
|---|---|---|
01-agents/2-init | 01-2 | feat(01-2): add agent initialization |
02-tools/3-search | 02-3 | fix(02-3): resolve search query parsing |
03-prompts/1-basics | 03-1 | refactor(03-1): simplify prompt builder |