From cde5c637b4b7c20e3d8b44c379d9661c54ebdace Mon Sep 17 00:00:00 2001 From: arno Date: Fri, 5 Jun 2026 11:19:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3(ClaudeCode):=20=E8=A1=A5?= =?UTF-8?q?=E5=85=85=20memory=20=E9=85=8D=E7=BD=AE=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=E4=B8=8E=E6=96=87=E6=A1=A3=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新标题链接为英文文档并添加中文文档入口 - 新增 Claude Code memory 机制文档链接 - 添加 settings 配置示例(autoMemoryDirectory、CLAUDE_CODE_NO_FLICKER) --- 工程/ClaudeCode.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/工程/ClaudeCode.md b/工程/ClaudeCode.md index 8ed471e..ff5ad62 100644 --- a/工程/ClaudeCode.md +++ b/工程/ClaudeCode.md @@ -1,7 +1,8 @@ -# [Claude Code](https://code.claude.com/docs/zh-CN/quickstart) +# [Claude Code](https://code.claude.com/docs/en/overview) [中文](https://code.claude.com/docs/zh-CN/quickstart) - Info - [Claude Code Changelog](https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md) + - [How Claude remembers your project](https://code.claude.com/docs/en/memory) - [GLM-5](https://docs.bigmodel.cn/cn/guide/models/text/glm-5-turbo) - [Claude Code GitHub](https://github.com/anthropics/claude-code) - [Claude Code Plugins Directory](https://github.com/anthropics/claude-plugins-official.git) @@ -198,3 +199,17 @@ npx skills add https://github.com/larksuite/cli -y -g # 然后通过以下命令配置应用 lark-cli config init --new ``` + +## settings + +- autoMemoryDirectory 必须以 '~' 或者 绝对路径 开始 + +```json +{ + "env": { + "CLAUDE_CODE_NO_FLICKER": "0" + }, + "autoMemoryEnabled": true, + "autoMemoryDirectory": "~/.claude/memory" +} +```