aeorank 1.2.2 → 1.3.0

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
@@ -1,6 +1,6 @@
1
1
  # AEORank
2
2
 
3
- Score any website for AI engine visibility across 23 criteria. Pure HTTP + regex - zero API keys required.
3
+ Score any website for AI engine visibility across 26 criteria. Pure HTTP + regex - zero API keys required.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/aeorank.svg)](https://www.npmjs.com/package/aeorank)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -33,13 +33,13 @@ import { audit } from 'aeorank';
33
33
 
34
34
  const result = await audit('example.com');
35
35
  console.log(result.overallScore); // 0-100
36
- console.log(result.scorecard); // 23 criteria with scores
36
+ console.log(result.scorecard); // 26 criteria with scores
37
37
  console.log(result.opportunities); // Prioritized improvements
38
38
  ```
39
39
 
40
40
  ## What It Checks
41
41
 
42
- AEORank evaluates 23 criteria across 4 categories that determine how AI engines (ChatGPT, Claude, Perplexity, Google AI Overviews) discover, parse, and cite your content:
42
+ AEORank evaluates 26 criteria across 4 categories that determine how AI engines (ChatGPT, Claude, Perplexity, Google AI Overviews) discover, parse, and cite your content:
43
43
 
44
44
  | # | Criterion | Weight | Category |
45
45
  |---|-----------|--------|----------|
@@ -66,6 +66,9 @@ AEORank evaluates 23 criteria across 4 categories that determine how AI engines
66
66
  | 21 | Content Publishing Velocity | 3% | Content |
67
67
  | 22 | Schema Coverage & Depth | 3% | Structure |
68
68
  | 23 | Speakable Schema | 3% | Structure |
69
+ | 24 | Query-Answer Alignment | 8% | Content |
70
+ | 25 | Content Cannibalization | 5% | Content |
71
+ | 26 | Visible Date Signal | 4% | Content |
69
72
 
70
73
  ## CLI Options
71
74
 
@@ -220,13 +223,13 @@ console.log(result.comparison.tied); // Criteria with equal scores
220
223
 
221
224
  ## Benchmark Dataset
222
225
 
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):
226
+ The `data/` directory contains the largest open dataset of AI visibility scores - **13,619 domains** scored across 23 criteria, including **4,328 Y Combinator startups** across 48 batches (W06-W26):
224
227
 
225
228
  | File | Contents |
226
229
  |------|----------|
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
+ | [`data/benchmark.json`](data/benchmark.json) | **13,619 domains** with per-criterion scores and sector/category |
231
+ | [`data/yc.json`](data/yc.json) | **4,328 Y Combinator startups** with company name, one-liner, founders, industry tags |
232
+ | [`data/sectors.json`](data/sectors.json) | **129 sectors** with pre-computed statistics (mean, median, p25, p75) |
230
233
 
231
234
  Use the dataset for research, benchmarking, or building on top of AEORank:
232
235