feat: initial conversational flow #37

Merged
talksik merged 39 commits from 33-conversational-flow-for-streams---story-mode into master 2026-03-19 23:29:41 +00:00
Showing only changes of commit 89dd30a081 - Show all commits
@@ -201,9 +201,6 @@ export function StreamView({ path, streamParticle }: StreamViewProps) {
updateStreamPlaybackMarker(streamDocPath, userId, currentParticle.created_at);
}, [currentParticle, path])
// Stream name from properties (narrowed to stream type)
const streamName = streamParticle.properties.name
// Author info from current particle
const authorEmail = currentParticle?.created_by_email ?? "";
const authorInitials = authorEmail.split("@")[0]?.slice(0, 2).toUpperCase() ?? "";