Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .changeset/llms-full-and-sampling-fixes.md

This file was deleted.

14 changes: 14 additions & 0 deletions apps/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# agentimization

## 0.2.0

### Minor Changes

- aa64999: expand audit coverage and fix page sampling:

- add four llms-full.txt checks (exists, valid structure, size range, links resolve)
- add a dedicated mcp-tool-count check, split out of the mcp server card check
- scope page sampling to the audited path so auditing a sub-path (e.g. /docs) no longer samples unrelated site pages
- expand sitemap indexes to their nested sitemaps so real page URLs are sampled
- make page sampling deterministic so re-runs produce the same score
- fetch sampled pages with an html-only accept header so content-negotiating sites return rendered html instead of the agent markdown variant, fixing false negatives on structured data, open graph, meta description, and link checks
- parallelize the per-page markdown follow-up fetch

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agentimization",
"version": "0.1.3",
"version": "0.2.0",
"description": "GEO audit CLI — check if your website is agent-ready",
"license": "MIT",
"author": "Anthony Lio <hello@antl.io>",
Expand Down
14 changes: 14 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @agentimization/core

## 0.2.0

### Minor Changes

- aa64999: expand audit coverage and fix page sampling:

- add four llms-full.txt checks (exists, valid structure, size range, links resolve)
- add a dedicated mcp-tool-count check, split out of the mcp server card check
- scope page sampling to the audited path so auditing a sub-path (e.g. /docs) no longer samples unrelated site pages
- expand sitemap indexes to their nested sitemaps so real page URLs are sampled
- make page sampling deterministic so re-runs produce the same score
- fetch sampled pages with an html-only accept header so content-negotiating sites return rendered html instead of the agent markdown variant, fixing false negatives on structured data, open graph, meta description, and link checks
- parallelize the per-page markdown follow-up fetch

## 0.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentimization/core",
"version": "0.1.3",
"version": "0.2.0",
"description": "GEO audit engine. Check if your website is agent-ready and generative-engine optimized.",
"keywords": [
"geo",
Expand Down
Loading