mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-16 13:03:31 +08:00
- Set up VitePress with bilingual support (Chinese root + English /en/) - Create unified sidebar navigation with all doc sections - Add custom Anthropic brand theme (#D97757) - Create Quick Start pages (zh/en) from README content - Migrate 7 .en.md files to docs/en/ directory structure - Translate memory/agent/skills docs to English (9 files) - Generate English-only architecture diagrams (11 images via PicTactic) - Copy English-ready images for agent/skills sections (21 images) - Configure custom domain (claudecodehaha.relakkesyang.org) - Localize Chinese UI labels (sidebar, outline, footer) - Add documentation site badge to READMEs - Fix dead links and update cross-references for VitePress Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
65 lines
1.3 KiB
Markdown
65 lines
1.3 KiB
Markdown
# 快速开始
|
||
|
||
## 1. 安装 Bun
|
||
|
||
```bash
|
||
# macOS / Linux
|
||
curl -fsSL https://bun.sh/install | bash
|
||
|
||
# macOS (Homebrew)
|
||
brew install bun
|
||
|
||
# Windows (PowerShell)
|
||
powershell -c "irm bun.sh/install.ps1 | iex"
|
||
```
|
||
|
||
> 精简版 Linux 如提示 `unzip is required`,先运行 `apt update && apt install -y unzip`
|
||
|
||
## 2. 安装依赖并配置
|
||
|
||
```bash
|
||
bun install
|
||
cp .env.example .env
|
||
# 编辑 .env 填入你的 API Key,详见「环境变量」文档
|
||
```
|
||
|
||
环境变量的完整说明请参考 [环境变量配置](./env-vars.md)。
|
||
|
||
## 3. 启动
|
||
|
||
### macOS / Linux
|
||
|
||
```bash
|
||
./bin/claude-haha # 交互 TUI 模式
|
||
./bin/claude-haha -p "your prompt here" # 无头模式
|
||
./bin/claude-haha --help # 查看所有选项
|
||
```
|
||
|
||
### Windows
|
||
|
||
> **前置要求**:必须安装 [Git for Windows](https://git-scm.com/download/win)
|
||
|
||
```powershell
|
||
# PowerShell / cmd 直接调用 Bun
|
||
bun --env-file=.env ./src/entrypoints/cli.tsx
|
||
|
||
# 或在 Git Bash 中运行
|
||
./bin/claude-haha
|
||
```
|
||
|
||
## 4. 全局使用(可选)
|
||
|
||
将 `bin/` 加入 PATH 后可在任意目录启动,详见 [全局使用指南](./global-usage.md):
|
||
|
||
```bash
|
||
export PATH="$HOME/path/to/claude-code-haha/bin:$PATH"
|
||
```
|
||
|
||
## 5. 降级模式
|
||
|
||
如果 Ink TUI 出现问题,可以使用降级 Recovery CLI 模式:
|
||
|
||
```bash
|
||
CLAUDE_CODE_FORCE_RECOVERY_CLI=1 ./bin/claude-haha
|
||
```
|