بنقرة واحدة
commit
Create git commit following project conventions. Use when staging changes and ready to commit.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create git commit following project conventions. Use when staging changes and ready to commit.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Prepare and create PR to develop branch. Use when pushing changes and creating a pull request.
Route git-related workflows to the right child skill. Use when you need an overview of the git skill family or need help choosing between commit, create-pr, and summarize-pr.
Summarize develop→main merge PR and update PR body. Use when merging develop into main.
| name | commit |
| description | Create git commit following project conventions. Use when staging changes and ready to commit. |
Create a git commit following LFIN project conventions with Jira ticket prefix.
git branch --show-current to get current branchfeature/LFDS-4_description → LFDS-4)git status and git diff --staged to analyze changesgit commit using HEREDOC format (see below)<TICKET>: <type>(<scope>): <subject>
<body>
Examples:
LFDS-4: feat(Radio): Radio 컴포넌트 래퍼 구현
LFDS-12: fix(Button): disabled 상태 스타일 수정
LFDS-7: refactor(hooks): useDebounce 타입 개선
| Branch Pattern | Ticket |
|---|---|
feature/LFDS-4_Radio-재정의 | LFDS-4 |
fix/LFDS-12_button-style | LFDS-12 |
develop or main | (omit prefix) |
Regex: /([A-Z]+-\d+)/ from branch name
| Type | Use when |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting (no logic change) |
refactor | Code restructure |
test | Add/modify tests |
chore | Build, config, deps |
git commit -m "$(cat <<'EOF'
<subject line>
<body>
EOF
)"
WARNING: Do NOT pass multi-line messages as a single string with
\n. Some agents render\nas literal text instead of newlines.