원클릭으로
git-commit-messages
Guidelines for Michael Vorburger's personal Git commit style.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for Michael Vorburger's personal Git commit style.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guidelines for Michael Vorburger's preferred Git workflow.
Java coding, testing, and logging conventions.
Guidelines for determining how to test a project based on its contents.
Enforces TypeScript and project-specific coding standards, including Bun usage and the zero-warning policy. Use this skill when creating or modifying any TypeScript or configuration files.
Update Nix flake inputs.
Conventions for naming files within the project.
| name | git-commit-messages |
| description | Guidelines for Michael Vorburger's personal Git commit style. |
This skill describes Michael Vorburger's preferred style for Git commit messages across his projects:
Use Conventional Commits format where applicable: <type>(<scope>): <description>
Common types:
feat: If it looks like any sort of new feature is introduced, even minor.fix: If it's clearly more of a sort of minor fix.docs: If only files in the docs/ directory changed, and no files outside of it.deps: If only dependency related files changed (e.g., MODULE.bazel, docs/dev/dependencies.txt, maven_install.json).style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).refactor: A code change that neither fixes a bug nor adds a feature.perf: A code change that improves performance.test: Adding missing tests or correcting existing tests.build: Changes that affect the build system or external dependencies.ci: Changes to our CI configuration files and scripts.chore: Other changes that don't modify src or test files.Files under a directory named skills/ containing name: and description: YAML front-matter in their MD are considered executable code for the agent, not just documentation. Adding or modifying a skill should therefore always be of commit type feat or fix, not docs.
testing skill for how to test.