From d5f372f77a00997fc6b295ef1345b154b6245317 Mon Sep 17 00:00:00 2001 From: dongsheng123132 <90887123+dongsheng123132@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:25:31 +0800 Subject: [PATCH] fix: add uninstall.ps1, restore privacy.html and terms.html - uninstall.ps1: Windows one-click uninstall script (was 404) - privacy.html & terms.html: restore from server (were missing on Vercel) --- website/privacy.html | 94 +++++++++++++++++++++++++++++++++++++++++++ website/terms.html | 84 ++++++++++++++++++++++++++++++++++++++ website/uninstall.ps1 | 69 +++++++++++++++++++++++++++++++ 3 files changed, 247 insertions(+) create mode 100644 website/privacy.html create mode 100644 website/terms.html create mode 100644 website/uninstall.ps1 diff --git a/website/privacy.html b/website/privacy.html new file mode 100644 index 0000000..dd09147 --- /dev/null +++ b/website/privacy.html @@ -0,0 +1,94 @@ + + + + + +隐私政策 - 虾盘云 + + + + +
+

隐私政策

+

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

+ +

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

+ +

一、我们收集的信息

+

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

+ + +

二、信息使用目的

+

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

+ + +

三、信息保护

+

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

+ + +

四、信息共享

+

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

+ + +

五、Cookie使用

+

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

+ +

六、未成年人保护

+

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

+ +

七、您的权利

+

您有权:

+ + +

八、隐私政策更新

+

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

+ +

九、联系我们

+

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

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

用户服务协议

+

最后更新日期: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 new file mode 100644 index 0000000..b80691e --- /dev/null +++ b/website/uninstall.ps1 @@ -0,0 +1,69 @@ +# ============================================================ +# 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 ""