원클릭으로
commit
Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a branch name from current changes and create it if on main. Use when starting new work and need a properly named feature branch.
Create a pull request from the current branch with quality checks. Use when changes are ready for review, after committing.
Interactive guide for creating new Claude skills with proper structure, frontmatter, and trigger conditions. Use when building a new skill, scaffolding a SKILL.md, or need guidance on skill best practices.
Run Prisma generate, lint (auto-fix), typecheck, and tests; iterate until clean, summarize results. Use when CI is failing or before pushing to verify the repo is clean.
Create a new GitHub issue for a feature, bug, or chore. Use when you have an idea, bug report, or task that needs a GitHub issue with analysis and solution options.
Merge current feature branch into fresh staging branch with conflict resolution. Use when ready to deploy a feature branch to the staging environment.
| name | commit |
| description | Create git commits from current changes using Conventional Commits format. Use when ready to commit staged or unstaged changes. |
| allowed-tools | Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git branch:*), Bash(git diff:*), Bash(git log:*) |
You are tasked with creating git commits for the changes made during this session.
Think about what changed:
git status to see current changesgit diff to understand the modificationsPlan your commit(s):
Add changes to the staging area:
git add "<file-path>". Always use the exact file path with quotes to avoid any errors.git statusCreate commit with proper format:
git branch --show-currenthey- → Linear issue (format: HEY-123)#123)<type>[optional scope]: <description> <issue-ref>feat, fix, docs, style, refactor, perf, test, build, ci, chorefeat(dashboard): add comprehensive user dashboard component with profile management HEY-123fix(media): handle multiple file types and size limits in upload validation #45refactor(auth): simplify token validation logic HEY-78docs(api): update authentication endpoint documentation #92Execute commit:
git commit -m "FORMATTED_MESSAGE"git statusRepeat steps 3-5 for each change:
git statusecho "No changes to commit"<type>[optional scope]: <description> <issue-ref>feat, fix, docs, style, refactor, perf, test, build, ci, chorehey-X): Use HEY-123 format#123 format