@aiready/cli 0.12.4 → 0.12.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.
@@ -164,7 +164,7 @@ export async function scanAction(directory: string, options: ScanOptions) {
164
164
  }
165
165
 
166
166
  // Handle tool completion
167
- process.stdout.write('\n'); // Clear the progress line
167
+ process.stdout.write('\r\x1b[K'); // Clear the progress line
168
168
  console.log(chalk.cyan(`--- ${event.tool.toUpperCase()} RESULTS ---`));
169
169
  const res = event.data;
170
170
  if (res && res.summary) {
@@ -182,12 +182,7 @@ export async function scanAction(directory: string, options: ScanOptions) {
182
182
  const results = await analyzeUnified({
183
183
  ...finalOptions,
184
184
  progressCallback,
185
- onProgress: (processed: number, total: number, message: string) => {
186
- process.stdout.write(
187
- `\r\x1b[K [${processed}/${total}] ${message}...`
188
- );
189
- if (processed === total) process.stdout.write('\n');
190
- },
185
+ onProgress: () => {},
191
186
  suppressToolConfig: true,
192
187
  });
193
188