一键导入
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.