mirror of
https://github.com/NanmiCoder/cc-haha.git
synced 2026-05-06 15:20:26 +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>
967 B
967 B
Fixes Compared with the Original Leaked Source
The leaked source could not run directly. This repository mainly fixes the following issues:
| Issue | Root cause | Fix |
|---|---|---|
| TUI does not start | The entry script routed no-argument startup to the recovery CLI | Restored the full cli.tsx entry |
| Startup hangs | The verify skill imports a missing .md file, causing Bun's text loader to hang indefinitely |
Added stub .md files |
--print hangs |
filePersistence/types.ts was missing |
Added type stub files |
--print hangs |
ultraplan/prompt.txt was missing |
Added resource stub files |
| Enter key does nothing | The modifiers-napi native package was missing, isModifierPressed() threw, handleEnter was interrupted, and onSubmit never ran |
Added try/catch fault tolerance |
| Setup was skipped | preload.ts automatically set LOCAL_RECOVERY=1, skipping all initialization |
Removed the default setting |