docs|refactor: 规范 AGENTS.md 与 CLAUDE.md,引入 MicroCompactConfig 聚合结构#460
Merged
phantom5099 merged 5 commits into1024XEngineer:mainfrom Apr 25, 2026
Merged
docs|refactor: 规范 AGENTS.md 与 CLAUDE.md,引入 MicroCompactConfig 聚合结构#460phantom5099 merged 5 commits into1024XEngineer:mainfrom
phantom5099 merged 5 commits into1024XEngineer:mainfrom
Conversation
- 新增 MicroCompactConfig 结构体,将 MicroCompactPolicySource、 MicroCompactSummarizerSource、MicroCompactPinChecker 三个接口 打包为单一配置对象,简化 Builder 构造参数 - 新增 NewConfiguredBuilder 作为统一构造入口,支持可变 SectionSource - newPromptSources 改为接受 ...SectionSource 可变参数,nil 自动跳过 - 旧构造函数保留并标记 Deprecated,委托到新入口 - 更新 bootstrap.go 和 runtime.go 使用新构造 API - 补充 TestNewConfiguredBuilder 覆盖 5 个子场景 关联: 1024XEngineer#416
Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: Yumiue <188874804+Yumiue@users.noreply.github.com>
…egation refactor(context): simplify micro compact builder wiring
|
Codex usage limits have been reached for code reviews. Please check with the admins of this repo to increase the limits by adding credits. |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
| @@ -119,11 +126,17 @@ func applyReadTimeContextProjection( | |||
| summarizers MicroCompactSummarizerSource, | |||
There was a problem hiding this comment.
Checked this change path in detail (including projection cloning and micro-compact flow). No actionable issues found.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
变更摘要
本次 PR 包含两部分核心改动:
1. 文档规范化(AGENTS.md / CLAUDE.md)
解决原有文档中"模块职责描述过细、实现细节与持久规则混为一谈"的问题,避免未来架构调整时过时文档误导模型决策。
context负责 Task State/Todo State/Skills/Memo 等),替换为"模块边界原则"(每个模块一句话原则)+ 新增"架构原则"章节(分层隔离、能力入口收敛、状态集中等)。docs/对应文档)。2. Context Builder 重构(MicroCompactConfig)
MicroCompactConfig聚合结构,收敛 Builder 构造函数链,减少参数爆炸。builder_test.go测试覆盖,覆盖正常路径与边界条件。检查项
TUI -> Gateway -> Runtime -> Tools -> UI完整git status干净,无密钥或无关文件混入