원클릭으로
git
Git operations: branching, commit message format, pre-commit hook handling, and push policy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git operations: branching, commit message format, pre-commit hook handling, and push policy
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Full workflow: environment setup, running experiments, reusing and implementing new components (models, datasets, plmodules, callbacks), and testing
How to load a checkpoint and run evaluation (inference only, no training)
Reference code folder conventions — storing external code and documentation for AI-assisted development context
Coding style guidelines and common pitfalls for this project
Hydra configuration file structure and conventions for models, datasets, callbacks, and training
Data format conventions for datasets and plmodules
| name | git |
| description | Git operations: branching, commit message format, pre-commit hook handling, and push policy |
Never commit or push directly to main. All changes must go through a Pull Request on a feature branch.
When creating a new branch off main, always sync local main with the remote first:
git checkout main && git pull origin main
git checkout -b your-new-branch
Only commit when explicitly requested by the user.
Pre-commit hooks run automatically on every commit. Claude should handle failures without asking the user:
git commit — hooks run automatically.git add <modified-files> then retry the same commit message.Never auto-push. Only run git push when explicitly asked by the user.