一键导入
git-add
Stage files for commit after scanning for secrets. Use when the user asks to stage files with `git add`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Stage files for commit after scanning for secrets. Use when the user asks to stage files with `git add`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a GitHub issue with an auto-generated description. Use when the user asks to open an issue for a bug, feature request, or task.
Create a pull request with an auto-generated description. Use when the user asks to open a PR for the current branch's changes.
Force-delete every favorited world on the authenticated VRChat account via VRChat's REST API. Use when the user asks to purge, clear, wipe, or delete all their VRChat favorite worlds.
Create a new git commit for staged changes. Use when the user asks to commit staged changes with an auto-generated Conventional Commits message, or when Claude Code itself wants to run `git commit`.
Verify that git user.name and user.email are configured. Use automatically before any git operation that requires identity (commits, rebases, cherry-picks, etc.), and when the user asks to check or verify their git identity.
Instruct to suggest alternative commands for `rm`, `find`, and `grep`. Use when Claude Code started, and you want to run `rm`, `find`, or `grep`, and the corresponding alternative is installed in the environment — `rm-dust` for `rm`, `fd` (or `fd-find`) for `find`, `rg` for `grep`.
| name | git-add |
| description | Stage files for commit after scanning for secrets. Use when the user asks to stage files with `git add`. |
| allowed-tools | Bash(git status:*), Bash(git diff:*), Bash(git add:*) |
Stage files for commit after scanning for sensitive information.
git diff and git status to inspect the changes to be stagedgit add if nothing suspicious was found (or user confirms)Before staging, check the unstaged diff for:
ghp_, gho_, AKIA, sk-, xox, or matching -----BEGIN.*PRIVATE KEYAPI_KEY=, _SECRET=, _TOKEN=, PASSWORD=/Users/<name>/ or /home/<name>/ (prefer ~)If any of the above are found, do not stage. Use AskUserQuestion to present these options:
Only proceed if the user selects "Stage as-is", or if nothing suspicious was found.
git add