We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13ec1ec commit d23b43aCopy full SHA for d23b43a
src/handler/workflowCommandHandler.ts
@@ -11,6 +11,7 @@ export interface Command {
11
description: string;
12
path: string;
13
args: number;
14
+ recommend: number;
15
handler: (commandName: string, userInput: string) => Promise<string>;
16
}
17
@@ -26,6 +27,7 @@ async function getCommandListByDevChatRun(includeHide: boolean = false): Promise
26
27
pattern: command.name,
28
description: command.description,
29
path: command.path,
30
+ recommend: command.recommend,
31
args: 0,
32
handler: async (commandName: string, userInput: string) => { return ''; }
33
};
0 commit comments