draft version of skill tool feature

This commit is contained in:
tanzhenxin 2025-12-10 17:18:44 +08:00
parent 5fddcd509c
commit bd6e16d41b
22 changed files with 1891 additions and 9 deletions

View file

@ -121,6 +121,10 @@ export class Storage {
return path.join(this.getExtensionsDir(), 'qwen-extension.json');
}
getUserSkillsDir(): string {
return path.join(Storage.getGlobalQwenDir(), 'skills');
}
getHistoryFilePath(): string {
return path.join(this.getProjectTempDir(), 'shell_history');
}