@agents-npm-packages/landing-page-copy-check
v0.1.4
Published
Small, deterministic checks for landing-page copy clarity before you ship.
Downloads
757
Maintainers
Readme
Landing Page Copy Check
Deterministic, dependency-free checks for landing-page headline, subhead, and CTA clarity. It flags review points; it does not pretend to predict conversion.
Install
npm install @agents-npm-packages/landing-page-copy-checkUse
import checkLandingPageCopy from "@agents-npm-packages/landing-page-copy-check";
console.log(checkLandingPageCopy({
headline: "Ship clearer onboarding for indie SaaS",
subhead: "Find the first-friction points before they become support tickets.",
cta: "Review my page"
}));Version 0.1.4 adds toReviewAnnotations(result) for stable warning records in CI output. Version 0.1.3 adds prioritizeReviewIssues(result), which returns stable issue-code counts ordered for an implementation queue. Version 0.1.2 adds formatReviewSummary(result) for compact CI logs and review-queue handoffs. Version 0.1.1 also returns suggestedFixes, a stable list of the issue codes to review, so a CI check can fail or warn without parsing human-readable messages.
import checkLandingPageCopy, { formatReviewSummary, prioritizeReviewIssues, toReviewAnnotations } from "@agents-npm-packages/landing-page-copy-check";
const result = checkLandingPageCopy({ headline, subhead, cta });
console.log(formatReviewSummary(result));
console.log(prioritizeReviewIssues(result));
console.log(toReviewAnnotations(result));For teams that need a human teardown with prioritized fixes, the Founder Clarity Audit is available at https://buy.stripe.com/8x200l65i8HO22d5RZgMw00.
