mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-16 21:10:40 -07:00
feat(core): add background memory service for skill extraction (#24274)
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user