my harness for niri
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove source from memory query

-1
-1
src/memory.ts
··· 616 616 function memoryQueryToString(parts: MemoryQueryParts): string { 617 617 const pieces = [ 618 618 parts.sender ? `@${parts.sender}` : null, 619 - parts.source, 620 619 parts.body || null, 621 620 ].filter((value): value is string => Boolean(value && value.trim())) 622 621 return pieces.join("\n")