Skip to content

Commit 1ce37f9

Browse files
Claudeclaude
authored andcommitted
fix: clarify gitmem log header to "most recent learnings"
Replaces opaque "10 entries" with "10 most recent learnings" so users understand what the output represents without needing prior context. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7d98224 commit 1ce37f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/log.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export interface LogResult {
6464

6565
function buildLogDisplay(entries: LogEntry[], total: number, filters: LogResult["filters"]): string {
6666
const lines: string[] = [];
67-
lines.push(`gitmem log · ${total} entries · ${filters.project}`);
67+
lines.push(`gitmem log · ${total} most recent learnings · ${filters.project}`);
6868
const fp: string[] = [];
6969
if (filters.learning_type) fp.push(`type=${filters.learning_type}`);
7070
if (filters.severity) fp.push(`severity=${filters.severity}`);

0 commit comments

Comments
 (0)