diff --git a/website/downloads/agent-mac-intel b/website/downloads/agent-mac-intel deleted file mode 100755 index a188221..0000000 Binary files a/website/downloads/agent-mac-intel and /dev/null differ diff --git a/website/privacy.html b/website/privacy.html deleted file mode 100644 index dd09147..0000000 --- a/website/privacy.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - -隐私政策 - 虾盘云 - - - - -
-

隐私政策

-

最后更新日期:2025年1月1日

- -

火火的(深圳)科技有限公司(以下简称"我们")非常重视用户的隐私保护。本隐私政策说明我们如何收集、使用和保护您的个人信息。

- -

一、我们收集的信息

-

在您使用虾盘云服务时,我们可能收集以下信息:

- - -

二、信息使用目的

-

我们收集的信息仅用于以下目的:

- - -

三、信息保护

-

我们采取以下措施保护您的个人信息:

- - -

四、信息共享

-

以下情况除外,我们不会向第三方共享您的个人信息:

- - -

五、Cookie使用

-

我们的网站可能使用Cookie来改善您的浏览体验。您可以通过浏览器设置拒绝Cookie,但这可能影响部分功能的使用。

- -

六、未成年人保护

-

本服务不面向18岁以下未成年人。如果我们发现收集了未成年人的个人信息,将立即删除相关数据。

- -

七、您的权利

-

您有权:

- - -

八、隐私政策更新

-

我们可能不定期更新本隐私政策。更新后将在本页面公布,重大变更将通过微信客服通知您。

- -

九、联系我们

-

如您对本隐私政策有任何疑问,请联系:

- -
- - - diff --git a/website/terms.html b/website/terms.html deleted file mode 100644 index 10abf93..0000000 --- a/website/terms.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - -用户服务协议 - 虾盘云 - - - - -
-

用户服务协议

-

最后更新日期:2025年1月1日

- -

欢迎使用虾盘云AI API服务(以下简称"本服务")。本协议由您与火火的(深圳)科技有限公司(以下简称"我们")签订,请您在使用本服务前仔细阅读本协议。

- -

一、服务内容

-

虾盘云为用户提供AI大模型API中转接入服务,包括但不限于DeepSeek、通义千问等主流AI模型的API调用能力。用户通过充值获得相应Token额度,按实际使用量扣减。

- -

二、账户与充值

- - -

三、使用规范

-

用户在使用本服务时,须遵守以下规范:

- - -

四、服务可用性

-

我们承诺尽力保障服务稳定性,目标可用率为99.9%。因上游AI服务商维护、不可抗力等原因导致的服务中断,我们不承担责任,但会及时通知用户并协助处理。

- -

五、知识产权

-

本服务的技术架构、界面设计、品牌标识等知识产权归火火的(深圳)科技有限公司所有。用户通过API生成的内容,其知识产权归用户所有。

- -

六、隐私保护

-

我们重视用户隐私,具体隐私保护措施请参阅《隐私政策》

- -

七、免责声明

- - -

八、协议变更

-

我们有权根据业务需要修改本协议,修改后将在本页面公布。您继续使用本服务即视为同意修改后的协议。

- -

九、联系方式

-

如有任何疑问,请通过以下方式联系我们:

- -
- - - diff --git a/website/uninstall.ps1 b/website/uninstall.ps1 deleted file mode 100644 index b80691e..0000000 --- a/website/uninstall.ps1 +++ /dev/null @@ -1,69 +0,0 @@ -# ============================================================ -# U-Claw 一键卸载 (Windows PowerShell) -# Usage: irm https://u-claw.org/uninstall.ps1 | iex -# ============================================================ - -$ErrorActionPreference = "SilentlyContinue" -$UclawDir = "$env:USERPROFILE\.uclaw" -$AgentDir = "$env:TEMP\uclaw" - -Write-Host "" -Write-Host " ==========================================" -ForegroundColor Cyan -Write-Host " U-Claw 一键卸载" -ForegroundColor Cyan -Write-Host " ==========================================" -ForegroundColor Cyan -Write-Host "" - -# 1. Stop OpenClaw / Node processes in .uclaw -$nodeProcs = Get-Process -Name "node" -ErrorAction SilentlyContinue | Where-Object { - $_.Path -like "*\.uclaw\*" -} -if ($nodeProcs) { - Write-Host " [1/3] 停止 OpenClaw 进程..." -ForegroundColor Yellow - $nodeProcs | Stop-Process -Force -ErrorAction SilentlyContinue - Start-Sleep -Seconds 1 - Write-Host " [OK] 已停止" -ForegroundColor Green -} else { - Write-Host " [1/3] OpenClaw 未在运行" -ForegroundColor Gray -} - -# 2. Stop Agent -$agentProcs = Get-Process -Name "agent" -ErrorAction SilentlyContinue | Where-Object { - $_.Path -like "*uclaw*" -} -if ($agentProcs) { - Write-Host " [2/3] 停止 Agent 进程..." -ForegroundColor Yellow - $agentProcs | Stop-Process -Force -ErrorAction SilentlyContinue - Start-Sleep -Seconds 1 - Write-Host " [OK] 已停止" -ForegroundColor Green -} else { - Write-Host " [2/3] Agent 未在运行" -ForegroundColor Gray -} - -# 3. Remove files -Write-Host " [3/3] 清理文件..." -ForegroundColor Yellow -$removed = $false - -if (Test-Path $UclawDir) { - Remove-Item -Recurse -Force $UclawDir -ErrorAction SilentlyContinue - Write-Host " [OK] 已删除 $UclawDir" -ForegroundColor Green - $removed = $true -} - -if (Test-Path $AgentDir) { - Remove-Item -Recurse -Force $AgentDir -ErrorAction SilentlyContinue - Write-Host " [OK] 已删除 $AgentDir" -ForegroundColor Green - $removed = $true -} - -if (-not $removed) { - Write-Host " [OK] 没有找到需要清理的文件" -ForegroundColor Gray -} - -Write-Host "" -Write-Host " ==========================================" -ForegroundColor Cyan -Write-Host " 卸载完成!已彻底清理。" -ForegroundColor Green -Write-Host " ==========================================" -ForegroundColor Cyan -Write-Host "" -Write-Host " 想重装?运行:" -ForegroundColor Gray -Write-Host " irm https://u-claw.org/install.ps1 | iex" -ForegroundColor White -Write-Host "" diff --git a/website/uninstall.sh b/website/uninstall.sh deleted file mode 100644 index 99c4a71..0000000 --- a/website/uninstall.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash -# ============================================================ -# U-Claw 一键卸载 (macOS / Linux) -# Usage: curl -fsSL https://u-claw.org/uninstall.sh | bash -# ============================================================ - -UCLAW_DIR="$HOME/.uclaw" -AGENT_DIR="/tmp/uclaw" - -echo "" -echo " ==========================================" -echo " U-Claw 一键卸载" -echo " ==========================================" -echo "" - -# 1. Stop OpenClaw -if pgrep -f openclaw >/dev/null 2>&1; then - echo " [1/3] 停止 OpenClaw 进程..." - pkill -f openclaw 2>/dev/null || true - sleep 1 - echo " [OK] 已停止" -else - echo " [1/3] OpenClaw 未在运行" -fi - -# 2. Stop Agent (if running) -if pgrep -f "$AGENT_DIR/agent" >/dev/null 2>&1; then - echo " [2/3] 停止 Agent 进程..." - pkill -f "$AGENT_DIR/agent" 2>/dev/null || true - sleep 1 - echo " [OK] 已停止" -else - echo " [2/3] Agent 未在运行" -fi - -# 3. Remove files -echo " [3/3] 清理文件..." -REMOVED="" - -if [ -d "$UCLAW_DIR" ]; then - rm -rf "$UCLAW_DIR" - REMOVED="$REMOVED ~/.uclaw" - echo " [OK] 已删除 ~/.uclaw" -fi - -if [ -d "$AGENT_DIR" ]; then - rm -rf "$AGENT_DIR" - REMOVED="$REMOVED /tmp/uclaw" - echo " [OK] 已删除 /tmp/uclaw" -fi - -if [ -z "$REMOVED" ]; then - echo " [OK] 没有找到需要清理的文件" -fi - -echo "" -echo " ==========================================" -echo " 卸载完成!已彻底清理。" -echo " ==========================================" -echo "" -echo " 想重装?运行:" -echo " curl -fsSL https://u-claw.org/install.sh | bash" -echo ""