1
0
Fork 0
mirror of https://github.com/imjasonh/cnotes synced 2026-07-12 10:51:20 +00:00

Implement proper deduplication using last event timestamp tracking

This commit is contained in:
Jason Hall 2025-07-21 14:51:00 -04:00
parent 2cc9c8c00d
commit 3cfe51703e
Failed to extract signature
4 changed files with 41 additions and 20 deletions

View file

@ -17,6 +17,7 @@ type ConversationNote struct {
ToolsUsed []string `json:"tools_used"`
CommitContext string `json:"commit_context"`
ClaudeVersion string `json:"claude_version"`
LastEventTime time.Time `json:"last_event_time,omitempty"` // Track last processed event to avoid duplicates
}
// NotesManager handles git notes operations for Claude conversations