ワンクリックで
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.