3 月 2026 20日 临时电子邮件 20日 OpenClaw全攻略:普通人最全最实惠的保姆级教程 1评论 18日 【保姆级】OpenClaw 全网最细教学:安装→Skills实战→多Agent协作,1 小时全精通! 1评论 10日 telegram虚拟号码购买 10日 电报如何解除敏感? 10日 如何将Telegram设置成中文? 2 月 2026 3日 什么是干净IP? APP码客 APP码客 (appsmk.com) 全球海外APP虚拟手机号注册领航者支持 Telegram、WhatsApp、TikTok、OpenAI 等主流 APP 快速收码,解决注册难题。一站式获取海外手机号,助力您的业务走向全球! telegram交流群 telegram交流群 链接地址:https://t.me/Tudou3211 热门文章 什么是干净IP? 2026-02-03 118 电报如何解除敏感? 2026-03-10 983 telegram虚拟号码购买 2026-03-10 473 热门评论 admin:0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw --version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址: http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python --version python -m pip --version # 准备目录 $skillsRoot="$env:USERPROFILE\.openclaw\workspace\skills" $skillDir="$skillsRoot\free-ride" $zip=Join-Path $env:TEMP "free-ride.zip" $url="https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride" New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys 然后执行(替换为你自己的 Key): openclaw config set env.OPENROUTER_API_KEY "你的_OPENROUTER_API_KEY" 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/...:free(例如 nvidia/nemotron-...:free)。 7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN "OpenClaw Gateway" 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr ":18789" openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.mdadmin:0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw --version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址: http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python --version python -m pip --version # 准备目录 $skillsRoot="$env:USERPROFILE\.openclaw\workspace\skills" $skillDir="$skillsRoot\free-ride" $zip=Join-Path $env:TEMP "free-ride.zip" $url="https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride" New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys 然后执行(替换为你自己的 Key): openclaw config set env.OPENROUTER_API_KEY "你的_OPENROUTER_API_KEY" 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/...:free(例如 nvidia/nemotron-...:free)。 7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN "OpenClaw Gateway" 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr ":18789" openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md
0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw --version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址: http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python --version python -m pip --version # 准备目录 $skillsRoot="$env:USERPROFILE\.openclaw\workspace\skills" $skillDir="$skillsRoot\free-ride" $zip=Join-Path $env:TEMP "free-ride.zip" $url="https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride" New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys 然后执行(替换为你自己的 Key): openclaw config set env.OPENROUTER_API_KEY "你的_OPENROUTER_API_KEY" 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/...:free(例如 nvidia/nemotron-...:free)。 7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN "OpenClaw Gateway" 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr ":18789" openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md
0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw --version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址: http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python --version python -m pip --version # 准备目录 $skillsRoot="$env:USERPROFILE\.openclaw\workspace\skills" $skillDir="$skillsRoot\free-ride" $zip=Join-Path $env:TEMP "free-ride.zip" $url="https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride" New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys 然后执行(替换为你自己的 Key): openclaw config set env.OPENROUTER_API_KEY "你的_OPENROUTER_API_KEY" 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/...:free(例如 nvidia/nemotron-...:free)。 7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN "OpenClaw Gateway" 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr ":18789" openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md