원클릭으로
proxy
Manage shell proxy environment variables - on, off, toggle, status, and pip/uv proxy helpers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage shell proxy environment variables - on, off, toggle, status, and pip/uv proxy helpers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Search and read Claude Code official docs, changelog, and GitHub issues. Use when the user asks how Claude Code works, what a setting/env var/flag does, wants release notes, or wants to find/triage a known issue. Handles proxy + GitHub fallback automatically for network problems.
One-stop GitHub operations - connectivity check, fork repos, manage proxy, common gh workflows, and issue search/management
Run LLM serving benchmarks (sglang/vllm) on remote GPU machines - environment check, service launch, benchmark execution, and result collection
Transfer files between machines via SSH - supports direct transfer, jump host relay, and progress monitoring
Generate and install a custom Claude Code status line with selectable columns (model, context, effort level, git, dir, worktree, vim) and a color theme. Context and effort elements color-change based on level. Triggers on "status line", "statusline", "customize status", "status bar", "effort level display", "状态栏", "ステータスライン", or similar.
Execute code on remote GPU machines via SSH - connectivity check, GPU status, env validation, script/command execution
| name | proxy |
| description | Manage shell proxy environment variables - on, off, toggle, status, and pip/uv proxy helpers |
| user-invocable | true |
Manage HTTP/HTTPS/FTP/RSYNC proxy environment variables in the current shell session.
NOT all network access needs proxy. Only use proxy for sites that are blocked or slow without it (e.g. GitHub, Google, npmjs.org, PyPI, Docker Hub). Domestic sites (e.g. baidu.com, bing.com, Chinese mirrors) work fine without proxy and may even be slower with it.
gh, git push/pull to github.com)HF_ENDPOINT=https://hf-mirror.com is set by default).cn or domestic servicesIf the target is a foreign site that may be blocked or slow, add proxy. Otherwise, skip it.
Each Bash tool call runs in a new shell session — environment variables do NOT persist between calls. When proxy is needed, chain it inline:
source ~/.zshrc && proxy on && <your-command>
Do NOT assume proxy is active from a previous call.
| Command | Description |
|---|---|
source ~/.zshrc && proxy on | Enable proxy |
source ~/.zshrc && proxy off | Disable proxy, unset all proxy env vars |
source ~/.zshrc && proxy toggle | Toggle proxy on/off |
source ~/.zshrc && proxy status | Show current proxy env vars status |
source ~/.zshrc && proxy on 192.168.1.1:8080
Override PROXY_DEFAULT by setting the PROXY env var in .zshrc.
When proxy is on, these are set:
http_proxy / HTTP_PROXYhttps_proxy / HTTPS_PROXYftp_proxy / FTP_PROXYrsync_proxy / RSYNC_PROXYRun pip/uv through proxy using official PyPI source:
source ~/.zshrc && pip_proxy install <package>
source ~/.zshrc && uv_proxy install <package>
Use China mirror sources (no proxy, faster locally):
source ~/.zshrc && pip_tsinghua install <package> # Tsinghua mirror
source ~/.zshrc && pip_aliyun install <package> # Aliyun mirror
source ~/.zshrc && pip_tencent install <package> # Tencent mirror
source ~/.zshrc && uv_tsinghua install <package> # Tsinghua mirror
source ~/.zshrc && uv_aliyun install <package> # Aliyun mirror
source ~/.zshrc && uv_tencent install <package> # Tencent mirror
source ~/.zshrc && proxy on && git push # github.com
source ~/.zshrc && proxy on && gh pr create # GitHub API
source ~/.zshrc && proxy on && curl https://pypi.org/... # PyPI
curl https://www.baidu.com # baidu
curl https://cn.bing.com # bing China
pip_tsinghua install <package> # Tsinghua mirror
uv_aliyun install <package> # Aliyun mirror
git add -A && git commit -m "message" # local git ops
ls, cat, grep, find # local filesystem
source ~/.zshrc && proxy on && before the commandproxy on explicitly rather than pt (toggle alias) to avoid accidentally turning proxy offPROXY_DEFAULT or PROXY env varsudo does NOT inherit proxy env vars — use sudo -E if neededHF_ENDPOINT=https://hf-mirror.com is set by default for Hugging Face downloads