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 +10 -7
- package/data/benchmark.json +246089 -167008
- package/data/sectors.json +1317 -311
- package/data/yc.json +70453 -69869
- package/dist/cli.js +279 -7
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +279 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +279 -7
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AEORank
|
|
2
2
|
|
|
3
|
-
Score any website for AI engine visibility across
|
|
3
|
+
Score any website for AI engine visibility across 26 criteria. Pure HTTP + regex - zero API keys required.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/aeorank)
|
|
6
6
|
[](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); //
|
|
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
|
|
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 - **
|
|
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) | **
|
|
228
|
-
| [`data/yc.json`](data/yc.json) | **4,
|
|
229
|
-
| [`data/sectors.json`](data/sectors.json) | **
|
|
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
|
|