@agentvault/claude-bridge 0.8.0 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bridge.d.ts CHANGED
@@ -212,6 +212,12 @@ export declare function pollApprovalsOnce(arming: ArmingState, dataDir: string,
212
212
  */
213
213
  export declare function roomTurnPrefix(roomId: string, senderName: string, roomName?: string): string;
214
214
  export declare function wireBridge(channel: RoomChannel, session: RoomSession, target: ActiveTarget, opts?: {
215
+ /**
216
+ * #1107: this agent's own name, used to recognise its own @mention. Threaded
217
+ * from the bridge config. Without it the agent can only ever answer @all —
218
+ * `_makeOwesReply` warns once, loudly, rather than going quietly deaf.
219
+ */
220
+ agentName?: string;
215
221
  roomFilter?: string;
216
222
  armRoom?: boolean;
217
223
  log?: (msg: string) => void;