feat(core): add background memory service for skill extraction (#24274)

This commit is contained in:
Sandy Tao
2026-04-01 22:05:31 -07:00
committed by GitHub
parent 72a6cbed5f
commit 7e608beca7
8 changed files with 1761 additions and 1 deletions
+8
View File
@@ -271,6 +271,14 @@ export class Storage {
return path.join(Storage.getGlobalGeminiDir(), 'memory', identifier);
}
getProjectMemoryTempDir(): string {
return path.join(this.getProjectTempDir(), 'memory');
}
getProjectSkillsMemoryDir(): string {
return path.join(this.getProjectMemoryTempDir(), 'skills');
}
getWorkspaceSettingsPath(): string {
return path.join(this.getGeminiDir(), 'settings.json');
}