一键导入
git-guide
Guide for using git through the git-container Docker container. All git operations must use the git-container for isolation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for using git through the git-container Docker container. All git operations must use the git-container for isolation.
用 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 through the git-container Docker container. All git operations must use the git-container for isolation. |
Use this skill when performing any git operations (clone, pull, push, commit, etc.).
MANDATORY: All git operations MUST be executed inside the git-container Docker container. Never run git directly on the host system.
| Property | Value |
|---|---|
| Containers | appropriate git container, alpine, ubuntu, debain, etc |
| Image | ubuntu:22.04 |
| Git Version | 2.34.1 |
| Status | Running (detached) |
docker exec -it git-container git clone <repo-url> <destination>
docker exec -it git-container git -C /path/to/repo pull
docker exec -it git-container git -C /path/to/repo push
docker exec -it git-container sh
docker exec -it git-container git -C /path/to/repo status
ALL cloned repositories and git artifacts MUST be saved to the NAS SANDBOX:
{{paths.sandbox}}
This is the designated storage location for all git operations. Always ensure:
docker exec -it git-container git clone <url> <nas-path>| Operation | Command |
|---|---|
| Clone | docker exec -it git-container git clone <url> /nas/path |
| Pull | docker exec -it git-container git -C /nas/repo pull |
| Push | docker exec -it git-container git -C /nas/repo push |
| Status | docker exec -it git-container git -C /nas/repo status |
| Branch | docker exec -it git-container git -C /nas/repo branch |
| Log | docker exec -it git-container git -C /nas/repo log |
| Diff | docker exec -it git-container git -C /nas/repo diff |
If the container stops, restart it:
docker start git-container
Verify container is running:
docker ps | findstr git-container