Overview
- Skill Key
- huamu668/openclaw-deploy-guide
- Author
- huamu668
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/huamu668/openclaw-deploy-guide
- Latest Commit SHA
- 3a723f08fda34423de66c0fdc20fc9a132f85040
OpenClaw/NEUXSBOT 全平台部署指南 - 支持 Mac、Windows、Linux 三平台一键安装。包含环境准备、安装配置、AI模型设置、消息平台对接、故障排除等完整流程。
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 openclaw-deploy 技能。 若已安装,则直接安装 openclaw-deploy 技能。
# OpenClaw 全平台部署指南 OpenClaw(NEUXSBOT)跨平台安装配置完整教程,支持 macOS、Windows、Linux 三平台实操。 --- ## 📋 目录 1. [系统要求](#系统要求) 2. [macOS 部署](#macos-部署) 3. [Windows 部署](#windows-部署) 4. [Linux 部署](#linux-部署) 5. [AI 模型配置](#ai-模型配置) 6. [消息平台对接](#消息平台对接) 7. [故障排除](#故障排除) --- ## 系统要求 ### 最低配置 | 项目 | 要求 | |------|------| | **操作系统** | Windows 10/11, macOS 10.15+, Ubuntu 20.04+ | | **内存** | 4GB RAM | | **磁盘空间** | 2GB 可用空间 | | **网络** | 需要访问 AI 模型 API(或使用本地模型) | ### 推荐配置 | 项目 | 要求 | |------|------| | **操作系统** | Windows 11, macOS 12+, Ubuntu 22.04+ | | **内存** | 8GB RAM 或更多 | | **磁盘空间** | 5GB 可用空间 | | **处理器** | 支持本地模型运行(如使用 Ollama) | --- ## macOS 部署 ### 方法一:DMG 安装包(推荐) **步骤 1:下载安装包** ```bash # 访问 GitHub Releases 下载最新版 curl -LO https://github.com/Markovmodcn/openclaw-china/releases/latest/download/NEUXSBOT.dmg ``` **步骤 2:安装应用** 1. 双击打开 `NEUXSBOT.dmg` 2. 将 NEUXSBOT 图标拖拽到 Applications 文件夹 3. 等待复制完成 **步骤 3:首次运行** ```bash # 方法 1:通过 Applications 打开 open /Applications/NEUXSBOT.app # 方法 2:如果提示"无法验证开发者" # 前往 系统设置 > 隐私与安全 > 允许打开 ``` **绕过安全检查:** 1. 右键点击 NEUXSBOT.app 2. 选择"打开" 3. 在弹出的对话框中点击"打开" ### 方法二:脚本安装 ```bash # 一键安装脚本 curl -fsSL https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.sh | bash ``` ### 方法三:Homebrew 安装(如可用) ```bash # 添加 tap(如果官方提供) brew tap openclaw/china # 安装 brew install --cask nexusbot ``` ### macOS 配置文件位置 ```bash # 配置文件 ~/.nexusbot/config.yaml # 日志文件 ~/.nexusbot/logs/ # 数据文件 ~/.nexusbot/data/ # 技能插件 ~/.nexusbot/skills/ ``` --- ## Windows 部署 ### 方法一:安装版(推荐) **步骤 1:下载安装包** ```powershell # 使用 PowerShell 下载 Invoke-WebRequest -Uri "https://github.com/Markovmodc...
# OpenClaw Deploy 部署指南 OpenClaw(NEUXSBOT)全平台部署指南,支持 **macOS、Windows、Linux** 三平台一键安装。 ## 🎯 支持平台 | 平台 | 安装方式 | 难度 | |------|----------|------| | **macOS** | DMG / 脚本 / Homebrew | ⭐ 简单 | | **Windows** | EXE / 脚本 / 绿色版 | ⭐ 简单 | | **Linux** | DEB / RPM / 脚本 / Docker | ⭐⭐ 中等 | ## 🚀 快速开始 ### macOS ```bash # 方法 1:DMG 安装 curl -LO https://github.com/Markovmodcn/openclaw-china/releases/latest/download/NEUXSBOT.dmg # 双击安装 # 方法 2:脚本安装 curl -fsSL https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.sh | bash ``` ### Windows ```powershell # 方法 1:下载安装包 # 访问 https://github.com/Markovmodcn/openclaw-china/releases/latest # 下载 NEUXSBOT-Setup.exe # 方法 2:PowerShell 脚本 iwr -useb https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.ps1 | iex ``` ### Linux ```bash # Ubuntu/Debian wget https://github.com/Markovmodcn/openclaw-china/releases/latest/download/nexusbot_amd64.deb sudo dpkg -i nexusbot_amd64.deb # 或一键脚本 curl -fsSL https://raw.githubusercontent.com/Markovmodcn/openclaw-china/main/scripts/install.sh | bash # 或 Docker docker run -d -p 3000:3000 markovmodcn/nexusbot:latest ``` ## 📖 完整文档 详见 [skill.md](skill.md) 获取完整部署指南。 ## 🎨 部署流程 ``` 1. 系统准备 → 2. 安装软件 → 3. 配置 AI → 4. 对接平台 → 5. 验证运行 ``` ## 🛠️ 包含内容 - ✅ 三平台详细安装步骤 - ✅ AI 模型配置(本地/在线) - ✅ 消息平台对接(钉钉/飞书/企微) - ✅ Docker 部署方案 - ✅ 故障排除指南 - ✅ 更新升级说明 ## 📚 参考 - [NEUXSBOT 官网](https://www.neuxsbot.com) - [OpenClaw China](https://github.com/Markovmodcn/openclaw-china) - [OpenClaw 文档](https://www.neuxsbot.com/docs) --- *让 AI 助手部署变得简单*
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.