orquesta-cli 0.2.7 → 0.2.8

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.
@@ -1125,8 +1125,10 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo }) => {
1125
1125
  }
1126
1126
  case 'tell_to_user':
1127
1127
  return '';
1128
- case 'bash':
1129
- return args['command'] || '';
1128
+ case 'bash': {
1129
+ const cmd = (args['command'] || '').replace(/\s+/g, ' ').trim();
1130
+ return cmd.length > 64 ? cmd.slice(0, 63) + '…' : cmd;
1131
+ }
1130
1132
  default:
1131
1133
  return '';
1132
1134
  }
@@ -1145,14 +1147,14 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo }) => {
1145
1147
  icon,
1146
1148
  " ",
1147
1149
  toolName),
1148
- params && React.createElement(Text, { color: "gray" },
1149
- " (",
1150
- params,
1151
- ")")),
1150
+ params && (React.createElement(React.Fragment, null,
1151
+ React.createElement(Text, { color: "gray" }, " ("),
1152
+ React.createElement(Text, { color: "white" }, params),
1153
+ React.createElement(Text, { color: "gray" }, ")")))),
1152
1154
  truncatedReason && (React.createElement(Box, { marginLeft: 2 },
1153
1155
  React.createElement(Text, { color: "gray" }, "\u23BF "),
1154
1156
  React.createElement(Text, { color: "yellow" }, "\uD83D\uDCAD "),
1155
- React.createElement(Text, { color: "gray" }, truncatedReason)))));
1157
+ React.createElement(Text, { color: "white", dimColor: true }, truncatedReason)))));
1156
1158
  }
1157
1159
  case 'tool_result':
1158
1160
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",