@ijonis/geo-lint 0.1.0 → 0.1.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/CHANGELOG.md +17 -1
- package/README.md +71 -491
- package/dist/cli.cjs +14112 -921
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +14112 -921
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +14084 -896
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +114 -81
- package/dist/index.d.ts +114 -81
- package/dist/index.js +14085 -897
- package/dist/index.js.map +1 -1
- package/package.json +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,10 +8,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
|
-
-
|
|
11
|
+
- 28 new GEO rules across 4 categories (total: 35 GEO rules, 81 rules overall)
|
|
12
|
+
- **E-E-A-T (8 rules):** source citations, expert quotes, author validation, heading quality, FAQ quality, definition patterns, how-to steps, TL;DR detection
|
|
13
|
+
- **Structure (7 rules):** section length, paragraph length, list presence, citation block bounds, orphaned intros, heading density, structural element ratio
|
|
14
|
+
- **Freshness (7 rules):** stale year references, outdated content, passive voice, sentence length, internal links, comparison tables, inline HTML
|
|
15
|
+
- **RAG Optimization (6 rules):** extraction triggers, section self-containment, vague openings, acronym expansion, statistic context, summary sections
|
|
16
|
+
- `author` field support in ContentItem and MDX adapter
|
|
17
|
+
- 6 new GeoConfig options: `fillerPhrases`, `extractionTriggers`, `acronymAllowlist`, `vagueHeadings`, `genericAuthorNames`, `allowedHtmlTags`
|
|
18
|
+
- New utility module `geo-advanced-analyzer.ts` with 10 analysis functions
|
|
19
|
+
- Extended `geo-analyzer.ts` with 6 new utility functions
|
|
20
|
+
- Comprehensive tests for all 28 new rules (~120 tests)
|
|
21
|
+
|
|
22
|
+
## [0.1.0] - 2026-02-18
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- Initial release with 53 SEO/GEO rules
|
|
12
26
|
- 7 GEO (Generative Engine Optimization) rules for AI search visibility
|
|
13
27
|
- Configurable via `geo-lint.config.ts`
|
|
14
28
|
- JSON output mode for AI agent integration
|
|
15
29
|
- Fix strategies for every rule (agent-readable)
|
|
16
30
|
- MDX/Markdown content adapter with `gray-matter`
|
|
17
31
|
- CLI with `--format=json`, `--rules`, `--root`, `--config` flags
|
|
32
|
+
|
|
33
|
+
[0.1.0]: https://github.com/IJONIS/geo-lint/releases/tag/v0.1.0
|