Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ app.post(
finalText = `renamed the chat to "${renameChat}" 😎`;
}

// If Claude used remember_user without text, just log it - no automatic acknowledgments
// Claude should write its own response if it wants to acknowledge learning something
if (!finalText && rememberedUser) {
console.log(`[main] Claude saved user info without text response (no auto-ack)`);
// If Claude used remember_user without text and no reaction, send a thumbs up to acknowledge
if (!finalText && rememberedUser && !reaction) {
console.log(`[main] Claude saved user info without text response, sending thumbs up`);
await sendReaction(messageId, { type: 'like' });
}

if (finalText || generatedImage || groupChatIcon) {
Expand Down