From 4426d38d651d4f26c433a2bf453c800c8787fc3c Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Tue, 26 May 2026 11:16:19 -0500 Subject: [PATCH] =?UTF-8?q?chore:=20remove=20unused=20website/=20=E2=80=94?= =?UTF-8?q?=20superseded=20by=20Next.js=20app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The static website/ HTML files were the original codewhale.net surface before the Next.js app under web/ took over. They have not been deployed in some time and are now mirrored in the new dedicated site repo (Hmbown/codewhalesites) only as far as history matters. Co-Authored-By: Claude Opus 4.7 (1M context) --- website/index.html | 568 ----------------------------------------- website/zh/index.html | 575 ------------------------------------------ 2 files changed, 1143 deletions(-) delete mode 100644 website/index.html delete mode 100644 website/zh/index.html diff --git a/website/index.html b/website/index.html deleted file mode 100644 index 8cbf59cb..00000000 --- a/website/index.html +++ /dev/null @@ -1,568 +0,0 @@ - - - - - - CodeWhale — The most agentic harness for DeepSeek V4 - - - - - - - -
- -
-
v0.8.45 available now
-

The most agentic harness
for DeepSeek V4

-

Rules, tools, evidence, and feedback loops that help the model keep working until the task is done. 1M-token context, thinking-mode streaming, OS-level sandboxing — single binary, zero dependencies.

- -
-
- - - - bash — zsh -
-
- $ - npm i -g codewhale - - -
-
- - -
- -
- DeepSeek TUI screenshot -
- -
-

How the harness works

-
-
-

Constitutional hierarchy

-

User intent outranks stale memory. Live evidence outranks assumptions. A clear chain of authority every turn.

-
-
-

Structured trust

-

Plan (read-only), Agent (approval-gated), YOLO (auto-approved). OS-level sandboxing backs every boundary.

-
-
-

Feedback beats

-

Failed commands and failing tests are not dead ends — they're signals the model can tune against, turn after turn.

-
-
-

Continuity

-

Memory persists across sessions. Handoffs survive compaction. Save, resume, and fork conversations.

-
-
-

Distributed work

-

Sub-agents run concurrently, up to 20 at a time. Results arrive as structured completion events.

-
-
-

Right-size intelligence

-

Fin handles routing and summaries. Pro engages for architecture and debugging. The right amount of intelligence for each problem.

-
-
-
- -
-

China / mirror-friendly install

-

If downloads from GitHub or npm are slow from mainland China, use one of these paths:

- -
- npm via 淘宝镜像 (fastest) -
npm config set registry https://registry.npmmirror.com
-npm install -g deepseek-tui
-

The npm wrapper itself will still download the binary from GitHub Releases during postinstall. If that step is slow, set a mirror for the binary download:

-
DEEPSEEK_TUI_RELEASE_BASE_URL=https://your-mirror.example.com \
-  npm install -g deepseek-tui
-
- -
- Cargo via 清华 TUNA mirror -

Add to ~/.cargo/config.toml:

-
[source.crates-io]
-replace-with = "tuna"
-
-[source.tuna]
-registry = "sparse+https://mirrors.tuna.tsinghua.edu.cn/crates.io-index/"
-

Then install both binaries:

-
cargo install deepseek-tui-cli --locked   # provides `deepseek`
-cargo install deepseek-tui     --locked   # provides `deepseek-tui`
-deepseek --version
-
- -
- Rustup mirror (for building from source) -
export RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup
-export RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
- -

Full platform guide: docs/INSTALL.md · 简体中文 README

-
- -
- - - - - - - diff --git a/website/zh/index.html b/website/zh/index.html deleted file mode 100644 index 363ba492..00000000 --- a/website/zh/index.html +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - CodeWhale — DeepSeek V4 的最强智能体运行框架 - - - - - - - -
- -
-
v0.8.45 现已发布
-

面向 DeepSeek V4
的最强智能体运行框架

-

规则、工具、证据和反馈循环——帮助模型持续工作直到任务完成。100 万 token 上下文、思考模式流式推理、OS 级沙箱——单一二进制,零依赖。

- -
-
- - - - bash — zsh -
-
- $ - npm i -g codewhale - - -
-
- - -
- -
- DeepSeek TUI 截图 -
- -
-

框架如何工作

-
-
-

宪政层级

-

用户意图优先于陈旧记忆。实时证据优先于假设。每一轮都有清晰的权威链。

-
-
-

结构化信任

-

Plan(只读)、Agent(审批门控)、YOLO(自动批准)。OS 级沙箱支撑每一个边界。

-
-
-

反馈节拍

-

失败的命令和失败的测试不是死胡同——它们是模型可以逐轮调谐的信号。

-
-
-

连续性

-

记忆跨会话持久化。交接在压缩后仍然存活。会话可保存、恢复和分叉。

-
-
-

分布式工作

-

子智能体并发运行,一次最多 20 个。结果以结构化完成事件形式到达。

-
-
-

适度智能

-

Fin 处理路由和摘要,Pro 负责架构和调试。每个问题匹配恰当的智能量。

-
-
-
- -
-

中国大陆镜像安装指南

-

如果从 GitHub 或 npm 下载较慢,请按以下方式选择最适合你的安装路径:

- -
- npm + 淘宝镜像(推荐,最简单) -

设置 npm 镜像后全局安装:

-
npm config set registry https://registry.npmmirror.com
-npm install -g deepseek-tui
-

npm 包在安装时会通过 postinstall 从 GitHub Releases 下载对应平台的二进制文件。如果这一步也很慢,可以设置二进制下载镜像地址:

-
DEEPSEEK_TUI_RELEASE_BASE_URL=https://your-mirror.example.com \
-  npm install -g deepseek-tui
-
- -
- Cargo + 清华 TUNA 镜像 -

~/.cargo/config.toml 中添加镜像配置:

-
[source.crates-io]
-replace-with = "tuna"
-
-[source.tuna]
-registry = "sparse+https://mirrors.tuna.tsinghua.edu.cn/crates.io-index/"
-

然后安装两个二进制文件(调度器在运行时会自动调用 TUI):

-
cargo install deepseek-tui-cli --locked   # 提供入口命令 deepseek
-cargo install deepseek-tui     --locked   # 提供交互式 TUI 二进制
-deepseek --version
-
- -
- 从源码构建(Rustup 镜像) -

如果还没有安装 Rust,先通过清华镜像安装 rustup:

-
export RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup
-export RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup
-curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-

配置 Cargo 镜像后从源码构建:

-
git clone https://github.com/Hmbown/CodeWhale.git
-cd CodeWhale
-cargo install --path crates/cli --locked
-cargo install --path crates/tui --locked
-
- -
- 手动下载预编译二进制 -

直接从 GitHub Releases 下载对应平台的二进制文件,放到 PATH 目录即可:

-
mkdir -p ~/.local/bin
-curl -L -o ~/.local/bin/deepseek \
-  https://github.com/Hmbown/CodeWhale/releases/latest/download/deepseek-linux-x64
-curl -L -o ~/.local/bin/deepseek-tui \
-  https://github.com/Hmbown/CodeWhale/releases/latest/download/deepseek-tui-linux-x64
-chmod +x ~/.local/bin/deepseek ~/.local/bin/deepseek-tui
-

macOS 用户将 linux-x64 替换为 macos-arm64macos-x64,并将 sha256sum 替换为 shasum -a 256

-
- -

完整平台安装指南:docs/INSTALL.md · 简体中文 README

-
- -
- - - - - - -