@@ -201,7 +201,7 @@ export function A2aDeploy({
201201 const [ description , setDescription ] = useState ( '' )
202202 const [ authScheme , setAuthScheme ] = useState < AuthScheme > ( 'apiKey' )
203203 const [ pushNotificationsEnabled , setPushNotificationsEnabled ] = useState ( false )
204- const [ skillTags , setSkillTags ] = useState < string [ ] > ( [ 'workflow' , 'automation' ] )
204+ const [ skillTags , setSkillTags ] = useState < string [ ] > ( [ ] )
205205 const [ language , setLanguage ] = useState < CodeLanguage > ( 'curl' )
206206 const [ useStreamingExample , setUseStreamingExample ] = useState ( false )
207207 const [ copied , setCopied ] = useState ( false )
@@ -220,15 +220,15 @@ export function A2aDeploy({
220220 }
221221 const skills = existingAgent . skills as Array < { tags ?: string [ ] } > | undefined
222222 const savedTags = skills ?. [ 0 ] ?. tags
223- setSkillTags ( savedTags ?. length ? savedTags : [ 'workflow' , 'automation' ] )
223+ setSkillTags ( savedTags ?. length ? savedTags : [ ] )
224224 } else {
225225 setName ( workflowName )
226226 setDescription (
227227 isDefaultDescription ( workflowDescription , workflowName ) ? '' : workflowDescription || ''
228228 )
229229 setAuthScheme ( 'apiKey' )
230230 setPushNotificationsEnabled ( false )
231- setSkillTags ( [ 'workflow' , 'automation' ] )
231+ setSkillTags ( [ ] )
232232 }
233233 } , [ existingAgent , workflowName , workflowDescription ] )
234234
@@ -247,7 +247,7 @@ export function A2aDeploy({
247247 const savedDesc = existingAgent . description || ''
248248 const normalizedSavedDesc = isDefaultDescription ( savedDesc , workflowName ) ? '' : savedDesc
249249 const skills = existingAgent . skills as Array < { tags ?: string [ ] } > | undefined
250- const savedTags = skills ?. [ 0 ] ?. tags || [ 'workflow' , 'automation' ]
250+ const savedTags = skills ?. [ 0 ] ?. tags || [ ]
251251 const tagsChanged =
252252 skillTags . length !== savedTags . length || skillTags . some ( ( t , i ) => t !== savedTags [ i ] )
253253 return (
0 commit comments