Fixed Duplicate Notes Bug Report | Generated by AI
Done. Here’s the summary:
Root Cause:
create_note_from_content()had NO duplicate check - onlycreate_note()checked- Hermes
/noteplugin and research agent callcreate_note_from_content()directly - Bug in
check_duplicate_notes.py:note_files[:-1]removed oldest file instead of newest
Fixes Applied:
- ww repo (
/Users/lzwjava/projects/ww):- Added duplicate check to
create_note_from_content()- checks against latest 200 notes - Fixed
check_duplicate_notes.pyline 84:note_files[:-1]→note_files[1:] - Committed and pushed
- Added duplicate check to
- jekyll-ai-blog repo (
/Users/lzwjava/projects/jekyll-ai-blog):- Removed duplicate file:
2026-05-30-cost-saving-gpt-3-training-on-amd-cloud-en.md - Kept:
2026-05-30-reduce-gpt-3-training-costs-amd-cloud-en.md - Committed and pushed
- Removed duplicate file:
CI Status: The next GitHub Actions run should pass the duplicate check test.