mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 12:40:44 +00:00
feat: subagent phase 2 implementation
This commit is contained in:
parent
c49e4f6e8a
commit
5d8874205d
33 changed files with 2435 additions and 21 deletions
|
|
@ -51,6 +51,7 @@ export const useSlashCommandProcessor = (
|
|||
setQuittingMessages: (message: HistoryItem[]) => void,
|
||||
openPrivacyNotice: () => void,
|
||||
openSettingsDialog: () => void,
|
||||
openSubagentCreateDialog: () => void,
|
||||
toggleVimEnabled: () => Promise<boolean>,
|
||||
setIsProcessing: (isProcessing: boolean) => void,
|
||||
setGeminiMdFileCount: (count: number) => void,
|
||||
|
|
@ -379,6 +380,9 @@ export const useSlashCommandProcessor = (
|
|||
case 'settings':
|
||||
openSettingsDialog();
|
||||
return { type: 'handled' };
|
||||
case 'subagent_create':
|
||||
openSubagentCreateDialog();
|
||||
return { type: 'handled' };
|
||||
case 'help':
|
||||
return { type: 'handled' };
|
||||
default: {
|
||||
|
|
@ -553,6 +557,7 @@ export const useSlashCommandProcessor = (
|
|||
openEditorDialog,
|
||||
setQuittingMessages,
|
||||
openSettingsDialog,
|
||||
openSubagentCreateDialog,
|
||||
setShellConfirmationRequest,
|
||||
setSessionShellAllowlist,
|
||||
setIsProcessing,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue