合并 agent-mvp 到 master #1

Merged
jiang merged 282 commits from agent-mvp into master 2026-08-18 17:56:46 +08:00
Showing only changes of commit a3331691de - Show all commits
@@ -17,7 +17,8 @@ describe("burst detection request", () => {
sampling_interval_minutes: 15, sampling_interval_minutes: 15,
}); });
expect(state.detectionMode).toBe("latest"); expect(state.detectionMode).toBe("latest");
expect(state.targetTime?.minute() % 15).toBe(0); expect(state.targetTime).not.toBeNull();
expect(state.targetTime!.minute() % 15).toBe(0);
}); });
it("sends one target time for historical replay", () => { it("sends one target time for historical replay", () => {