一键导入
git-guide
Guide for using git directly on the host system via the OS shell tool. Use when performing any git operations — clone, pull, push, commit, branch, etc.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for using git directly on the host system via the OS shell tool. Use when performing any git operations — clone, pull, push, commit, branch, etc.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Authoritative user guide + reference map for Mux-Swarm itself (v0.12.1). Use when the user asks how Mux works, how to configure it, what a command/flag/config-key does, how modes/teams/sandbox/auth/ACP/delegation work, or how to troubleshoot Mux. Points to exact sections in the bundled DOCS.md instead of dumping it.
Structured diff and PR code review with a prioritized checklist. Use when reviewing staged changes, pull requests, or any code diff before merge.
Profile, clean, and analyze tabular data (CSV/JSON/Parquet) with pandas/polars. Use when exploring datasets, computing aggregations, joining tables, resampling time series, or producing analysis charts.
Find vulnerable and outdated dependencies across ecosystems (Python, Node, .NET, Rust, Go). Use when auditing a project for CVEs, preparing a release, or investigating a security report.
Design distinctive, polished UI that avoids generic 'AI slop'. Use when making visual design decisions: typography, color, spacing, hierarchy, motion, and component composition.
Run real SAST and secret-scanning tools locally (semgrep, bandit, gitleaks, trivy). Use when auditing a codebase for vulnerabilities, exposed secrets, or vulnerable dependencies before shipping or on demand.
| name | git-guide |
| description | Guide for using git directly on the host system via the OS shell tool. Use when performing any git operations — clone, pull, push, commit, branch, etc. |
| requires_bins | ["git"] |
Use this skill when performing any git operations on the host system.
Git must be installed and available on PATH. Verify:
git --version
All git commands run via the shell tool appropriate for {{os}}. Discover the available shell tool via your tool list — on Windows this is Windows_Shell, on Linux/Mac use the bash MCP or equivalent.
git clone <repo-url> <destination>
git -C /path/to/repo status
git -C /path/to/repo pull
git -C /path/to/repo add .
git -C /path/to/repo commit -m "commit message"
git -C /path/to/repo push
git -C /path/to/repo branch # list branches
git -C /path/to/repo checkout -b name # create and switch
git -C /path/to/repo checkout name # switch branch
git -C /path/to/repo log --oneline -10
git -C /path/to/repo diff
All cloned repositories and git artifacts should be saved to the sandbox:
{{paths.sandbox}}
Always clone directly into or copy outputs to the sandbox path.
| Operation | Command |
|---|---|
| Clone | git clone <url> {{paths.sandbox}}/repo-name |
| Pull | git -C <repo-path> pull |
| Push | git -C <repo-path> push |
| Status | git -C <repo-path> status |
| Branch | git -C <repo-path> branch |
| Log | git -C <repo-path> log --oneline |
| Diff | git -C <repo-path> diff |
Permission denied → check sandbox path is in allowed paths configRepository not found → verify URL and credentialsAuthentication failed → ensure SSH key or token is configured on the host