File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export const IMPLEMENTOR_AGENT_IDS = [
55 'editor-implementor-opus' ,
66 'editor-implementor-gemini' ,
77 'editor-implementor-gpt-5' ,
8+ 'editor-implementor2' ,
89 'editor-implementor2-opus' ,
910 'editor-implementor2-gpt-5' ,
1011 'editor-implementor2-sonnet' ,
@@ -28,13 +29,16 @@ export const getImplementorDisplayName = (
2829) : string => {
2930 let baseName = 'Implementor'
3031 // Check editor-implementor2-* patterns first (more specific)
31- if ( agentType . includes ( 'editor-implementor2-opus' ) ) {
32+ if (
33+ agentType . includes ( 'editor-implementor2-opus' ) ||
34+ agentType . includes ( 'editor-implementor2' )
35+ ) {
3236 baseName = 'Opus'
3337 } else if ( agentType . includes ( 'editor-implementor2-gpt-5' ) ) {
3438 baseName = 'GPT-5'
3539 } else if ( agentType . includes ( 'editor-implementor2-sonnet' ) ) {
3640 baseName = 'Sonnet'
37- // Then check editor-implementor-* patterns (less specific)
41+ // Then check editor-implementor-* patterns (less specific)
3842 } else if ( agentType . includes ( 'editor-implementor-opus' ) ) {
3943 baseName = 'Opus'
4044 } else if ( agentType . includes ( 'editor-implementor-gemini' ) ) {
You can’t perform that action at this time.
0 commit comments