@@ -121,9 +121,9 @@ func Test_yq_list(t *testing.T) {
121121 },
122122 },
123123 {
124- name : "Amazon Q " ,
125- cfg : config .System [VendorAmazonQ ],
126- content : "list/amazon-q .json" ,
124+ name : "Kiro " ,
125+ cfg : config .System [vendorKiro ],
126+ content : "list/kiro .json" ,
127127 result : & MCPJSONLists {
128128 STDIOServers : []MCPServerSTDIO {
129129 {
@@ -230,18 +230,18 @@ func Test_yq_add_del(t *testing.T) {
230230 afterDel : "zed-create/after-del.json" ,
231231 },
232232 {
233- name : "Amazon Q - append" ,
234- cfg : config .System [VendorAmazonQ ],
235- original : "amazon-q -append/original.json" ,
236- afterAdd : "amazon-q -append/after-add.json" ,
237- afterDel : "amazon-q -append/after-del.json" ,
233+ name : "Kiro - append" ,
234+ cfg : config .System [vendorKiro ],
235+ original : "kiro -append/original.json" ,
236+ afterAdd : "kiro -append/after-add.json" ,
237+ afterDel : "kiro -append/after-del.json" ,
238238 },
239239 {
240- name : "Amazon Q - create" ,
241- cfg : config .System [VendorAmazonQ ],
242- original : "amazon-q -create/original.json" ,
243- afterAdd : "amazon-q -create/after-add.json" ,
244- afterDel : "amazon-q -create/after-del.json" ,
240+ name : "Kiro - create" ,
241+ cfg : config .System [vendorKiro ],
242+ original : "kiro -create/original.json" ,
243+ afterAdd : "kiro -create/after-add.json" ,
244+ afterDel : "kiro -create/after-del.json" ,
245245 },
246246 }
247247 for _ , tc := range tests {
@@ -301,10 +301,10 @@ func TestFindClientsByProfile(t *testing.T) {
301301 vendorCursor : readTestData (t , "find-profiles/cursor-with-profile.json" ),
302302 vendorClaudeDesktop : readTestData (t , "find-profiles/claude-desktop-with-profile.json" ),
303303 vendorZed : readTestData (t , "find-profiles/zed-with-profile.json" ),
304- VendorAmazonQ : readTestData (t , "find-profiles/amazon-q -with-profile.json" ),
304+ vendorKiro : readTestData (t , "find-profiles/kiro -with-profile.json" ),
305305 vendorContinueDev : readTestData (t , "find-profiles/continue-with-profile.yml" ),
306306 },
307- expectedVendors : []string {vendorCursor , vendorClaudeDesktop , vendorZed , VendorAmazonQ , vendorContinueDev },
307+ expectedVendors : []string {vendorCursor , vendorClaudeDesktop , vendorZed , vendorKiro , vendorContinueDev },
308308 },
309309 {
310310 name : "finds no clients when profile doesn't match" ,
@@ -313,7 +313,7 @@ func TestFindClientsByProfile(t *testing.T) {
313313 vendorCursor : readTestData (t , "find-profiles/cursor-with-profile.json" ),
314314 vendorClaudeDesktop : readTestData (t , "find-profiles/claude-desktop-with-profile.json" ),
315315 vendorZed : readTestData (t , "find-profiles/zed-without-profile.json" ),
316- VendorAmazonQ : readTestData (t , "find-profiles/amazon-q -without-profile.json" ),
316+ vendorKiro : readTestData (t , "find-profiles/kiro -without-profile.json" ),
317317 vendorContinueDev : readTestData (t , "find-profiles/continue-without-profile.yml" ),
318318 },
319319 expectedVendors : []string {},
@@ -325,10 +325,10 @@ func TestFindClientsByProfile(t *testing.T) {
325325 vendorCursor : readTestData (t , "find-profiles/cursor-with-profile.json" ),
326326 vendorClaudeDesktop : readTestData (t , "find-profiles/claude-desktop-without-profile.json" ),
327327 vendorZed : readTestData (t , "find-profiles/zed-without-profile.json" ),
328- VendorAmazonQ : readTestData (t , "find-profiles/amazon-q -without-profile.json" ),
328+ vendorKiro : readTestData (t , "find-profiles/kiro -without-profile.json" ),
329329 vendorContinueDev : readTestData (t , "find-profiles/continue-without-profile.yml" ),
330330 },
331- expectedVendors : []string {vendorClaudeDesktop , vendorZed , VendorAmazonQ , vendorContinueDev },
331+ expectedVendors : []string {vendorClaudeDesktop , vendorZed , vendorKiro , vendorContinueDev },
332332 },
333333 {
334334 name : "finds mix of clients with and without matching profile" ,
@@ -337,7 +337,7 @@ func TestFindClientsByProfile(t *testing.T) {
337337 vendorCursor : readTestData (t , "find-profiles/cursor-with-profile.json" ),
338338 vendorClaudeDesktop : readTestData (t , "find-profiles/claude-desktop-without-profile.json" ),
339339 vendorZed : readTestData (t , "find-profiles/zed-with-profile.json" ),
340- VendorAmazonQ : readTestData (t , "find-profiles/amazon-q -without-profile.json" ),
340+ vendorKiro : readTestData (t , "find-profiles/kiro -without-profile.json" ),
341341 vendorContinueDev : readTestData (t , "find-profiles/continue-with-profile.yml" ),
342342 },
343343 expectedVendors : []string {vendorCursor , vendorZed , vendorContinueDev },
@@ -441,8 +441,8 @@ func TestIsSupportedMCPClient(t *testing.T) {
441441 expected : true ,
442442 },
443443 {
444- name : "amazon-q is supported as global" ,
445- vendor : VendorAmazonQ ,
444+ name : "kiro is supported as global" ,
445+ vendor : vendorKiro ,
446446 global : true ,
447447 expected : true ,
448448 },
@@ -472,10 +472,10 @@ func TestIsSupportedMCPClient(t *testing.T) {
472472 expected : true , // cursor is in both System and Project
473473 },
474474 {
475- name : "amazon-q is supported as project" ,
476- vendor : VendorAmazonQ ,
475+ name : "kiro is supported as project" ,
476+ vendor : vendorKiro ,
477477 global : false ,
478- expected : true , // amazon-q is in both System and Project
478+ expected : true , // kiro is in both System and Project
479479 },
480480 {
481481 name : "gordon is not supported as project" ,
0 commit comments