fix(context-hook): remove Learned from Tier 2

Tier 2 should only show Request + Completed + Date, not Learned.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Alex Newman
2025-10-21 23:08:54 -04:00
parent 7b7a53ee19
commit a57aba82a4
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -134,8 +134,8 @@ export function contextHook(input?: SessionStartInput, useColors: boolean = fals
}
}
// TIER 1 & 2: Show Learned
if (summary.learned) {
// TIER 1 ONLY: Show Learned
if (isTier1 && summary.learned) {
if (useColors) {
output.push(`${colors.bright}${colors.blue}Learned:${colors.reset} ${summary.learned}`);
output.push('');