一键导入
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.