diff --git a/src/agent/commands/index.js b/src/agent/commands/index.js index 64252d4..199c5e9 100644 --- a/src/agent/commands/index.js +++ b/src/agent/commands/index.js @@ -95,7 +95,7 @@ export async function executeCommand(agent, message) { agent.coder.setCurActionName(command.name); const result = await command.perform(agent, ...parsed.args); if (is_action) - agent.coder.setCurActionName(command.name); + agent.coder.setCurActionName(''); return result; } }