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

@@ -143,6 +143,10 @@ export class Storage {
return path.join(this.getProjectTempDir(), 'checkpoints');
}
getProjectTempLogsDir(): string {
return path.join(this.getProjectTempDir(), 'logs');
}
getExtensionsDir(): string {
return path.join(this.getGeminiDir(), 'extensions');
}