System Status: Elite Core Active

AI COMMAND HUB

极客专属的跨平台 AI 工具与大模型速查控制台 / 自动化执行引擎

OpenClaw 🌐

开源自托管 AI 助手,支持多模型、多通道、插件扩展。

🌐 网页端 (WEB)
http://127.0.0.1:18789/health'
📦 安装 (INSTALL)
chcp 65001 ; npm install -g openclaw
🚀 启动 (LAUNCH)
chcp 65001 ; powershell -NoProfile -Command "Start-Process -WindowStyle Hidden -FilePath 'cmd.exe' -ArgumentList '/c','openclaw gateway run --auth none --port 18789 --force' ; for ($i=0; $i -lt 60; $i++) { try { $r = Invoke-WebRequest -UseBasicParsing -TimeoutSec 2 -Uri 'http://127.0.0.1:18789/health' ; if ($r.StatusCode -eq 200 -and $r.Content -like '*"ok":true*') { break } } catch {} ; Start-Sleep -Milliseconds 500 } ; $url = ((openclaw dashboard --no-open --yes) 2>&1 | Select-String -Pattern 'Dashboard URL:\s*(\S+)' | ForEach-Object { $_.Matches[0].Groups[1].Value } | Select-Object -First 1) ; if (-not $url) { $url = 'http://127.0.0.1:18789/' } ; Start-Process $url"
🔧 修复 (REPAIR)
chcp 65001 ; npm install -g openclaw@latest --force
🛑 停止 (STOP)
chcp 65001 ; powershell -NoProfile -Command "Get-NetTCPConnection -LocalPort 18789 -ErrorAction SilentlyContinue | ForEach-Object { Stop-Process -Id $_.OwningProcess -Force -ErrorAction SilentlyContinue } ; Get-Process -Name openclaw,node -ErrorAction SilentlyContinue | Where-Object { $_.CommandLine -like '*openclaw*' } | Stop-Process -Force -ErrorAction SilentlyContinue"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Hermes Agent 🌐

具备自我学习闭环的智能体。

🌐 网页端 (WEB)
Web Interface
📦 安装 (INSTALL)
chcp 65001 ; $hermesDir = Join-Path $env:LOCALAPPDATA 'hermes\hermes-agent' ; if (-not (Test-Path $hermesDir)) { git clone https://github.com/NousResearch/hermes-agent.git $hermesDir } ; if (Test-Path "$hermesDir\pyproject.toml") { Set-Location -Path $hermesDir ; if (-not (Test-Path 'hermes-env')) { uv venv hermes-env --python cpython-3.12 } ; .\hermes-env\Scripts\activate ; uv pip install -e . ; Write-Host '✅ Hermes Agent 安装成功!' -ForegroundColor Green } else { Write-Host '❌ 克隆失败,请检查网络连接' -ForegroundColor Red }
🚀 启动 (LAUNCH)
chcp 65001 ; $hermesDir = Join-Path $env:LOCALAPPDATA 'hermes\hermes-agent' ; if (Test-Path "$hermesDir\hermes-env\Scripts\hermes.exe") { Set-Location -Path $hermesDir ; .\hermes-env\Scripts\activate ; hermes } elseif (Test-Path "$hermesDir\cli.py") { Set-Location -Path $hermesDir ; if (Test-Path 'hermes-env\Scripts\activate') { .\hermes-env\Scripts\activate } ; python cli.py } else { Write-Host '❌ Hermes 未安装。请先点击【安装】按钮。' -ForegroundColor Red }
🔧 修复 (REPAIR)
chcp 65001 ; $hermesDir = Join-Path $env:LOCALAPPDATA 'hermes\hermes-agent' ; if (Test-Path "$hermesDir\pyproject.toml") { Set-Location -Path $hermesDir ; git pull ; if (-not (Test-Path 'hermes-env')) { uv venv hermes-env --python cpython-3.12 } ; .\hermes-env\Scripts\activate ; uv pip install -e . --upgrade --reinstall ; Write-Host '✅ Hermes Agent 修复完成!' -ForegroundColor Green } else { git clone https://github.com/NousResearch/hermes-agent.git $hermesDir ; if (Test-Path "$hermesDir\pyproject.toml") { Set-Location -Path $hermesDir ; uv venv hermes-env --python cpython-3.12 ; .\hermes-env\Scripts\activate ; uv pip install -e . ; Write-Host '✅ Hermes Agent 重新安装成功!' -ForegroundColor Green } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Hermes*" ; taskkill /F /T /FI "WINDOWTITLE eq AICmdHubExec_hermes*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Antigravity 🌐

强大的本地 AI 开发平台。

📦 安装 (INSTALL)
chcp 65001 ; winget install Antigravity.Official
🚀 启动 (LAUNCH)
chcp 65001 ; antigravity start
🔧 修复 (REPAIR)
chcp 65001 ; antigravity repair ; winget upgrade Antigravity.Official --force
🛑 停止 (STOP)
antigravity stop ; taskkill /F /T /FI "WINDOWTITLE eq Antigravity*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Claude Code 🌐

Anthropic 官方终端程序员。

📦 安装 (INSTALL)
chcp 65001 ; npm install -g @anthropic-ai/claude-code ; Copy-Item -Path $env:APPDATA/npm/node_modules/@anthropic-ai/claude-code/node_modules/@anthropic-ai/claude-code-win32-x64/claude.exe -Destination $env:APPDATA/npm/node_modules/@anthropic-ai/claude-code/bin/claude.exe -Force -ErrorAction SilentlyContinue
🚀 启动 (LAUNCH)
chcp 65001 ; $sPath = Join-Path $env:USERPROFILE '.claude/settings.json' ; if (Test-Path $sPath) { $sj = Get-Content $sPath -Raw -Encoding UTF8 | ConvertFrom-Json ; if ($sj.env) { $sj.env.PSObject.Properties | ForEach-Object { [Environment]::SetEnvironmentVariable($_.Name, [string]$_.Value, 'Process') ; if ($_.Name -eq 'ANTHROPIC_AUTH_TOKEN') { [Environment]::SetEnvironmentVariable('ANTHROPIC_API_KEY', [string]$_.Value, 'Process') } } } } ; claude
🔧 修复 (REPAIR)
chcp 65001 ; npm install -g @anthropic-ai/claude-code@latest --force ; Copy-Item -Path $env:APPDATA/npm/node_modules/@anthropic-ai/claude-code/node_modules/@anthropic-ai/claude-code-win32-x64/claude.exe -Destination $env:APPDATA/npm/node_modules/@anthropic-ai/claude-code/bin/claude.exe -Force -ErrorAction SilentlyContinue
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Claude Code*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

OpenCode 🌐

强大的终端原生 AI 编程智能体,支持连接本地及云端各类大模型。

📦 安装 (INSTALL)
chcp 65001 ; npm install -g opencode-ai
🚀 启动 (LAUNCH)
chcp 65001 ; opencode
🔧 修复 (REPAIR)
chcp 65001 ; npm install -g opencode-ai@latest --force
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq OpenCode*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Open Codex 🌐

纯本地运行的命令行编程助手。

📦 安装 (INSTALL)
chcp 65001 ; winget install OpenCodex.CLI
🚀 启动 (LAUNCH)
chcp 65001 ; open-codex start --interactive
🔧 修复 (REPAIR)
chcp 65001 ; winget upgrade OpenCodex.CLI --force
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Open Codex*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Open WebUI 🌐

最强大的本地 AI 聊天界面。

🌐 网页端 (WEB)
http://localhost:13000
📦 安装 (INSTALL)
chcp 65001 ; docker run -d -p 13000:8080 --name open-webui openwebui/open-webui:main
🚀 启动 (LAUNCH)
chcp 65001 ; docker start open-webui ; start http://localhost:13000
🔧 修复 (REPAIR)
chcp 65001 ; docker stop open-webui ; docker rm open-webui ; docker run -d -p 13000:8080 --name open-webui openwebui/open-webui:main
🛑 停止 (STOP)
docker stop open-webui
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Flowise 🌐

最受欢迎的开源自托管可视化 LangChain AI 工作流与智能体构建平台。

🌐 网页端 (WEB)
http://localhost:3002
📦 安装 (INSTALL)
chcp 65001 ; npm install -g flowise
🚀 启动 (LAUNCH)
chcp 65001 ; start /B flowise start --port 3002 ; start http://localhost:3002
🔧 修复 (REPAIR)
chcp 65001 ; npm install -g flowise@latest --force
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Flowise*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

n8n 🌐

开源自动化工作流引擎。

📦 安装 (INSTALL)
chcp 65001 ; docker run -d --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n docker.n8n.io/n8nio/n8n
🚀 启动 (LAUNCH)
chcp 65001 ; docker start n8n ; start http://localhost:5678
🔧 修复 (REPAIR)
chcp 65001 ; docker pull docker.n8n.io/n8nio/n8n ; docker restart n8n
🛑 停止 (STOP)
docker stop n8n
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Ollama 🌐

本地大模型运行器。

📦 安装 (INSTALL)
chcp 65001 ; winget install Ollama.Ollama
🚀 启动 (LAUNCH)
chcp 65001 ; start ollama serve ; ollama run deepseek-r1:7b
🔧 修复 (REPAIR)
chcp 65001 ; winget upgrade Ollama.Ollama --force
🛑 停止 (STOP)
taskkill /F /IM ollama.exe ; taskkill /F /T /FI "WINDOWTITLE eq Ollama*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Dify 🇨🇳

国产开源 LLM 应用开发平台。

🌐 网页端 (WEB)
http://localhost
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/langgenius/dify.git ; if (Test-Path "$ORIGIN_CWD/dify/docker") { Set-Location -Path "$ORIGIN_CWD/dify/docker" ; cp .env.example .env }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/dify/docker") { Set-Location -Path "$ORIGIN_CWD/dify/docker" ; docker compose up -d ; start http://localhost }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/dify/docker") { Set-Location -Path "$ORIGIN_CWD/dify/docker" ; docker compose pull ; docker compose up -d } else { git clone https://github.com/langgenius/dify.git ; if (Test-Path "$ORIGIN_CWD/dify/docker") { Set-Location -Path "$ORIGIN_CWD/dify/docker" ; cp .env.example .env ; docker compose up -d } }
🛑 停止 (STOP)
if (Test-Path "$ORIGIN_CWD/dify/docker") { Set-Location -Path "$ORIGIN_CWD/dify/docker" ; docker compose stop }
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

FastGPT 🇨🇳

国产开源知识库问答系统。

🌐 网页端 (WEB)
http://localhost:3000
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/labring/FastGPT.git ; if (Test-Path "$ORIGIN_CWD/FastGPT/projects/app") { Set-Location -Path "$ORIGIN_CWD/FastGPT/projects/app" }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/FastGPT/projects/app") { Set-Location -Path "$ORIGIN_CWD/FastGPT/projects/app" ; docker compose up -d ; start http://localhost:3000 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/FastGPT/projects/app") { Set-Location -Path "$ORIGIN_CWD/FastGPT/projects/app" ; docker compose pull ; docker compose up -d } else { git clone https://github.com/labring/FastGPT.git ; if (Test-Path "$ORIGIN_CWD/FastGPT/projects/app") { Set-Location -Path "$ORIGIN_CWD/FastGPT/projects/app" ; docker compose up -d } }
🛑 停止 (STOP)
if (Test-Path "$ORIGIN_CWD/FastGPT/projects/app") { Set-Location -Path "$ORIGIN_CWD/FastGPT/projects/app" ; docker compose stop }
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Aider 🌐

结对编程 AI。

📦 安装 (INSTALL)
chcp 65001 ; pip install aider-chat
🚀 启动 (LAUNCH)
chcp 65001 ; aider
🔧 修复 (REPAIR)
chcp 65001 ; pip install aider-chat --upgrade --force-reinstall
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Aider*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Stable Diffusion WebUI 🌐

开源图像生成界面 (A1111)。

🌐 网页端 (WEB)
http://127.0.0.1:7860
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git ; if (Test-Path "$ORIGIN_CWD/stable-diffusion-webui") { Set-Location -Path "$ORIGIN_CWD/stable-diffusion-webui" ; ./webui-user.bat }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/stable-diffusion-webui") { Set-Location -Path "$ORIGIN_CWD/stable-diffusion-webui" ; start /B webui-user.bat ; start http://127.0.0.1:7860 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/stable-diffusion-webui") { Set-Location -Path "$ORIGIN_CWD/stable-diffusion-webui" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git ; if (Test-Path "$ORIGIN_CWD/stable-diffusion-webui") { Set-Location -Path "$ORIGIN_CWD/stable-diffusion-webui" ; ./webui-user.bat } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Stable Diffusion WebUI*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

ComfyUI 🌐

节点流 SD 界面。

🌐 网页端 (WEB)
http://127.0.0.1:8188
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/comfyanonymous/ComfyUI.git ; if (Test-Path "$ORIGIN_CWD/ComfyUI") { Set-Location -Path "$ORIGIN_CWD/ComfyUI" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ComfyUI") { Set-Location -Path "$ORIGIN_CWD/ComfyUI" ; start /B python main.py ; start http://127.0.0.1:8188 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ComfyUI") { Set-Location -Path "$ORIGIN_CWD/ComfyUI" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/comfyanonymous/ComfyUI.git ; if (Test-Path "$ORIGIN_CWD/ComfyUI") { Set-Location -Path "$ORIGIN_CWD/ComfyUI" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq ComfyUI*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Fooocus 🌐

极简且高质量的 SDXL 绘画界面。

🌐 网页端 (WEB)
http://127.0.0.1:7865
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/lllyasviel/Fooocus.git ; if (Test-Path "$ORIGIN_CWD/Fooocus") { Set-Location -Path "$ORIGIN_CWD/Fooocus" ; pip install -r requirements_versions.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Fooocus") { Set-Location -Path "$ORIGIN_CWD/Fooocus" ; start /B python entry_with_update.py ; start http://127.0.0.1:7865 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Fooocus") { Set-Location -Path "$ORIGIN_CWD/Fooocus" ; git pull ; pip install -r requirements_versions.txt --upgrade } else { git clone https://github.com/lllyasviel/Fooocus.git ; if (Test-Path "$ORIGIN_CWD/Fooocus") { Set-Location -Path "$ORIGIN_CWD/Fooocus" ; pip install -r requirements_versions.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Fooocus*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

HivisionIDPhotos 🇨🇳

国产 AI 证件照。

🌐 网页端 (WEB)
http://localhost:7860
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/Zeyi-Lin/HivisionIDPhotos.git ; if (Test-Path "$ORIGIN_CWD/HivisionIDPhotos") { Set-Location -Path "$ORIGIN_CWD/HivisionIDPhotos" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/HivisionIDPhotos") { Set-Location -Path "$ORIGIN_CWD/HivisionIDPhotos" ; start /B python app.py ; start http://localhost:7860 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/HivisionIDPhotos") { Set-Location -Path "$ORIGIN_CWD/HivisionIDPhotos" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/Zeyi-Lin/HivisionIDPhotos.git ; if (Test-Path "$ORIGIN_CWD/HivisionIDPhotos") { Set-Location -Path "$ORIGIN_CWD/HivisionIDPhotos" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq HivisionIDPhotos*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

GPT-SoVITS 🇨🇳

中日英 5 秒语音克隆。

🌐 网页端 (WEB)
http://127.0.0.1:9874
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/RVC-Boss/GPT-SoVITS.git ; if (Test-Path "$ORIGIN_CWD/GPT-SoVITS") { Set-Location -Path "$ORIGIN_CWD/GPT-SoVITS" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/GPT-SoVITS") { Set-Location -Path "$ORIGIN_CWD/GPT-SoVITS" ; start /B python webui.py ; start http://127.0.0.1:9874 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/GPT-SoVITS") { Set-Location -Path "$ORIGIN_CWD/GPT-SoVITS" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/RVC-Boss/GPT-SoVITS.git ; if (Test-Path "$ORIGIN_CWD/GPT-SoVITS") { Set-Location -Path "$ORIGIN_CWD/GPT-SoVITS" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq GPT-SoVITS*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

CosyVoice 🇨🇳

阿里开源顶尖语音生成。

🌐 网页端 (WEB)
http://127.0.0.1:8000
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/FunAudioLLM/CosyVoice.git ; if (Test-Path "$ORIGIN_CWD/CosyVoice") { Set-Location -Path "$ORIGIN_CWD/CosyVoice" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/CosyVoice") { Set-Location -Path "$ORIGIN_CWD/CosyVoice" ; start /B python webui.py ; start http://127.0.0.1:8000 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/CosyVoice") { Set-Location -Path "$ORIGIN_CWD/CosyVoice" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/FunAudioLLM/CosyVoice.git ; if (Test-Path "$ORIGIN_CWD/CosyVoice") { Set-Location -Path "$ORIGIN_CWD/CosyVoice" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq CosyVoice*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

FLUX.1 Dev 🌐

最强开源生图模型。

🌐 网页端 (WEB)
http://localhost:8188
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/black-forest-labs/flux.git ; if (Test-Path "$ORIGIN_CWD/flux") { Set-Location -Path "$ORIGIN_CWD/flux" ; pip install -e . }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/flux") { Set-Location -Path "$ORIGIN_CWD/flux" ; start /B python main.py --model-version dev ; start http://localhost:8188 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/flux") { Set-Location -Path "$ORIGIN_CWD/flux" ; git pull ; pip install -e . --upgrade } else { git clone https://github.com/black-forest-labs/flux.git ; if (Test-Path "$ORIGIN_CWD/flux") { Set-Location -Path "$ORIGIN_CWD/flux" ; pip install -e . } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq FLUX.1 Dev*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

LLaMA-Factory 🇨🇳

大模型全流程微调工具。

🌐 网页端 (WEB)
http://localhost:7860
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/hiyouga/LLaMA-Factory.git ; if (Test-Path "$ORIGIN_CWD/LLaMA-Factory/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/LLaMA-Factory" ; pip install -e .[metrics,modelscope,qwen] }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/LLaMA-Factory/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/LLaMA-Factory" ; start /B llamafactory-cli webui ; start http://localhost:7860 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/LLaMA-Factory/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/LLaMA-Factory" ; git pull ; pip install -e .[metrics,modelscope,qwen] --upgrade } else { git clone https://github.com/hiyouga/LLaMA-Factory.git ; if (Test-Path "$ORIGIN_CWD/LLaMA-Factory/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/LLaMA-Factory" ; pip install -e .[metrics,modelscope,qwen] } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq LLaMA-Factory*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

RAGFlow 🇨🇳

国产开源 RAG 引擎。

🌐 网页端 (WEB)
http://localhost:9380
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/infiniflow/ragflow.git ; if (Test-Path "$ORIGIN_CWD/ragflow/docker/docker-compose.yml") { Set-Location -Path "$ORIGIN_CWD/ragflow/docker" }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ragflow/docker/docker-compose.yml") { Set-Location -Path "$ORIGIN_CWD/ragflow/docker" ; docker compose up -d ; start http://localhost:9380 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ragflow/docker/docker-compose.yml") { Set-Location -Path "$ORIGIN_CWD/ragflow/docker" ; docker compose pull ; docker compose up -d } else { git clone https://github.com/infiniflow/ragflow.git ; if (Test-Path "$ORIGIN_CWD/ragflow/docker/docker-compose.yml") { Set-Location -Path "$ORIGIN_CWD/ragflow/docker" ; docker compose up -d } }
🛑 停止 (STOP)
if (Test-Path "$ORIGIN_CWD/ragflow/docker/docker-compose.yml") { Set-Location -Path "$ORIGIN_CWD/ragflow/docker" ; docker compose stop }
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

ChatTTS 🇨🇳

专为对话场景设计的文本转语音模型。

🌐 网页端 (WEB)
http://127.0.0.1:8080
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/2noise/ChatTTS.git ; if (Test-Path "$ORIGIN_CWD/ChatTTS/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/ChatTTS" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ChatTTS/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/ChatTTS" ; start /B python webui.py ; start http://127.0.0.1:8080 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/ChatTTS/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/ChatTTS" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/2noise/ChatTTS.git ; if (Test-Path "$ORIGIN_CWD/ChatTTS/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/ChatTTS" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq ChatTTS*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

RVC WebUI 🌐

最强大的变声与声音克隆框架。

🌐 网页端 (WEB)
http://127.0.0.1:7897
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git ; if (Test-Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI" ; start /B python infer-web.py ; start http://127.0.0.1:7897 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git ; if (Test-Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Retrieval-based-Voice-Conversion-WebUI" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq RVC WebUI*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Whisper WebUI 🌐

OpenAI Whisper 的图形化界面,用于高精度语音转写。

🌐 网页端 (WEB)
http://127.0.0.1:7860
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/jhj0517/Whisper-WebUI.git ; if (Test-Path "$ORIGIN_CWD/Whisper-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Whisper-WebUI" ; pip install -r requirements.txt }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Whisper-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Whisper-WebUI" ; start /B python app.py ; start http://127.0.0.1:7860 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/Whisper-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Whisper-WebUI" ; git pull ; pip install -r requirements.txt --upgrade } else { git clone https://github.com/jhj0517/Whisper-WebUI.git ; if (Test-Path "$ORIGIN_CWD/Whisper-WebUI/requirements.txt") { Set-Location -Path "$ORIGIN_CWD/Whisper-WebUI" ; pip install -r requirements.txt } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Whisper WebUI*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Bark 🌐

Suno AI 研发的极具表现力的文本到语音模型(支持笑声、叹息)。

📦 安装 (INSTALL)
chcp 65001 ; pip install git+https://github.com/suno-ai/bark.git
🚀 启动 (LAUNCH)
chcp 65001 ; python -m bark --text "Hello world"
🔧 修复 (REPAIR)
chcp 65001 ; pip install git+https://github.com/suno-ai/bark.git --upgrade
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq Bark*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

AnythingLLM 🌐

企业级私人 ChatGPT,可把任何文档转化为知识库。

🌐 网页端 (WEB)
http://localhost:3001
📦 安装 (INSTALL)
chcp 65001 ; docker pull mintplexlabs/anythingllm
🚀 启动 (LAUNCH)
chcp 65001 ; docker run -d -p 3001:3001 --name anythingllm mintplexlabs/anythingllm ; start http://localhost:3001
🔧 修复 (REPAIR)
chcp 65001 ; docker stop anythingllm ; docker rm anythingllm ; docker pull mintplexlabs/anythingllm
🛑 停止 (STOP)
docker stop anythingllm
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Cursor 🌐

最强大的 AI 原生代码编辑器。

📦 安装 (INSTALL)
chcp 65001 ; echo "请前往 cursor.sh 手动下载安装"
🚀 启动 (LAUNCH)
chcp 65001 ; cursor .
🔧 修复 (REPAIR)
chcp 65001 ; cursor --disable-extensions
🛑 停止 (STOP)
taskkill /F /IM cursor.exe
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Visual Studio Code 🌐

微软出品的开源代码编辑器。

📦 安装 (INSTALL)
🚀 启动 (LAUNCH)
code
🔧 修复 (REPAIR)
🛑 停止 (STOP)
taskkill /F /IM Code.exe

vLLM 🌐

极速、省显存的本地大模型推理与服务引擎,兼容 OpenAI API 协议。

📦 安装 (INSTALL)
chcp 65001 ; pip install vllm
🚀 启动 (LAUNCH)
chcp 65001 ; start /B python -m vllm.entrypoints.openai.api_server --model Qwen/Qwen2.5-1.5B-Instruct --port 8000 ; start http://localhost:8000/v1/models
🔧 修复 (REPAIR)
chcp 65001 ; pip install vllm --upgrade
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq vllm*" ; stop-process -name python -ErrorAction SilentlyContinue
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Stable Video Diffusion 🌐

Stability AI 推出的本地视频生成模型(图片转视频)。

🌐 网页端 (WEB)
http://localhost:8501
📦 安装 (INSTALL)
chcp 65001 ; git clone https://github.com/Stability-AI/generative-models.git ; if (Test-Path "$ORIGIN_CWD/generative-models/requirements/pt2.txt") { Set-Location -Path "$ORIGIN_CWD/generative-models" ; pip install -r requirements/pt2.txt ; pip install . }
🚀 启动 (LAUNCH)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/generative-models/README.md") { Set-Location -Path "$ORIGIN_CWD/generative-models" ; start /B python -m streamlit run scripts/demo/video_sampling.py ; start http://localhost:8501 }
🔧 修复 (REPAIR)
chcp 65001 ; if (Test-Path "$ORIGIN_CWD/generative-models/README.md") { Set-Location -Path "$ORIGIN_CWD/generative-models" ; git pull ; pip install -r requirements/pt2.txt --upgrade } else { git clone https://github.com/Stability-AI/generative-models.git ; if (Test-Path "$ORIGIN_CWD/generative-models/requirements/pt2.txt") { Set-Location -Path "$ORIGIN_CWD/generative-models" ; pip install -r requirements/pt2.txt ; pip install . } }
🛑 停止 (STOP)
taskkill /F /T /FI "WINDOWTITLE eq streamlit*"
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。

Coze (扣子) 🇨🇳

字节跳动推出的一站式 AI 智能体开发平台,支持快速创建 Chatbot 并部署。云端免安装运行。

🌐 网页端 (WEB)
https://www.coze.cn
📦 安装 (INSTALL)
chcp 65001 ; echo 'SaaS云端服务已就绪,无需本地安装'
🚀 启动 (LAUNCH)
chcp 65001 ; start https://www.coze.cn
🔧 修复 (REPAIR)
chcp 65001 ; echo 'SaaS云端服务已就绪,无需修复'
🛑 停止 (STOP)
chcp 65001 ; echo 'SaaS服务运行在云端,无需本地停止'
危险与维护区域 (DANGER ZONE)

此操作将彻底删除本地软件、容器或代码库的所有环境及相关数据。