You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) and other AI coding
4
4
5
5
## Project Overview
6
6
7
-
This is a **reverse-engineered / decompiled** version of Anthropic's official Claude Code CLI tool. The goal is to restore core functionality while trimming secondary capabilities. Many modules are stubbed or feature-flagged off. TypeScript strict mode is enforced — **`bunx tsc --noEmit` must pass with zero errors**.
7
+
This is a **reverse-engineered / decompiled** version of Anthropic's official Claude Code CLI tool. The goal is to restore core functionality while trimming secondary capabilities. Many modules are stubbed or feature-flagged off. TypeScript strict mode is enforced — **`bun run precheck` 必须零错误通过**(包含 typecheck + lint fix + test)。
8
8
9
9
## Git Commit Message Convention
10
10
@@ -47,7 +47,7 @@ bun test # run all tests
47
47
bun test src/utils/__tests__/hash.test.ts # run single file
48
48
bun test --coverage # with coverage report
49
49
50
-
# Lint & Format (Biome)
50
+
# Lint & Format (Biome) — 日常开发用 precheck 代替单独调用
51
51
bun run lint # lint check (全项目)
52
52
bun run lint:fix # auto-fix lint issues
53
53
bun run format # format all (全项目)
@@ -60,7 +60,7 @@ bun run health
60
60
# Check unused exports
61
61
bun run check:unused
62
62
63
-
# Full check (typecheck + lint fix + test) — run after completing any task
0 commit comments