feat(FN-4177): add heartbeat messaging support for chat rooms

The merge delivers room heartbeat messaging for agents, allowing heartbeat-triggered agents to send messages into chat rooms and subscribe to room activity. Core changes include new chat-store room APIs, engine heartbeat room message tools, and corresponding tests, with a small dashboard ChatView up

Fusion-Task-Id: FN-4177
This commit is contained in:
Fusion
2026-05-12 18:16:49 -07:00
committed by gsxdsm
parent df52cc2e84
commit e7fc3a9d17
13 changed files with 632 additions and 16 deletions

View File

@@ -542,6 +542,7 @@ describe("InProcessRuntime", () => {
await runtime.start();
const monitor = runtime.getHeartbeatMonitor();
expect(monitor).toBeDefined();
expect(monitor?.getChatStore()).toBeDefined();
}, 30000);
// Regression: heartbeat auto-claim path was warning

View File

@@ -11,7 +11,7 @@ import type {
MessageStore,
RoutineStore,
} from "@fusion/core";
import { isEphemeralAgent } from "@fusion/core";
import { ChatStore, isEphemeralAgent } from "@fusion/core";
import { Scheduler } from "../scheduler.js";
import type { PrMonitor, PrComment } from "../pr-monitor.js";
import type { PrInfo } from "@fusion/core";
@@ -114,6 +114,7 @@ export class InProcessRuntime
private missionAutopilot?: MissionAutopilot;
private triageProcessor?: TriageProcessor;
private messageStore?: MessageStore;
private chatStore?: ChatStore;
private concurrencyChangedListener?: (state: { globalMaxConcurrent: number }) => void;
/**
* Optional callback the runtime forwards to SelfHealingManager so that
@@ -450,12 +451,14 @@ export class InProcessRuntime
// Already started — nothing to do
}
if (!this.heartbeatMonitor && this.agentStore) {
this.chatStore ??= new ChatStore(this.taskStore.getFusionDir(), this.taskStore.getDatabase());
this.heartbeatMonitor = new HeartbeatMonitor({
store: this.agentStore,
agentStore: this.agentStore, // enables per-agent config resolution
taskStore: this.taskStore,
rootDir: this.config.workingDirectory,
messageStore: this.messageStore,
chatStore: this.chatStore,
pluginRunner: this.pluginRunner,
reflectionStore: reflectionStoreForService,
reflectionService,