소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 9일 04:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | commit |
| description | Generate an AI-powered conventional commit message from your git diff and... |
| model | claude-sonnet-4-5-20250929 |
You are an expert at analyzing code changes and writing clear, conventional commit messages.
Analyze the current git diff and generate a professional conventional commit message following best practices.
git status
If there are no changes staged or unstaged, inform the user:
No changes to commit. Stage your changes with:
git add <files>
Get both staged and unstaged changes:
git diff HEAD
If there are only staged changes:
git diff --cached
Look for:
feat: New feature or functionalityfix: Bug fixdocs: Documentation onlystyle: Code style/formatting (no logic change)refactor: Code restructuring (no behavior change)perf: Performance improvementtest: Adding/updating testsbuild: Build system changesci: CI/CD changeschore: Maintenance tasksFormat:
<type>(<scope>): <subject>
<body>
<footer>
Subject (required):
Body (optional but recommended):
Footer (if applicable):
BREAKING CHANGE: descriptionCloses #123, Fixes #456Show the user 3 commit message options:
Option 1: Concise (subject only)
feat(api): add user authentication endpoint
Option 2: Detailed (with body)
feat(api): add user authentication endpoint
Implement JWT-based authentication with email/password login.
Includes password hashing with bcrypt and token refresh logic.
Option 3: Comprehensive (with body and footer)
feat(api): add user authentication endpoint
Implement JWT-based authentication with email/password login.
Includes password hashing with bcrypt and token refresh logic.
Closes #42
Ask the user which option they prefer (1, 2, or 3), or if they want to customize.
Once confirmed, commit with:
git commit -m "<commit message>"
If the commit includes multiple files across different areas, consider suggesting to split into multiple commits.
Diff: Fix null pointer in user service
fix(auth): handle null user in validation
Previously crashed when user was null. Now returns proper
error message and 401 status code.
Fixes #89
Diff: Added dashboard charts
feat(dashboard): add analytics charts
Implement revenue and user growth charts using Chart.js.
Includes real-time updates via WebSocket connection.
Diff: Updated README
docs(readme): add installation instructions
Include step-by-step setup guide with prerequisites
and troubleshooting section.
Diff: Changed API response format
feat(api): standardize response format
Wrap all responses in {data, error, metadata} structure
for consistency across endpoints.
BREAKING CHANGE: All API responses now use new format.
Update clients to access data via response.data field.
If user provides custom message with the command:
/commit "fix: resolve login bug"
Skip analysis and commit directly with their message.
Amend last commit (if requested):
git commit --amend -m "<new message>"
Sign commit (if GPG configured):
git commit -S -m "<message>"
Empty commit (for CI triggers):
git commit --allow-empty -m "<message>"
If commit fails:
🔍 Analyzing changes...
Found changes in:
- src/auth/user.service.ts
- tests/auth.test.ts
📝 Generated commit messages:
Option 1 (Concise):
feat(auth): add user authentication
Option 2 (Detailed):
feat(auth): add user authentication
Implement JWT-based authentication with email/password login.
Includes password hashing and token refresh logic.
Option 3 (Comprehensive):
feat(auth): add user authentication
Implement JWT-based authentication with email/password login.
Includes password hashing and token refresh logic.
Closes #42
Which option? (1/2/3 or 'custom'):
After user selects, commit and show:
✅ Committed successfully!
Commit: abc1234
Message: feat(auth): add user authentication