commit
스타10
포크1
업데이트2026년 1월 24일 15:08
Selectively commit changes from the current conversation
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Selectively commit changes from the current conversation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Write or revise blog posts in Nick Diego's voice. Use this whenever drafting a new post, rewriting a draft, or reviewing prose for this site so the writing sounds like Nick and not like an AI. Covers tone, structure, diction, and hard punctuation rules (notably: never use em-dashes).
Scaffold a new blog post with the correct folder structure and frontmatter
SOC 직업 분류 기준
| name | commit |
| description | Selectively commit changes from the current conversation |
| argument-hint | [all] [push] |
| disable-model-invocation | true |
| allowed-tools | Bash(git status:*), Bash(git add:*), Bash(git diff:*), Bash(git commit:*), Bash(git log:*), Bash(git check-ignore:*), Bash(git push:*) |
Commit changes based on the argument provided: $ARGUMENTS
Arguments can be combined in any order:
all: Commit all pending changes in the working directorypush: Push to remote after committinggit status to see all modified and untracked filesgit diff --stat to see a summary of changesgit log -3 --oneline to see recent commit styleall: commit all pending changes, but group them into logical commitsgit add, then commit with a descriptive messagepush: run git push after all commits are completeUse a HEREDOC for proper formatting:
git commit -m "$(cat <<'EOF'
Short summary of changes (imperative mood)
Optional body explaining the "why" if needed.
EOF
)"
all: always break changes into separate logical commits (e.g., separate commits for a component fix vs. README updates)