Revert "fix(channels): pre-subscribe group threads for pattern / accumulate wirings"

This reverts commit 73b20880ff.
This commit is contained in:
gavrielc
2026-04-20 10:35:33 +03:00
parent 73b20880ff
commit 57e0cda9e5
3 changed files with 22 additions and 101 deletions

View File

@@ -22,13 +22,6 @@ export interface ConversationConfig {
engageMode: 'pattern' | 'mention' | 'mention-sticky';
/** Regex source when engageMode='pattern'. '.' is the "always" sentinel. */
engagePattern?: string | null;
/**
* What to do with non-engaging messages. Projected from the wiring so the
* adapter can decide whether to pre-subscribe to group threads — `accumulate`
* means "store everything as context even when not engaging", which requires
* seeing every message in the thread.
*/
ignoredMessagePolicy?: 'drop' | 'accumulate';
sessionMode: 'shared' | 'per-thread' | 'agent-shared';
}