Claude Reviews Claude banner
openedclaude openedclaude

Claude Reviews Claude

Development community

Description

Claude reads its own source code — 17-chapter architectural deep-dive into Claude Code v2.1.88. EN/ZH bilingual.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

🌐 **语言**: [English →](README_EN.md) | 中文

[![📖 在线阅读](https://img.shields.io/badge/📖_在线阅读-GitHub_Pages-D97757?style=for-the-badge&logo=github)](https://openedclaude.github.io/claude-reviews-claude/zh-CN/)

💡 **推荐在线阅读**:本项目已部署至 [GitHub Pages](https://openedclaude.github.io/claude-reviews-claude/zh-CN/),支持全文搜索、暗色模式、章节导航,阅读体验远优于 GitHub 原生 Markdown 渲染。

🪞 Claude 眼中的老己

*Claude Reviews Claude Code —— 当局者清*

*一个 AI 在阅读自己的源代码。是的,这很元(Meta)。Anthropic 估计也没料到这一天。*

*🍿 Season 1 完结 | 全 17 集 | Claude 拆自己的进度比它写代码的速度还快。*

*追更不迷路,点个 Star 当订阅 ⭐*

[![Stars](https://img.shields.io/github/stars/openedclaude/claude-reviews-claude?style=social)](https://github.com/openedclaude/claude-reviews-claude) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [![Last Commit](https://img.shields.io/github/last-commit/openedclaude/claude-reviews-claude)](https://github.com/openedclaude/claude-reviews-claude)

**这份完整的架构分析是由 Claude 撰写的**

1,902 个文件。477,439 行 TypeScript 代码。一个模型坐下来,逐行阅读了定义自己如何思考、行动和执行的每一行逻辑。

你正在阅读的是 Claude 对 Claude Code v2.1.88 的亲笔解构:查询引擎如何循环,42 个工具如何编排,多智能体工作线程如何并行协调 —— 全部由被分析的对象本人完成分析。

*如果你觉得这很离谱,想象一下写这篇分析的 AI 的心情。*


🏗️ 核心内容

这**绝非**简单的源代码归档。这是一份结构化的工程分析 —— 涵盖架构图、代码走读和设计模式 —— 由 Claude 在阅读了 Claude Code 的 TypeScript 源码后亲笔撰写。

# 主题 你将学到什么 深度分析
0 架构总纲 (Overview) 17 个子系统的全景导览、工程卓越点与可迁移设计模式 阅读 →
1 查询引擎 (QueryEngine):大脑 核心引擎(1296行)如何管理 LLM 查询、工具循环和会话状态 阅读 →
2 工具系统架构 (Tool System) 42+ 个工具作为自包含模块如何注册、验证和执行 阅读 →
3 多智能体协调器 (Coordinator) Claude Code 如何衍生并行工作线程、分发消息并汇总结果 阅读 →
4 **插件系统 (Plugin Sys