feat(cli): implement passive activity logger for session analysis (#15829)

This commit is contained in:
Sandy Tao
2026-01-11 21:22:49 +08:00
committed by GitHub
parent b9762a3ee1
commit 39b3f20a22
5 changed files with 402 additions and 1 deletions

View File

@@ -42,9 +42,10 @@ vi.mock('./ui/hooks/atCommandProcessor.js');
const mockCoreEvents = vi.hoisted(() => ({
on: vi.fn(),
off: vi.fn(),
drainBacklogs: vi.fn(),
emit: vi.fn(),
emitConsoleLog: vi.fn(),
emitFeedback: vi.fn(),
drainBacklogs: vi.fn(),
}));
vi.mock('@google/gemini-cli-core', async (importOriginal) => {