OpenSkills 安装
# 安装 Anthropic 官方技能库
npx openskills install anthropics/skills
# 同步到 AGENTS.md
npx openskills sync -y
# 查看已安装的技能
npx openskills list
# 读取特定技能
npx openskills read skill-creator
Git 配置
# 配置用户信息
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
# 配置 SSH Key
ssh-keygen -t ed25519 -C "your.email@example.com"
cat ~/.ssh/id_ed25519.pub # 复制到 GitHub/GitLab
# 测试连接
ssh -T git@github.com
Node.js 环境
# 使用 nvm 安装
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
# 安装 LTS 版本
nvm install --lts
nvm use --lts
# 配置 npm 国内镜像(可选)
npm config set registry https://registry.npmmirror.com
Docker 环境
# Ubuntu/Debian
curl -fsSL https://get.docker.com | bash
sudo usermod -aG docker $USER
# WSL2 环境
# 使用 Docker Desktop for Windows
# 验证安装
docker --version
docker compose version
常用工具
# 安装 zsh + oh-my-zsh
sudo apt install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# 安装 fzf(模糊搜索)
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
# 安装 ripgrep(快速搜索)
sudo apt install ripgrep
# 安装 bat(更好的 cat)
sudo apt install bat