원클릭으로
commit
Use when the user invokes /commit - stages and commits current changes, creating a branch from main if needed via worktree
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user invokes /commit - stages and commits current changes, creating a branch from main if needed via worktree
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Use when the user invokes /merge - merges the current PR, cleans up, and pulls the default branch
Use when the user invokes /pr - pushes the current branch and creates a pull request
Use when working on the AGX CLI or its cloud-backed task/project workflows. Covers task lifecycle commands, project assignment, repo attachment with local analysis, daemon/board flows, and the wake-work-sleep execution model.
SOC 직업 분류 기준
| name | commit |
| description | Use when the user invokes /commit - stages and commits current changes, creating a branch from main if needed via worktree |
Stage and commit changes. If on the default branch, create a feature branch first.
git status — see all changesgit diff + git diff --staged — what changedgit log --oneline -10 — commit stylegit branch --show-current — current branchgit remote show origin 2>/dev/null | grep 'HEAD branch' — default branch namefix/login-validation, feat/add-search)git stash --include-untrackedgit worktree add -b <branch> ../<repo>-<branch> HEADcd ../<repo>-<branch> && git stash popgit add -A or git add .).env, credentials, tokens)Report what was committed. Stop here — use /pr to push and create a PR.