ISession

Interface representing a session within the swarm. Defines methods for message emission, execution, and state management.

commitUserMessage: (message: string, mode: ExecutionMode) => Promise<void>

Commits a user message to the session's history without triggering a response.

commitFlush: () => Promise<void>

Commits a flush operation to clear the session's agent history. Resets the history to an initial state.

commitStopTools: () => Promise<void>

Prevents the next tool in the execution sequence from running. Stops further tool calls within the session.

notify: (message: string) => Promise<void>

Sends a notification message to connect listeners via the internal _notifySubject. Logs the notification if debugging is enabled.

emit: (message: string) => Promise<void>

Emits a message to the session's communication channel.

run: (content: string) => Promise<string>

Runs a stateless completion without modifying the session's chat history. Useful for one-off computations or previews.

execute: (content: string, mode: ExecutionMode) => Promise<string>

Executes a command within the session, potentially updating history based on mode.

connect: (connector: SendMessageFn<void>, ...args: unknown[]) => ReceiveMessageFn<string>

Connects the session to a message sender and returns a receiver function. Establishes a bidirectional communication channel.

commitToolOutput: (toolId: string, content: string) => Promise<void>

Commits tool output to the session's history or state.

commitAssistantMessage: (message: string) => Promise<void>

Commits an assistant message to the session's history without triggering a response.

commitSystemMessage: (message: string) => Promise<void>

Commits a system message to the session's history or state.