@mntglobal/agentready-core
v0.1.3
Published
Engine for agentready — checks, scoring, and report model for store agent-readiness.
Readme
@mntglobal/agentready-core
The engine behind @mntglobal/agentready —
the open-source pre-flight check for agentic commerce. Most people want the CLI:
npx @mntglobal/agentready https://your-store.comUse this package directly to embed scanning in your own tooling:
import { scan, buildReport, collect, allChecks } from "@mntglobal/agentready-core";
const report = await scan("https://your-store.com");
console.log(report.grade, report.score, report.topFixes);scan(url, opts)— collect + run all checks →Reportcollect(url, opts)— polite fetcher →ScanContext(≤20 requests, declared UA)buildReport(ctx)— pure: run the 29-check registry over any context (used for fixture replay/testing)- Checks are pure functions over
ScanContext;inforesults are excluded from the score denominator.
Docs, check reference, and protocol research: github.com/MnT-Global/agentready.
