aeorank 1.2.0 → 1.2.2

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.
package/README.md CHANGED
@@ -220,25 +220,28 @@ console.log(result.comparison.tied); // Criteria with equal scores
220
220
 
221
221
  ## Benchmark Dataset
222
222
 
223
- The `data/` directory contains open benchmark data from 500+ audited domains:
223
+ The `data/` directory contains the largest open dataset of AI visibility scores - **11,068 domains** scored across 23 criteria, including **4,313 Y Combinator startups** across 48 batches (W06-W26):
224
224
 
225
- | File | Description |
226
- |------|-------------|
227
- | [`data/benchmark.json`](data/benchmark.json) | All domains with per-criterion scores, sector/category |
228
- | [`data/yc.json`](data/yc.json) | YC startups with company metadata |
229
- | [`data/sectors.json`](data/sectors.json) | Pre-computed sector statistics |
225
+ | File | Contents |
226
+ |------|----------|
227
+ | [`data/benchmark.json`](data/benchmark.json) | **11,068 domains** with per-criterion scores and sector/category |
228
+ | [`data/yc.json`](data/yc.json) | **4,313 Y Combinator startups** with company name, one-liner, founders, industry tags |
229
+ | [`data/sectors.json`](data/sectors.json) | **66 sectors** with pre-computed statistics (mean, median, p25, p75) |
230
230
 
231
231
  Use the dataset for research, benchmarking, or building on top of AEORank:
232
232
 
233
233
  ```ts
234
- import benchmark from './data/benchmark.json' assert { type: 'json' };
234
+ import yc from './data/yc.json' assert { type: 'json' };
235
235
 
236
- // Find domains scoring above 80
237
- const topDomains = benchmark.entries.filter(e => e.score >= 80);
236
+ // Find top-scoring YC startups
237
+ const top = yc.entries.filter(e => e.score >= 80);
238
+
239
+ // Filter by batch
240
+ const w25 = yc.entries.filter(e => e.batch === 'w25');
238
241
 
239
242
  // Get sector averages
240
243
  import sectors from './data/sectors.json' assert { type: 'json' };
241
- console.log(sectors.sectors.healthcare.mean); // Average score for healthcare
244
+ console.log(sectors.sectors.healthcare.mean);
242
245
  ```
243
246
 
244
247
  ## Contributing
package/dist/cli.js CHANGED
@@ -2822,7 +2822,7 @@ function generateComparisonHtmlReport(result) {
2822
2822
  }
2823
2823
 
2824
2824
  // src/cli.ts
2825
- var VERSION = "1.2.0";
2825
+ var VERSION = "1.2.2";
2826
2826
  function printHelp() {
2827
2827
  console.log(`
2828
2828
  aeorank - AI Engine Optimization audit