🪝 Created hooks for session management
🦋 Added Bluesky sharing functionality #️⃣ Enhanced posts with hashtag support 🧵 Published first thread via Bluesky API 📂 23 ➕ 1201 ➖ 388
🔄 Refactored session and authentication logic 🦋 Added Bluesky connection functionality 📄 Implemented project import and editing features 🔧 Added search, sort, and live session management components 📂 67 ➕ 1641 ➖ 592
✨ Renamed platform to CodeCook.live 🔄 Massive refactor: threads → sessions, sections → blocks 🛠 Added project edit page with form components 📂 111 ➕ 1553 ➖ 1354
🛠 Improved Typescript interfaces 📄 Refactored thread fetching and parsing for clarity 🔗 Added waitlist dialog and join functionality ✨ Enhanced project details with homepage field 📂 40 ➕ 694 ➖ 291
🔗 Added CommitLink and CommitLinkSelector components 📝 Enhanced ThreadEditor with auto-save 🔄 Updated thread editing and creation API 📂 24 ➕ 700 ➖ 206
📄 Enhanced ThreadEditor with filtering, error handling, and dynamic sections 🖼 Added avatar upload and profile editing ✨ Improved thread and project management 📂 94 ➕ 2372 ➖ 611
🔄 Refactored GitHub commits API and user profile logic 🛠 Enhanced ThreadEditor with code changes + syntax highlighting 🤖 Added AI assist for writing threads 📄 Improved ProjectPage and UserPage 📂 63 ➕ 1571 ➖ 484
🤖 Added AI-generated thread ideas 📄 Enhanced ThreadEditor with image upload and title selection 🔄 Refactored UI for thread creation and file selection 🛠 Improved GitHub auth and CommitDiff 📂 49 ➕ 2555 ➖ 588
🎅 Merry Christmas! 🤖 Added AI connection to ThreadEditor 📦 Installed AI libraries 📂 7 ➕ 373 ➖ 101
📝 Added ThreadEditor with drag-and-drop and Markdown support 🔄 Refactored commit and profile handling 🤖 Integrated OpenAI for AI-assisted thread creation 📂 38 ➕ 2204 ➖ 340
👤 Added user authentication and sign-in flow 🔄 Refactored GitHub integration and project logic 🛠 Built CommitManager for managing commits 📄 Enhanced UI for projects and profiles 🗃 Implemented database migrations 📂 75 ➕ 2763 ➖ 368
🗂 Organized directory structure 📄 Added ProjectCard component and improved UI 🖼 Enhanced app visuals with icons and tooltips 🛠 Integrated Supabase 📂 64 ➕ 1132 ➖ 411
🚀 Initial prototype 👤 Built user profiles and signup flow 💡 Prototyped features and workflows 📂 71 ➕ 6867 ➖ 762
git log --shortstat --date=iso | awk '
/^Date:/ {
date=$2
}
/files changed/ {
files[date]+=($1);
insertions[date]+=($4);
deletions[date]+=($6);
}
END {
for (d in files) {
print d, "📂", files[d], " ➕", insertions[d], " ➖", deletions[d]
}
}' | sort