orquesta-cli 0.2.72 → 0.2.73

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.
@@ -1219,7 +1219,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
1219
1219
  const displayDetails = entry.details ? truncateText(entry.details) : undefined;
1220
1220
  return (React.createElement(Box, { key: entry.id, marginTop: 1, flexDirection: "column" },
1221
1221
  React.createElement(Text, { color: "yellow", bold: true }, "\uD83D\uDCDA Document Search Complete"),
1222
- displayDetails && React.createElement(Text, { color: "gray", dimColor: true },
1222
+ displayDetails && React.createElement(Text, { color: "gray" },
1223
1223
  " ",
1224
1224
  displayDetails),
1225
1225
  React.createElement(Box, { paddingLeft: 3, marginTop: 0 },
@@ -1323,7 +1323,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
1323
1323
  truncatedReason && (React.createElement(Box, { marginLeft: 2 },
1324
1324
  React.createElement(Text, { color: "gray" }, "\u23BF "),
1325
1325
  React.createElement(Text, { color: "yellow" }, "\uD83D\uDCAD "),
1326
- React.createElement(Text, { color: "white", dimColor: true }, truncatedReason)))));
1326
+ React.createElement(Text, { color: "white" }, truncatedReason)))));
1327
1327
  }
1328
1328
  case 'tool_result': {
1329
1329
  if (entry.diff && entry.diff.length > 0) {
@@ -1342,7 +1342,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
1342
1342
  return (React.createElement(Box, { key: entry.id, flexDirection: "column", marginLeft: 2 },
1343
1343
  React.createElement(Box, null,
1344
1344
  React.createElement(Text, { color: "gray" }, "\u23BF "),
1345
- React.createElement(Text, { color: entry.success ? 'white' : 'red', dimColor: true }, shown)),
1345
+ React.createElement(Text, { color: entry.success ? 'white' : 'red' }, shown)),
1346
1346
  extra > 0 && (React.createElement(Text, { color: "gray", dimColor: true },
1347
1347
  ' ',
1348
1348
  "\u2026 +",
@@ -1360,7 +1360,7 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
1360
1360
  return (React.createElement(Box, { key: entry.id, flexDirection: "column", marginLeft: 2 },
1361
1361
  React.createElement(Box, null,
1362
1362
  React.createElement(Text, { color: "gray" }, "\u23BF "),
1363
- React.createElement(Text, { color: entry.success ? 'white' : 'red', dimColor: true }, shown)),
1363
+ React.createElement(Text, { color: entry.success ? 'white' : 'red' }, shown)),
1364
1364
  extra > 0 && (React.createElement(Text, { color: "gray", dimColor: true },
1365
1365
  ' ',
1366
1366
  "\u2026 +",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.72",
3
+ "version": "0.2.73",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",