aeo-ready 1.7.7 → 1.7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aeo-ready",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
4
4
  "description": "AEO benchmark aggregator. One scan, every score. Collects agentic-seo, Cloudflare, Fern, Vercel, and AgentGrade in one report.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,29 +5,6 @@ import { runFern } from "./fern.js";
5
5
  import { runVercel } from "./vercel.js";
6
6
  import { runAgentgrade } from "./agentgrade.js";
7
7
 
8
- const REFERENCE_SCORES = {
9
- agenticSeo: {
10
- Stripe: 17,
11
- Cloudflare: 20,
12
- Supabase: 20,
13
- Average: 19,
14
- },
15
- cloudflare: {
16
- Supabase: 4,
17
- Cloudflare: 3,
18
- Vercel: 2,
19
- Stripe: 1,
20
- Average: 2,
21
- },
22
- fern: {
23
- Cloudflare: 85,
24
- Stripe: 84,
25
- Supabase: 82,
26
- Vercel: 75,
27
- Average: 55,
28
- },
29
- };
30
-
31
8
  const W = 52;
32
9
 
33
10
  export async function runAllBenchmarks(target, dir) {
@@ -127,14 +104,5 @@ function printBenchmarkBlock(name, key, b) {
127
104
  }
128
105
  }
129
106
 
130
- const refs = REFERENCE_SCORES[key];
131
- if (refs) {
132
- const cmp = Object.entries(refs)
133
- .sort((a, b) => b[1] - a[1])
134
- .map(([n, s]) => `${n} ${s}`)
135
- .join(" · ");
136
- console.log(chalk.dim(` vs ${cmp}`));
137
- }
138
-
139
107
  console.log("");
140
108
  }
@@ -20,6 +20,8 @@ export async function saveResult(result, baseDir) {
20
20
  cloudflare: result.benchmarks?.cloudflare?.score ?? null,
21
21
  cloudflareMax: result.benchmarks?.cloudflare?.maxScore ?? null,
22
22
  fern: result.benchmarks?.fern?.score ?? null,
23
+ vercel: result.benchmarks?.vercel?.score ?? null,
24
+ agentgrade: result.benchmarks?.agentgrade?.score ?? null,
23
25
  });
24
26
 
25
27
  writeFileSync(historyPath, JSON.stringify(history, null, 2));