Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기commit
스타3
포크0
업데이트2026년 4월 8일 09:44
Create a git commit
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Create a git commit
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Set up development for one or more issues using git worktrees and tmux.
Verify implementation completeness against requirements after finishing a task
Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them.
| name | commit |
| description | Create a git commit |
| user-invocable | true |
git statusgit diff HEADgit branch --show-currentgit log --oneline -10git revert can undo it preciselyFormat: <prefix>: <short description>
| Category | Patterns | Prefix |
|---|---|---|
| Tests | *_test.go, test_*.py, *_test.py, tests/ | test: |
| Documentation | *.md, docs/, README* | docs: |
| Lint/Format | Whitespace, import ordering, formatting only | lint: |
| Dependencies | go.mod, go.sum, requirements*.txt, pyproject.toml | chore: |
| Config | *.yaml, *.yml, *.json configs | chore: |
| Database | migrations/, db/queries/ | chore: or feat: |
| Proto | proto/**/*.proto | feat: or fix: |
| Bug Fix | Error handling, patches, single-line fixes | fix: |
| Refactor | Restructuring, renaming, moving code | refactor: |
| New Feature | New files, new functions, new capabilities | feat: |
Description: imperative mood, lowercase, no period, max 50 chars
For each logical unit of work:
git add <files>Show git log --oneline -<N> when done.