fix: 会话摘要包含用户 prompt + 更新 CLAUDE.md + 升级 SDK - #25
Merged
Conversation
1. saveSummary 从只保存 output 末尾改为 `用户: <prompt> | 回复: <output>` 2. CLAUDE.md 更新:vitest 已配置、新增模块描述、Agent SDK Gotchas 3. SDK 升级 0.2.42 → 0.2.45 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Claude finished @lishuceo's task in 2m 49s —— View job Code Review for PR #25
✅ Approved — Clean, focused PR with no issues found. Changes reviewed:
Assessment: The summary format change is a good improvement — including the user prompt gives the agent cross-thread context it previously lacked. The total summary length is bounded (date prefix + dir + 200 char prompt + 300 char tail ≈ ~600 chars max), which is reasonable. Both call sites apply the identical logic, keeping behavior consistent. No bugs, security issues, or architectural concerns. |
lishuceo
added a commit
that referenced
this pull request
Apr 8, 2026
1. saveSummary 从只保存 output 末尾改为 `用户: <prompt> | 回复: <output>` 2. CLAUDE.md 更新:vitest 已配置、新增模块描述、Agent SDK Gotchas 3. SDK 升级 0.2.42 → 0.2.45 Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
用户: <prompt前200字> | 回复: <output末300字>,修复 agent 跨 thread 时不知道用户之前问了什么的问题Test plan
🤖 Generated with Claude Code