orquesta-cli 0.2.57 → 0.2.59

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.
@@ -215,6 +215,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
215
215
  setToolExecutionCallback((toolName, reason, args) => {
216
216
  lastToolArgsRef.current = args;
217
217
  setCurrentToolName(toolName);
218
+ setActivityDetail(reason || '');
218
219
  addLog({
219
220
  type: 'tool_start',
220
221
  content: toolName,
@@ -1439,8 +1440,8 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
1439
1440
  React.createElement(Static, { items: logEntries }, (entry) => renderLogEntry(entry)),
1440
1441
  pendingToolApproval && (React.createElement(Box, { marginY: 1 },
1441
1442
  React.createElement(ApprovalDialog, { toolName: pendingToolApproval.toolName, args: pendingToolApproval.args, reason: pendingToolApproval.reason, onResponse: handleApprovalResponse }))),
1442
- isProcessing && (planExecutionState.executionPhase === 'planning' || planExecutionState.todos.length === 0) && !pendingToolApproval && !isDocsSearching && (React.createElement(Box, { marginY: 1, flexDirection: "column" },
1443
- React.createElement(ActivityIndicator, { activity: getCurrentActivityType(), startTime: activityStartTime, detail: activityDetail, subActivities: subActivities, modelName: currentModelInfo.model }),
1443
+ isProcessing && !pendingToolApproval && !isDocsSearching && (React.createElement(Box, { marginY: 1, flexDirection: "column" },
1444
+ React.createElement(ActivityIndicator, { activity: getCurrentActivityType(), startTime: activityStartTime, detail: activityDetail || currentToolName || '', subActivities: subActivities, modelName: currentModelInfo.model }),
1444
1445
  streamingText && (React.createElement(StreamingOutput, { text: streamingText })))),
1445
1446
  isDocsSearching && (React.createElement(DocsSearchProgress, { logs: docsSearchLogs, isSearching: isDocsSearching })),
1446
1447
  planExecutionState.todos.length > 0 && (React.createElement(Box, { marginTop: 2, marginBottom: 1 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.57",
3
+ "version": "0.2.59",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",