WSL安装教程 https://blog.csdn.net/2301_80737483/article/details/158960028

WSL中禁用windows环境变量

编辑/etc/wsl.conf文件,添加下面内容:

[interop]
appendWindowsPath = false

安装Claude Code

# 全局安装
sudo npm install -g @anthropic-ai/claude-code
 
# 速度过慢的话,改用国内镜像源重新安装(复制执行)
sudo npm install -g @anthropic-ai/claude-code --registry=https://registry.npmmirror.com

配置DeepSeek

~/.claude/settings.json中配置下面文件

{
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "sk-xxx",
    "ANTHROPIC_BASE_URL": "https://api.deepseek.com/anthropic",
    "ANTHROPIC_MODEL": "deepseek-v4-pro[1m]",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "deepseek-v4-pro[1m]",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "deepseek-v4-pro[1m]",
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "deepseek-v4-flash",
    "CLAUDE_CODE_SUBAGENT_MODEL": "deepseek-v4-flash",
    "CLAUDE_CODE_ATTRIBUTION_HEADER": "0"
  },
  "custom_instructions": {
    "language": "Always respond in Simplified Chinese. You must not output English explanations or mixed language."
  }
}

安装CodeGraph

官网: https://colbymchenry.github.io/codegraph/
GitHub: https://github.com/colbymchenry/codegraph

npx @colbymchenry/codegraph

安装andrej-karpathy-skills

GitHub: https://github.com/multica-ai/andrej-karpathy-skills

claude 进入claude cli
/plugin marketplace add forrestchang/andrej-karpathy-skills
/plugin install andrej-karpathy-skills@karpathy-skills

安装claude-mem

GitHub: https://github.com/thedotmack/claude-mem

/plugin marketplace add thedotmack/claude-mem
/plugin install claude-mem

安装superpowers

GitHub: https://github.com/obra/superpowers

官方市场安装
/plugin install superpowers@claude-plugins-official

安装claude-code-setup

官网: https://claude.com/plugins/claude-code-setup

官方市场安装
/plugin install claude-code-setup@claude-plugins-official

前端设计SKILL

frontend-design Anthropics 官方出品

npx skills add https://github.com/anthropics/skills/tree/main/skills/frontend-design 

dd9527
20 声望0 粉丝

« 上一篇
shell 编程