一键导入
git
Git workflow helpers — status, rebase, commit, amend, log, stash, branch management. Includes pre-push checklist. NEVER git push autonomously.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git workflow helpers — status, rebase, commit, amend, log, stash, branch management. Includes pre-push checklist. NEVER git push autonomously.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Route a codebase question to the right tool — structural graph, semantic search, or risk analysis. Use when you need to find or understand code without knowing exact file names.
Auto-configure CLAUDE.md and claude/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.
Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from claude/build.md.
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to claude/tasks/todo.md so the next session can resume cleanly.
Remove all git worktrees for merged branches. Accepts --dry-run to preview. Use after merging PRs or for weekly maintenance.
Clean workspace — build artifacts, dependencies, caches, Docker volumes, or temp files. Accepts arguments like build, deps, all, cache, docker, tasks, reinstall.
| name | git |
| description | Git workflow helpers — status, rebase, commit, amend, log, stash, branch management. Includes pre-push checklist. NEVER git push autonomously. |
Git workflow helpers for everyday operations.
/git status # Current branch + dirty files + recent commits
/git branch # List branches
/git rebase main # Rebase onto main
/git commit <msg> # Stage all + commit
/git amend # Stage all + amend last commit
/git log # Last 20 commits
/git stash # Stash changes
/git stash pop # Pop stash
/git conflicts # Find conflict markers
git push AutonomouslyAlways present the proposed command and wait for user confirmation:
Proposed: git push origin feature/my-branch
⏳ Waiting for your confirmation before pushing...
| Argument | Action |
|---|---|
status | git status --short + git --no-pager log --oneline -5 |
branch | git branch --show-current |
branches | git --no-pager branch -a | head -30 |
stash | git stash |
stash pop | git stash pop |
rebase main | git fetch origin main && git rebase origin/main |
commit <message> | git add -A && git commit -m "<message>" |
amend | git add -A && git commit --amend --no-edit |
log | git --no-pager log --oneline -20 |
conflicts | grep -rn '^<<<<<<<|^=======|^>>>>>>>' . 2>/dev/null | head -20 |
feat/<ticket-id>-<short-description>fix/<ticket-id>-<short-description>chore/<description>git push origin <branch>