aiseo-audit 1.2.4 → 1.2.6

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
@@ -8,6 +8,11 @@
8
8
  [![Tests](https://img.shields.io/badge/tests-194%20passed-8FBC8F)](https://github.com/agencyenterprise/aiseo-audit)
9
9
  [![Coverage](https://img.shields.io/codecov/c/github/agencyenterprise/aiseo-audit?color=8FBC8F&label=coverage)](https://codecov.io/gh/agencyenterprise/aiseo-audit)
10
10
 
11
+ <div align="center">
12
+ <strong>Testing against local development</strong><br /><br />
13
+ <img src="docs/assets/ai-seo-bad-site-example.gif" alt="Testing against local development example" width="600" />
14
+ </div>
15
+
11
16
  Deterministic CLI that audits web pages for **AI search readiness**. Think Lighthouse, but for how well AI engines can fetch, extract, understand, and cite your content.
12
17
 
13
18
  **AI SEO measures how reusable your content is for generative engines, not traditional search rankings.**
package/dist/cli.js CHANGED
@@ -27,7 +27,7 @@ var import_commander = require("commander");
27
27
 
28
28
  // src/modules/analyzer/constants.ts
29
29
  var DOMAIN_SIGNAL_TIMEOUT_CAP = 5e3;
30
- var VERSION = true ? "1.2.4" : "0.0.0";
30
+ var VERSION = true ? "1.2.6" : "0.0.0";
31
31
 
32
32
  // src/modules/fetcher/constants.ts
33
33
  var MAX_RESPONSE_SIZE = 10 * 1024 * 1024;
package/dist/cli.mjs CHANGED
@@ -3,7 +3,7 @@ import { Command } from "commander";
3
3
 
4
4
  // src/modules/analyzer/constants.ts
5
5
  var DOMAIN_SIGNAL_TIMEOUT_CAP = 5e3;
6
- var VERSION = true ? "1.2.4" : "0.0.0";
6
+ var VERSION = true ? "1.2.6" : "0.0.0";
7
7
 
8
8
  // src/modules/fetcher/constants.ts
9
9
  var MAX_RESPONSE_SIZE = 10 * 1024 * 1024;
package/dist/index.js CHANGED
@@ -1440,7 +1440,7 @@ var import_zod = require("zod");
1440
1440
 
1441
1441
  // src/modules/analyzer/constants.ts
1442
1442
  var DOMAIN_SIGNAL_TIMEOUT_CAP = 5e3;
1443
- var VERSION = true ? "1.2.4" : "0.0.0";
1443
+ var VERSION = true ? "1.2.6" : "0.0.0";
1444
1444
 
1445
1445
  // src/modules/fetcher/schema.ts
1446
1446
  var FetchOptionsSchema = import_zod.z.object({
package/dist/index.mjs CHANGED
@@ -1402,7 +1402,7 @@ import { z } from "zod";
1402
1402
 
1403
1403
  // src/modules/analyzer/constants.ts
1404
1404
  var DOMAIN_SIGNAL_TIMEOUT_CAP = 5e3;
1405
- var VERSION = true ? "1.2.4" : "0.0.0";
1405
+ var VERSION = true ? "1.2.6" : "0.0.0";
1406
1406
 
1407
1407
  // src/modules/fetcher/schema.ts
1408
1408
  var FetchOptionsSchema = z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiseo-audit",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "Lighthouse for AI SEO. Audit any webpage for AI search readiness. 7 categories, 30+ factors, research-backed scoring. Deterministic, engine-agnostic, zero API keys.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",