commit d1c4d99df341ec20db6998f1aea8aa6648ba0072 Author: 卡若 Date: Wed Apr 15 16:06:34 2026 +0800 Initial commit: 龙虾U盘站点与 README Made-with: Cursor diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eda77f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +._* diff --git a/README.md b/README.md new file mode 100644 index 0000000..4a37db2 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# 龙虾 U 盘 · 介绍站(本地静态) + +本目录用于存放 **SimpleAi 龙虾** 对外介绍与交付物,与 [pocketclaw.cn](https://pocketclaw.cn/) 信息架构对齐,品牌与链接已切换为 **玩值 / simpleai.quwanzhi.com**,视觉为 **卡若展厅风**(卡罗拉红标 `#bb0a21`)。 + +## 目录结构 + +``` +龙虾u盘/ +├── README.md # 本说明 +└── site/ # 静态站点(可整包部署到任意静态托管) + ├── index.html # 首页 + ├── features.html # 特色 + ├── guide.html # 使用方法 + ├── hardware.html # 硬件要求 + ├── api-tutorial.html + ├── faq.html + ├── download.html + └── assets/ + └── style.css # 全局样式 +``` + +## 本地预览 + +双击 `site/index.html` 或用本地静态服务器打开 `site/` 目录即可。 + +## 品牌与联系 + +- **产品名**:SimpleAi(龙虾 U 盘) +- **官网 / 下载**:https://simpleai.quwanzhi.com +- **技术方案与私域交付**:存客宝(玩值体系) +- 原站中的公众号、抖音等个人联系方式已 **不** 在此站展示;统一收口到官网。 + +## 说明 + +- 参考原站公开文案结构重写,非镜像爬取;原站 `og-image` 请求返回 404,故未打包外链截图,装饰以 CSS + 内联 SVG 为主。 +- 开源致谢:OpenClaw(MIT)。 diff --git a/site/api-tutorial.html b/site/api-tutorial.html new file mode 100644 index 0000000..1d58bf5 --- /dev/null +++ b/site/api-tutorial.html @@ -0,0 +1,64 @@ + + + + + + API 教程 — SimpleAi 龙虾 + + + + + +
+
+

API

+

如何获取与填写 API Key

+

SimpleAi 使用 OpenAI 兼容协议;向导中可选择不同提供商,以下为常用路径。

+ +

方式一:龙虾U盘模型(推荐,玩值网关)

+

网关地址:https://simpleai.quwanzhi.com/v1。密钥与开通方式以 simpleai.quwanzhi.com 公示为准。

+
    +
  1. 打开官网,按指引注册 / 登录并获取 API Key。
  2. +
  3. 启动 SimpleAi 后选择「龙虾U盘模型」或等价项,粘贴 Key。
  4. +
  5. 模型列表以网关实际支持为准,可在菜单中切换。
  6. +
+ +

方式二:智谱 GLM(开放平台)

+

入口:bigmodel.cn;密钥页:usercenter/apikeys

+
    +
  1. 注册并登录 → 创建 API Key。
  2. +
  3. 在 SimpleAi 向导中选择智谱,粘贴 Key。
  4. +
  5. 免费档与额度规则以智谱官方为准。
  6. +
+ +
+ 提示:第三方模型服务的内容准确性、合规性与计费由其服务商负责;请自行评估业务场景与合规要求。 +
+
+
+ + + + diff --git a/site/assets/style.css b/site/assets/style.css new file mode 100644 index 0000000..6edf2d8 --- /dev/null +++ b/site/assets/style.css @@ -0,0 +1,260 @@ +/* SimpleAi 龙虾站 · 卡若展厅风(木果 M09a) */ +:root { + --ink: #1a1a1a; + --ink-soft: #3c3c3c; + --muted: #6b6b6b; + --line: #e8e8e6; + --paper: #fafaf8; + --card: #ffffff; + --accent: #bb0a21; + --accent-soft: rgba(187, 10, 33, 0.08); + --radius: 4px; + --shadow: 0 24px 80px rgba(0, 0, 0, 0.06); + --font: "Hiragino Sans GB", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif; +} + +*, *::before, *::after { box-sizing: border-box; } +html { scroll-behavior: smooth; } +body { + margin: 0; + font-family: var(--font); + color: var(--ink-soft); + background: var(--paper); + line-height: 1.65; + font-size: 16px; +} + +a { color: var(--accent); text-decoration: none; } +a:hover { text-decoration: underline; } + +.site-header { + position: sticky; + top: 0; + z-index: 50; + background: rgba(250, 250, 248, 0.92); + backdrop-filter: blur(8px); + border-bottom: 1px solid var(--line); +} +.site-header .inner { + max-width: 1120px; + margin: 0 auto; + padding: 14px 20px; + display: flex; + align-items: center; + justify-content: space-between; + flex-wrap: wrap; + gap: 12px; +} +.brand { + display: flex; + align-items: center; + gap: 10px; + font-weight: 700; + color: var(--ink); + font-size: 1.05rem; +} +.brand-mark { + width: 36px; + height: 36px; + border-radius: var(--radius); + background: var(--accent-soft); + border: 1px solid var(--line); + display: grid; + place-items: center; + font-size: 1.25rem; +} +nav ul { + margin: 0; + padding: 0; + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 6px 16px; +} +nav a { + color: var(--ink-soft); + font-size: 0.9rem; + font-weight: 500; +} +nav a:hover { color: var(--accent); } +nav a.active { color: var(--accent); font-weight: 600; } + +.hero { + background: linear-gradient(180deg, #f0f0ec 0%, var(--paper) 100%); + border-bottom: 1px solid var(--line); + padding: 48px 20px 56px; +} +.hero-inner { + max-width: 1120px; + margin: 0 auto; +} +.hero-kicker { + font-size: 0.72rem; + letter-spacing: 0.22em; + text-transform: uppercase; + color: var(--muted); + margin-bottom: 10px; +} +.hero h1 { + margin: 0 0 12px; + font-size: clamp(1.85rem, 4vw, 2.45rem); + color: var(--ink); + font-weight: 700; + line-height: 1.2; +} +.hero-lead { + font-size: 1.1rem; + color: var(--ink-soft); + max-width: 640px; + margin-bottom: 20px; +} +.pills { + display: flex; + flex-wrap: wrap; + gap: 8px; + margin: 20px 0 24px; +} +.pill { + font-size: 0.82rem; + padding: 6px 12px; + border-radius: 999px; + border: 1px solid var(--line); + background: var(--card); + color: var(--muted); +} +.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; } +.btn { + display: inline-block; + padding: 12px 22px; + border-radius: var(--radius); + font-weight: 600; + font-size: 0.95rem; + border: 1px solid var(--accent); + cursor: pointer; +} +.btn-primary { + background: var(--accent); + color: #fff; +} +.btn-primary:hover { filter: brightness(1.05); text-decoration: none; } +.btn-ghost { + background: var(--card); + color: var(--accent); +} +.btn-ghost:hover { background: var(--accent-soft); text-decoration: none; } + +.shell { max-width: 1120px; margin: 0 auto; padding: 36px 20px 48px; } + +.card { + background: var(--card); + border: 1px solid var(--line); + border-radius: var(--radius); + box-shadow: var(--shadow); + padding: 28px 28px 26px; + margin-bottom: 22px; +} +.sec-title { + font-size: 0.68rem; + letter-spacing: 0.18em; + text-transform: uppercase; + color: var(--muted); + margin: 0 0 6px; +} +h2 { + margin: 0 0 16px; + font-size: 1.35rem; + color: var(--ink); + padding-left: 12px; + border-left: 3px solid var(--accent); +} +h3 { margin: 22px 0 10px; font-size: 1.08rem; color: var(--ink); } +h4 { margin: 16px 0 8px; font-size: 1rem; color: var(--ink-soft); } + +.grid-2 { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); + gap: 18px; +} +.feature-tile { + border: 1px solid var(--line); + border-radius: var(--radius); + padding: 18px 18px 16px; + background: #fff; +} +.feature-tile .icon { + font-size: 1.6rem; + margin-bottom: 8px; +} +.feature-tile strong { display: block; color: var(--ink); margin-bottom: 6px; } + +.steps { + display: grid; + gap: 14px; +} +.step { + display: flex; + gap: 14px; + align-items: flex-start; + padding: 14px 16px; + border: 1px solid var(--line); + border-radius: var(--radius); + background: #fff; +} +.step-num { + flex-shrink: 0; + width: 32px; + height: 32px; + border-radius: 50%; + background: var(--accent); + color: #fff; + font-weight: 700; + font-size: 0.9rem; + display: grid; + place-items: center; +} + +details.faq-item { + border: 1px solid var(--line); + border-radius: var(--radius); + padding: 12px 16px; + background: #fff; + margin-bottom: 10px; +} +details.faq-item summary { + cursor: pointer; + font-weight: 600; + color: var(--ink); +} + +.callout { + border-left: 3px solid var(--accent); + padding: 12px 16px; + background: var(--accent-soft); + margin: 16px 0; + font-size: 0.92rem; +} +.callout.warn { border-left-color: #c45c26; background: rgba(196, 92, 38, 0.08); } + +ul.clean { margin: 8px 0; padding-left: 1.2rem; } +ul.clean li { margin: 6px 0; } + +.site-footer { + border-top: 1px solid var(--line); + padding: 28px 20px 36px; + background: #f3f3f0; + font-size: 0.88rem; + color: var(--muted); +} +.site-footer .inner { max-width: 1120px; margin: 0 auto; } +.site-footer strong { color: var(--ink-soft); } + +.hero-svg { + margin-top: 28px; + max-width: 520px; + opacity: 0.9; +} + +@media (max-width: 720px) { + .site-header .inner { flex-direction: column; align-items: flex-start; } + nav ul { gap: 8px 12px; } +} diff --git a/site/download.html b/site/download.html new file mode 100644 index 0000000..806fa88 --- /dev/null +++ b/site/download.html @@ -0,0 +1,51 @@ + + + + + + 下载 — SimpleAi 龙虾 + + + + + +
+
+

DOWNLOAD

+

下载与更新

+

正式发行包、版本号、version.json 与更新日志以官网为准(避免外链失效)。

+ +
+ 说明:首次解压拷贝到 U 盘后,首次启动可能需拉取 Docker 镜像(体积较大);程序内「检查更新」亦指向上述域名(以实际发布为准)。 +
+
+
+ + + + diff --git a/site/faq.html b/site/faq.html new file mode 100644 index 0000000..b53b1ba --- /dev/null +++ b/site/faq.html @@ -0,0 +1,79 @@ + + + + + + 常见问题 — SimpleAi 龙虾 + + + + + +
+
+

FAQ

+

常见问题

+ +
+ SimpleAi 龙虾本身是免费的吗? +

发行包与脚本开源底座遵循上游协议;云端模型 API是否收费由所选服务商决定。官网会说明当前推荐的免费/试用档与网关策略。

+
+
+ 需要会编程吗? +

不需要。按菜单与向导操作即可;进阶排错可参考 simpleai.quwanzhi.com 的 FAQ 与日志说明。

+
+
+ 支持哪些系统? +

主要支持 Windows 10 64 位及以上与 macOS 13+;同一 U 盘建议 exFAT 以便跨机使用。

+
+
+ 数据安全吗?U 盘丢了怎么办? +

敏感配置应加密存储;容器提供隔离。U 盘丢失仍有暴力破解风险,请使用强密码并定期备份。

+
+
+ 可以换模型吗? +

可以。在兼容 OpenAI API 的前提下,通过菜单切换提供商、Base URL 与模型名。

+
+
+ Docker 安装失败怎么办? +

多为网络或权限问题。可切换网络、配置镜像加速或按官网「排查指南」操作;仍失败请通过官网工单反馈日志要点(勿贴密钥)。

+
+
+ +
+

DISCLAIMER

+

免责声明

+
    +
  • SimpleAi 龙虾基于 OpenClaw(MIT)等开源组件封装,不包含第三方模型权重,仅提供调用接口的运行环境。
  • +
  • 模型输出由对应服务商提供,用户需自行判断合规与准确性。
  • +
  • 请妥善保管 API Key 与主密码;因泄露产生的损失由用户自行承担。
  • +
  • 禁止用于违法或侵权用途;商业使用请遵守许可与服务商条款。
  • +
+
+
+ + + + diff --git a/site/features.html b/site/features.html new file mode 100644 index 0000000..0045d2e --- /dev/null +++ b/site/features.html @@ -0,0 +1,66 @@ + + + + + + 特色 — SimpleAi 龙虾 + + + + + +
+
+

FEATURES

+

四大特色

+

与「装在 U 盘里跑 AI」这一形态对齐:少折腾、可带走、可加密、可换模型。

+
+
+
🚀
+ 零技术门槛 + 双击 SimpleAi.bat / SimpleAi.command,全中文菜单与向导。Docker、WSL2 等按脚本策略自动安装,无需手写命令行。 +
+
+
🌐
+ 模型与网关灵活 + 默认推荐 龙虾U盘模型 网关(https://simpleai.quwanzhi.com/v1,OpenAI 兼容);亦可选用智谱、DeepSeek 等兼容端点。 +
+
+
💾
+ 极其便携 + 配置、加密文件与工作区在 U 盘目录内;换电脑插上继续用(建议 U 盘 exFAT)。 +
+
+
🛡️
+ 安全加密 + 敏感配置加密存储 + 容器隔离;请妥善保管主密码与 API Key。 +
+
+
+
+ + + + diff --git a/site/guide.html b/site/guide.html new file mode 100644 index 0000000..1866546 --- /dev/null +++ b/site/guide.html @@ -0,0 +1,54 @@ + + + + + + 使用方法 — SimpleAi 龙虾 + + + + + +
+
+

HOW TO

+

怎么开始用?

+

五步搞定;后续日常启动以菜单「启动」为主,一般数十秒级(视本机是否已构建镜像而定)。

+
+
1
下载并解压到 U 盘
获取发行包后,将 SimpleAi 文件夹置于 U 盘;根目录可放置 SimpleAi配置向导.html 便于图形化预填。
+
2
双击启动
Windows:SimpleAi\SimpleAi.bat 或插盘菜单 SimpleAi\Windows插盘启动.bat;macOS:SimpleAi.command
+
3
自动准备 Docker 环境
首次可能下载镜像与依赖,请保持网络畅通;失败时见 FAQ 与官网排查。
+
4
填写 API Key 与密码
按脚本向导选择提供商、粘贴 Key、设置加密密码。
+
5
浏览器打开对话
启动成功后按菜单提示的本地地址打开(含 token 的 URL)。
+
+
+ Windows 插盘提示:若系统自动播放被禁用,请手动进入 U 盘运行 SimpleAi\Windows插盘启动.bat,可选「网页向导在前」或「控制台菜单」。 +
+
+
+ + + + diff --git a/site/hardware.html b/site/hardware.html new file mode 100644 index 0000000..7f1bb4b --- /dev/null +++ b/site/hardware.html @@ -0,0 +1,58 @@ + + + + + + 硬件要求 — SimpleAi 龙虾 + + + + + +
+
+

REQUIREMENTS

+

硬件要求

+

U 盘

+
    +
  • 容量:最低 8GB,推荐 16GB 及以上
  • +
  • 接口:USB 3.0 及以上更佳(2.0 可用但更慢)
  • +
  • 文件系统:推荐 exFAT(Windows / macOS 通用)
  • +
  • 发行包体积较小;Docker 镜像与缓存可能占用数 GB
  • +
+

电脑

+
    +
  • 系统:Windows 10 64 位及以上 / macOS 13+
  • +
  • CPU:支持虚拟化(VT-x / AMD-V)
  • +
  • 内存:最低 4GB,推荐 8GB 及以上
  • +
  • 磁盘:为 Docker 与镜像预留约 5GB 可用空间(建议更多)
  • +
  • 网络:调用云端 API 时需持续联网(本地模型方案除外)
  • +
+
+
+ + + + diff --git a/site/index.html b/site/index.html new file mode 100644 index 0000000..2c8c4ff --- /dev/null +++ b/site/index.html @@ -0,0 +1,110 @@ + + + + + + SimpleAi 龙虾 — 装在 U 盘里的私人 AI 助手 + + + + + + +
+
+

SIMPLEAI · LOBSTER USB

+

SimpleAi 龙虾
装在 U 盘里的私人 AI 助手

+

零基础、全中文引导;Docker / WSL2 等环境按需自动安装。配置与数据在 U 盘,拔掉不留痕。推荐网关:龙虾U盘模型(OpenAI 兼容)。

+
+ 零基础 + 便携 + 加密存储 + 开源底座 + Windows / macOS +
+ + +
+
+ +
+ + +
+ 开源说明:SimpleAi 龙虾基于 OpenClaw(MIT)二次封装;本体不含模型权重,仅提供调用兼容 API 的容器与脚本。 +
+
+ + + +