orquesta-cli 0.2.62 → 0.2.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -167,7 +167,10 @@ export class PlanExecutor {
167
167
  currentTodos = updated;
168
168
  });
169
169
  callbacks.setExecutionPhase('executing');
170
- const tools = toolRegistry.getLLMToolDefinitions();
170
+ const allTools = toolRegistry.getLLMToolDefinitions();
171
+ const tools = currentTodos.length === 0
172
+ ? allTools.filter((t) => t.function?.name !== 'final_response')
173
+ : allTools;
171
174
  const hasSystemMessage = currentMessages.some(m => m.role === 'system');
172
175
  if (!hasSystemMessage) {
173
176
  const relevantContext = getRelevantContext(userMessage);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.62",
3
+ "version": "0.2.63",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",