vault backup: 2026-04-14 23:49:17

This commit is contained in:
2026-04-14 23:49:17 +08:00
parent 95edf1b089
commit 54f9731647
3 changed files with 106 additions and 16 deletions

View File

@@ -158,3 +158,18 @@ graphify trae-cn uninstall
| httpx合成 Python 库) | 6 | ~1x | [`worked/httpx/`](worked/httpx/) |
Token 压缩效果会随着语料规模增大而更明显。6 个文件本来就塞得进上下文窗口,所以 graphify 在这种场景里的价值更多是结构清晰度,而不是 token 压缩。到了 52 个文件(代码 + 论文 + 图片)这种规模,就能做到 71x+。每个 `worked/` 目录里都带了原始输入和真实输出(`GRAPH_REPORT.md``graph.json`),你可以自己跑一遍核对数字。
# 针对UE开发的使用方式
### 具体的实施路线图
1. **安装 Graphify 并配置 ClaudeCode 技能:** 在你的项目根目录运行:
```
graphify install # 自动向 CLAUDE.md 注入架构索引规则
/graphify . # 生成初始代码图
```
2. **编写 `CLAUDE.md` 引导:** 在项目根目录创建或修改 `CLAUDE.md`
> **Architecture Context:** Always read `graphify-out/GRAPH_REPORT.md` before answering architecture questions. **UE Standards:** Follow Unreal Engine 5.x coding standards (PascalCase, U-Prefixes).
3. **开发 MCP 插件:** 如果你有能力,实现一个简单的 MCP Server能够通过命令行搜索 UE 的 `Reflection Database`
### 总结建议
- **如果你追求立即理解代码逻辑:** 优先配置 **Graphify**。它能让 Claude 从“逐行看代码”进化到“看地图写代码”。
- **如果你在进行长期复杂的特性开发:** 引入 **Graphiti** 作为 Claude 的“开发日志”,防止它忘记你之前的架构决策。