rename: handler -> agent framework; plugin -> tool

rename: handler -> agent framework; plugin -> tool

lint

refactor: more rename

further rename
This commit is contained in:
lin onetwo 2025-11-27 15:33:30 +08:00 committed by GitHub
parent 8963527b41
commit 8a84d9b468
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
60 changed files with 1382 additions and 1368 deletions

View file

@ -105,7 +105,7 @@ export async function registerMenu(): Promise<void> {
dir: activeWorkspace.wikiFolderLocation,
commitOnly: false,
commitMessage: i18n.t('LOG.CommitBackupMessage'),
remoteUrl: activeWorkspace.gitUrl,
remoteUrl: activeWorkspace.gitUrl ?? undefined,
userInfo,
});
}
@ -127,7 +127,7 @@ export async function registerMenu(): Promise<void> {
dir: activeWorkspace.wikiFolderLocation,
commitOnly: false,
// Don't provide commitMessage to trigger AI generation
remoteUrl: activeWorkspace.gitUrl,
remoteUrl: activeWorkspace.gitUrl ?? undefined,
userInfo,
});
}
@ -151,7 +151,7 @@ export async function registerMenu(): Promise<void> {
dir: activeWorkspace.wikiFolderLocation,
commitOnly: false,
commitMessage: i18n.t('LOG.CommitBackupMessage'),
remoteUrl: activeWorkspace.gitUrl,
remoteUrl: activeWorkspace.gitUrl ?? undefined,
userInfo,
});
}