@aiready/cli 0.10.0 → 0.10.3

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.
@@ -26,7 +26,9 @@ export async function uploadAction(file: string, options: UploadOptions) {
26
26
  )
27
27
  );
28
28
  console.log(
29
- chalk.dim(' Get an API key from https://getaiready.dev/dashboard')
29
+ chalk.dim(
30
+ ' Get an API key from https://platform.getaiready.dev/dashboard'
31
+ )
30
32
  );
31
33
  process.exit(1);
32
34
  }
package/src/index.ts CHANGED
@@ -38,9 +38,9 @@ export interface UnifiedAnalysisResult {
38
38
  consistency?: SpokeOutput;
39
39
  docDrift?: SpokeOutput;
40
40
  dependencyHealth?: SpokeOutput;
41
- aiSignalClarity?: SpokeOutput;
42
- agentGrounding?: SpokeOutput;
43
- testability?: SpokeOutput;
41
+ aiSignalClarity?: any;
42
+ agentGrounding?: any;
43
+ testability?: any;
44
44
  changeAmplification?: SpokeOutput;
45
45
 
46
46
  summary: {
@@ -219,6 +219,7 @@ export async function analyzeUnified(
219
219
  options.progressCallback({ tool: 'ai-signal-clarity', data: report });
220
220
  }
221
221
  result.aiSignalClarity = {
222
+ ...report,
222
223
  results: report.results || [],
223
224
  summary: report.summary || {},
224
225
  };
@@ -242,6 +243,7 @@ export async function analyzeUnified(
242
243
  options.progressCallback({ tool: 'agent-grounding', data: report });
243
244
  }
244
245
  result.agentGrounding = {
246
+ ...report,
245
247
  results: report.results || [],
246
248
  summary: report.summary || {},
247
249
  };
@@ -261,6 +263,7 @@ export async function analyzeUnified(
261
263
  options.progressCallback({ tool: 'testability', data: report });
262
264
  }
263
265
  result.testability = {
266
+ ...report,
264
267
  results: report.results || [],
265
268
  summary: report.summary || {},
266
269
  };