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
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,21 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
6
6
7
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**.
8
8
9
+
## Git Commit Message Convention
10
+
11
+
使用 **Conventional Commits** 规范:
12
+
13
+
```
14
+
<type>: <描述>
15
+
```
16
+
17
+
常见 type:`feat`、`fix`、`docs`、`chore`、`refactor`
18
+
19
+
示例:
20
+
-`feat: 添加模型 1M 上下文切换`
21
+
-`fix: 修复初次登陆的校验问题`
22
+
-`chore: remove prefetchOfficialMcpUrls call on startup`
0 commit comments