@@ -62,7 +62,8 @@ export class ChatSlashCommandsContribution extends Disposable {
6262 sortText : 'z3_hooks' ,
6363 executeImmediately : true ,
6464 silent : true ,
65- locations : [ ChatAgentLocation . Chat ]
65+ locations : [ ChatAgentLocation . Chat ] ,
66+ target : Target . VSCode
6667 } , async ( ) => {
6768 await instantiationService . invokeFunction ( showConfigureHooksQuickPick ) ;
6869 } ) ) ;
@@ -72,7 +73,8 @@ export class ChatSlashCommandsContribution extends Disposable {
7273 sortText : 'z3_models' ,
7374 executeImmediately : true ,
7475 silent : true ,
75- locations : [ ChatAgentLocation . Chat ]
76+ locations : [ ChatAgentLocation . Chat ] ,
77+ target : Target . VSCode
7678 } , async ( ) => {
7779 await commandService . executeCommand ( OpenModelPickerAction . ID ) ;
7880 } ) ) ;
@@ -103,7 +105,8 @@ export class ChatSlashCommandsContribution extends Disposable {
103105 sortText : 'z3_agents' ,
104106 executeImmediately : true ,
105107 silent : true ,
106- locations : [ ChatAgentLocation . Chat ]
108+ locations : [ ChatAgentLocation . Chat ] ,
109+ target : Target . VSCode
107110 } , async ( ) => {
108111 await commandService . executeCommand ( OpenModePickerAction . ID ) ;
109112 } ) ) ;
@@ -113,7 +116,8 @@ export class ChatSlashCommandsContribution extends Disposable {
113116 sortText : 'z3_skills' ,
114117 executeImmediately : true ,
115118 silent : true ,
116- locations : [ ChatAgentLocation . Chat ]
119+ locations : [ ChatAgentLocation . Chat ] ,
120+ target : Target . VSCode
117121 } , async ( ) => {
118122 await commandService . executeCommand ( CONFIGURE_SKILLS_ACTION_ID ) ;
119123 } ) ) ;
@@ -123,7 +127,8 @@ export class ChatSlashCommandsContribution extends Disposable {
123127 sortText : 'z3_instructions' ,
124128 executeImmediately : true ,
125129 silent : true ,
126- locations : [ ChatAgentLocation . Chat ]
130+ locations : [ ChatAgentLocation . Chat ] ,
131+ target : Target . VSCode
127132 } , async ( ) => {
128133 await commandService . executeCommand ( CONFIGURE_INSTRUCTIONS_ACTION_ID ) ;
129134 } ) ) ;
@@ -133,7 +138,8 @@ export class ChatSlashCommandsContribution extends Disposable {
133138 sortText : 'z3_prompts' ,
134139 executeImmediately : true ,
135140 silent : true ,
136- locations : [ ChatAgentLocation . Chat ]
141+ locations : [ ChatAgentLocation . Chat ] ,
142+ target : Target . VSCode
137143 } , async ( ) => {
138144 await commandService . executeCommand ( CONFIGURE_PROMPTS_ACTION_ID ) ;
139145 } ) ) ;
0 commit comments