feat(ux): finalize slash commands and resolve skill conflict discovery

This commit is contained in:
Keith Guerin
2026-03-27 12:59:33 -07:00
parent 6c8d2bdc42
commit 2c0165e8f3
27 changed files with 227 additions and 212 deletions
@@ -235,15 +235,8 @@ async function restartAction(
);
if (failures.length < extensionsToRestart.length) {
try {
await context.services.agentContext?.config.reloadSkills();
await context.services.agentContext?.config.getAgentRegistry()?.reload();
} catch (error) {
context.ui.addItem({
type: MessageType.ERROR,
text: `Failed to reload skills or agents: ${getErrorMessage(error)}`,
});
}
// Note: reloadSkills and agentRegistry.reload are handled by the ExtensionLoader
// during the restart process.
}
if (failures.length > 0) {