feat: implement AgentConfigDialog for /agents config command (#17370)

This commit is contained in:
Sandy Tao
2026-01-23 16:10:51 -08:00
committed by GitHub
parent 12a5490bcf
commit 0c134079cc
6 changed files with 821 additions and 14 deletions
@@ -252,10 +252,16 @@ async function configAction(
};
}
const displayName = definition.displayName || agentName;
return {
type: 'message',
messageType: 'info',
content: `Configuration for '${agentName}' will be available in the next update.`,
type: 'dialog',
dialog: 'agentConfig',
props: {
name: agentName,
displayName,
definition,
},
};
}