seofleet-cli
v0.2.1
Published
Zero-config, cross-platform SEO and GEO (generative engine optimization) checks for local projects and multi-site agency fleets, in pure TypeScript with no Python or headless-browser dependency.
Maintainers
Readme
SeoFleet
Runs 21 technical-SEO and GEO (generative-engine-optimization) checks against your site, in pure TypeScript or pure Python, with zero Python interpreter, zero headless browser, and zero external toolchain either way.

Contents
- Install
- Why GEO checks matter right now
- Features
- Quickstart
- The 21 checks
- CLI reference
- Fleet mode
- Comparison
- What is SeoFleet, and why does it exist
- FAQ
- Contributing
- License
Install
SeoFleet ships as two independent, complementary distributions. Both run the same 21 checks with the same PASS/WARN/FAIL verdicts, so pick whichever fits your toolchain.
Node/TypeScript (npm, published):
npm install -g seofleet-cli
seofleet init ./my-site --site-url https://example.com
seofleet check ./my-siteThe CLI targets Node 18+ (declared in package.json engines). The two runtime dependencies are cheerio (HTML parsing) and commander (argument parsing): there is no Python interpreter, no pip install, and no Playwright/Chromium download anywhere in the npm install.
Python (PyPI):
pip install seofleet-cli
seofleet init ./my-site --site-url https://example.com
seofleet check ./my-siteZero runtime dependencies -- HTML parsing and HTTP fetching both use only the Python standard library. See python/README.md for the full Python-specific guide.
Then, in any project you want to check:
seofleet init .That scaffolds a seofleet.json config and a small Claude Code skill file into the target directory. Set your site URL and run seofleet check ..
Why GEO checks matter right now
Search traffic is genuinely shifting toward AI-mediated answers, and the shift is recent and well measured, not a hypothetical:
- Google's own AI Overviews are already cutting click-through. Ahrefs measured position-1 CTR on AI-Overview-triggering keywords fall from 7.3% (December 2023) to 1.6% (December 2025) -- a 58% average CTR reduction across the study. (Ahrefs, December 2025) Semrush's independent 10-million-keyword analysis found organic CTR drops 61% and paid CTR drops 68% when an AI Overview appears on the results page. (Semrush)
- ChatGPT itself is now a real, measurable traffic source. Search Engine Land's analysis of 6.77 million sessions found ChatGPT accounts for 92% of all AI-assistant referral traffic, converting at 7.1% -- close to paid search's 7.8%. (Search Engine Land)
- AI crawlers are not one crawler anymore. Between May 2024 and May 2025, GPTBot's share of AI-crawler traffic rose from 5% to 30%. OpenAI and Anthropic have since split their bots into training crawlers (GPTBot, ClaudeBot) and separate, independently blockable search/retrieval crawlers (OAI-SearchBot, Claude-SearchBot). (Cloudflare Radar, "From Googlebot to GPTBot") SeoFleet's
ai-crawler-directivescheck reports on all seven of the current major training and search bots (GPTBot, OAI-SearchBot, ClaudeBot, Claude-SearchBot, PerplexityBot, Google-Extended, Applebot-Extended) separately, since blocking a company's training bot has no effect on whether its assistant can still retrieve and cite your page live through its own search bot. - Markdown-native delivery is a real, emerging practice, not a fad. Cloudflare documents HTTP content negotiation (
Accept: text/markdown) as a standards-based way to serve agents a lighter, cleaner representation of a page -- their own benchmark saw an 80% token reduction on one blog post. (Cloudflare, "Markdown for Agents") Worth being honest about the current state: independent analysis across 300,000 domains found that in practice, no major AI crawler currently sends theAccept: text/markdownheader to actually negotiate it yet -- they discover Markdown only via direct links. (Dries Buytaert) SeoFleet'smarkdown-negotiationcheck reports on this without pretending the ecosystem is further along than it is. - Not every signal in this space is settled, and SeoFleet does not pretend otherwise.
llms.txtis a real, community-driven convention (created September 2024, adopted by roughly 8-10% of top sites as of mid-2026, including Anthropic, Stripe, Cloudflare, and Vercel) -- but Google's own Gary Illyes has stated publicly that Google does not support it and has no plans to, comparing it to the deprecatedkeywordsmeta tag. (Search Engine Journal) SeoFleet'sllms-txtcheck reports its presence as informational, never as a required pass -- the tool's job is to report what is actually configured, not to prescribe a policy the evidence doesn't yet support. - Google removed FAQ rich results from Search entirely on May 7, 2026. (Search Engine Journal)
FAQPageschema itself is not deprecated -- it remains valid markup other engines and AI assistants can still parse for direct-answer extraction -- so SeoFleet'sfaq-schemacheck still reports on it, just without implying it earns a Google SERP rich result anymore.
Features
- 21 checks across two categories. 12 technical-SEO checks and 9 GEO checks, listed by name in The 21 checks.
- Zero external toolchain, either language.
child_processis never imported anywhere in the TypeScript source; the Python port has zero runtime dependencies. Checks run inside the process instead of shelling out to Python scripts or a headless browser. - Cross-platform by construction. No
python3-versus-py -3shelling and no relative-path script resolution, so the same install runs identically on Windows, macOS, and Linux. - Hardened fetch. The single fetch wrapper (
src/fetch-utils.ts) rejects any non-http(s)scheme, blocks loopback/private/link-local hosts, follows redirects manually one hop at a time, and bounds the chain at 5 hops and the response body at 10 MiB. - Fleet mode with per-site reports.
seofleet fleet manifest.jsonruns the full suite across many local client-repo paths in one invocation, and--out-dirwrites one auto-named report file per site -- built for agencies checking many client sites at once. - Structured output. Every command accepts a global
--jsonflag for machine-readable output, so an agent invoking the CLI can parse results programmatically. - A real, configurable User-Agent. Sends a genuine browser User-Agent by default (some SSR frameworks and CDNs reject bot-style strings outright) and a
--user-agentflag to override it. - Well tested. 247 TypeScript tests and 233 Python tests, both
npm auditand the Python build reporting zero vulnerabilities (reproducible locally withnpm run test:coverageandnpm audit).
Quickstart
Scaffold a config and run a check against a live site:
seofleet init ./my-site --site-url https://example.com
seofleet check ./my-siteReal output from seofleet check against https://example.com:
SeoFleet check -- https://example.com
[PASS] (technical) Title tag
Title "Example Domain" is 14 characters, within the recommended 10-60 range.
[WARN] (technical) Meta description
No meta description found.
Fix: Add <meta name="description" content="..."> with 50-160 characters summarizing the page.
[WARN] (technical) Canonical tag
No <link rel="canonical"> tag found.
Fix: Add a canonical link tag pointing at the preferred URL for this page.
[FAIL] (technical) robots.txt
robots.txt was not reachable at https://example.com/robots.txt (HTTP 404).
Fix: Add a robots.txt file at your site root, even a permissive one, so crawlers and agents have explicit directives.
[WARN] (technical) sitemap.xml
No sitemap was reachable (tried: https://example.com/sitemap.xml).
Fix: Add a sitemap.xml at your site root, or point to one with a Sitemap: directive in robots.txt, to help search engines discover pages.
[PASS] (technical) Heading structure
Exactly one <h1> and no skipped heading levels detected.
[PASS] (technical) Image alt coverage
No <img> tags found on the page.
[WARN] (technical) Open Graph tags
No Open Graph tags found.
Fix: Add Open Graph meta tags (og:title, og:description, og:image, og:url) so shared links render rich previews on social platforms.
[WARN] (technical) Twitter/X Card tags
No twitter:card meta tag found.
Fix: Add <meta name="twitter:card" content="summary_large_image"> (or another valid card type) so links render rich previews on X/Twitter.
[WARN] (technical) Meta robots directives
No meta robots directives found; default Google Search snippet/preview limits will apply.
Fix: Add <meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1"> to control search snippet appearance.
[PASS] (technical) Image weight
No <img> tags with an http(s) src to measure.
[PASS] (technical) Redirect chain
The homepage resolved with no redirects.
[WARN] (geo) Structured data (JSON-LD)
No JSON-LD structured data found.
Fix: Add schema.org JSON-LD markup (e.g. Organization, WebSite, or Article) so generative engines can understand the page's entities.
[WARN] (geo) llms.txt
No llms.txt found at https://example.com/llms.txt.
Fix: Optional: add an llms.txt at your site root summarizing the site for LLM-based agents (see llmstxt.org).
[WARN] (geo) AI crawler directives
robots.txt is unreachable, so AI-crawler directives could not be determined.
Fix: Add a reachable robots.txt if you want to state an explicit policy for AI crawlers (GPTBot, OAI-SearchBot, ClaudeBot, Claude-SearchBot, PerplexityBot, Google-Extended, Applebot-Extended).
[WARN] (geo) FAQ schema
No FAQPage structured data found.
Fix: If this page has an FAQ section, mark it up with FAQPage JSON-LD so generative engines can surface individual answers.
[PASS] (geo) Content extraction friendliness
Found 1 heading(s) and 1 structured text block(s); content appears reasonably extractable. (Heuristic: cannot assess semantic quality or JS-rendered content.)
[WARN] (geo) Speakable schema
No Speakable structured data found.
Fix: If this page has content suited for voice assistants, add a "speakable" SpeakableSpecification to its JSON-LD so voice search can surface it.
[WARN] (geo) Organization schema
No Organization/Corporation/LocalBusiness/Person structured data found.
Fix: Add Organization (or Person) JSON-LD with a sameAs array of your official social/profile URLs to strengthen Knowledge Panel signals.
[WARN] (geo) Markdown content negotiation
Requesting https://example.com/ with "Accept: text/markdown" returned Content-Type "text/html" instead of text/markdown.
Fix: Optional: serve a text/markdown representation of pages when the client sends "Accept: text/markdown" so LLM-based agents can fetch clean Markdown directly instead of parsing HTML.
[WARN] (geo) Link header (RFC 8288)
The homepage does not send a Link response header.
Fix: Optional: add an RFC 8288 Link response header (e.g. <https://example.com/feed>; rel="alternate") to advertise machine-readable service-discovery endpoints to crawlers and AI agents.
Summary: 6 PASS, 14 WARN, 1 FAIL (21 checks)The same run with --json:
seofleet --json check ./my-site{
"siteUrl": "https://example.com",
"summary": {
"pass": 6,
"warn": 14,
"fail": 1,
"total": 21
},
"results": [
{
"id": "title",
"name": "Title tag",
"category": "technical",
"status": "PASS",
"message": "Title \"Example Domain\" is 14 characters, within the recommended 10-60 range."
}
]
}check exits 0 when no check FAILs, 1 when at least one check FAILs (WARN alone does not fail the run), and 2 on a usage error such as a missing or misconfigured seofleet.json.
The 21 checks
Each check reports PASS, WARN, or FAIL, with a fix suggestion for anything that is not a clean PASS. A WARN is a missed optimization, not a broken page, and never fails the run on its own.
Technical SEO (12)
| Check (id) | What it verifies |
| --- | --- |
| Title tag (title) | A <title> exists and is within 10-60 characters. |
| Meta description (meta-description) | A <meta name="description"> exists and is within 50-160 characters. |
| Canonical tag (canonical) | A <link rel="canonical"> exists and its href is a valid URL (relative hrefs are resolved, not penalized). |
| robots.txt (robots-txt) | /robots.txt is reachable and contains at least one User-agent directive. |
| sitemap.xml (sitemap-xml) | /sitemap.xml is reachable and valid, with a Sitemap: directive in robots.txt checked as a fallback location. A response that looks like a CDN challenge page (e.g. Cloudflare bot management) gets a distinct message instead of a generic "malformed sitemap" one. |
| Heading structure (heading-structure) | Exactly one <h1>, and no skipped heading levels (for example an <h1> followed directly by an <h3>). |
| Image alt coverage (image-alt) | <img> tags have an alt attribute (an intentional alt="" for decorative images counts as covered). |
| Open Graph tags (open-graph) | og:title, og:description, og:image, and og:url meta tags are present, for rich link previews on social platforms. |
| Twitter/X Card tags (twitter-card) | A valid twitter:card meta tag and its required companion fields are present. |
| Meta robots directives (robots-meta-directives) | Advanced snippet-control directives (max-snippet, max-image-preview, max-video-preview) are set, and flags an outright noindex. |
| Image weight (image-weight) | Each image's actual byte size (via a HEAD request), flagging oversized images that slow page load. |
| Redirect chain (redirect-chain) | The homepage's full redirect chain, warning on long chains and failing if the chain dead-ends in an error status. |
GEO / generative engine optimization (9)
| Check (id) | What it verifies |
| --- | --- |
| Structured data (structured-data) | JSON-LD <script type="application/ld+json"> blocks exist and parse as valid JSON. |
| llms.txt (llms-txt) | An /llms.txt is present at the site root (an emerging, non-standardized convention -- see Why GEO checks matter right now; absence is informational). |
| AI crawler directives (ai-crawler-directives) | Reports the robots.txt allow/disallow state for GPTBot, OAI-SearchBot, ClaudeBot, Claude-SearchBot, PerplexityBot, Google-Extended, and Applebot-Extended. This is a report of what is configured, never a recommendation to allow or block. |
| FAQ schema (faq-schema) | FAQPage JSON-LD is present (informational; only relevant to pages that actually have an FAQ -- see the note on Google's May 2026 rich-result deprecation above). |
| Content extraction friendliness (content-extraction) | Heuristic: the page has heading/paragraph structure an engine can chunk, rather than one large unstructured block. It cannot see content that only appears after client-side JavaScript, by design. |
| Speakable schema (speakable-schema) | A SpeakableSpecification is present in JSON-LD, for voice-assistant answer eligibility. |
| Organization schema (organization-schema) | Organization/Person JSON-LD with a sameAs array of official profile URLs is present, for Knowledge Panel signals. |
| Markdown content negotiation (markdown-negotiation) | Whether the site serves a text/markdown representation when requested via Accept: text/markdown content negotiation. |
| Link header (link-header) | Whether the homepage response sends an RFC 8288 Link header for machine-readable service discovery. |
You can run only one category by editing the checks block in seofleet.json ({ "checks": { "technical": true, "geo": false } }).
CLI reference
Transcribed from the tool's own --help output.
$ seofleet --help
Usage: seofleet [options] [command]
Zero-config, cross-platform SEO and GEO checks for local projects, with no
Python or headless-browser dependency.
Options:
-V, --version output the version number
--json output structured JSON instead of
human-readable text (default: false)
--user-agent <string> override the default User-Agent header sent on
outbound fetches
-h, --help display help for command
Commands:
init [options] <path> Scaffold a SeoFleet setup (seofleet.json + a
Claude Code skill file) into a target
directory
check [options] <path> Run SEO/GEO checks against a local project's
configured site
fleet [options] <config.json> Run the full check suite against every site
listed in a fleet manifest
help [command] display help for command| Command | Argument | Options | Purpose |
| --- | --- | --- | --- |
| init | <path> target directory | --site-url <url> set siteUrl immediately | Scaffold seofleet.json plus a Claude Code skill file. Idempotent: existing files are left untouched. |
| check | <path> project directory containing seofleet.json | --out-dir <dir> also write an auto-named report file for this site; (global --json, --user-agent) | Run the selected checks against the configured siteUrl. |
| fleet | <config.json> fleet manifest | --out-dir <dir> also write one auto-named report file per site, named from the manifest's name field; (global --json, --user-agent) | Run the full suite against every site in the manifest. |
--json, --user-agent, -V/--version, and -h/--help are the only global options.
Exit codes
| Code | Meaning |
| --- | --- |
| 0 | init succeeded, or check/fleet completed with no FAIL. |
| 1 | check: at least one check FAILed. fleet: at least one site FAILed or errored. |
| 2 | Usage error: invalid URL scheme, missing/unreadable/invalid seofleet.json, blank siteUrl, missing manifest, or any other configuration error. |
Fleet mode

fleet is aimed at agencies or teams that maintain several client sites side by side as local repos. You declare each site in one manifest and check them all in a single command:
{
"sites": [
{ "name": "client-a", "path": "./clients/client-a" },
{ "name": "client-b", "path": "./clients/client-b" }
]
}seofleet fleet ./fleet.jsonSeoFleet fleet report
[FAIL] client-a (/abs/path/clients/client-a) -- 6 PASS, 14 WARN, 1 FAIL
[PASS] client-b (/abs/path/clients/client-b) -- 8 PASS, 13 WARN, 0 FAIL
Fleet summary: 1 site(s) passed, 1 site(s) failed, 0 site(s) errored (2 total).Add --out-dir ./reports and each site's result is also written to its own auto-named file (client-a.txt, client-b.txt, or .json with --json) -- instead of one combined stdout dump, an agency running this across many client sites gets one distinguishable report per client. Each manifest entry's path resolves against the manifest file's own directory, not the process working directory, so the same manifest works no matter where you invoke it from. Everything is local filesystem access, with no SSH and no remote-execution surface.
Comparison
Every cell below is drawn from a verifiable source (a repo file, a package manifest, or an open issue), cited under the table. "Checker" means the tool audits an existing live site; "generator" means it emits SEO/GEO asset files for you to publish.
| | SeoFleet | claude-seo (AgriciDaniel) | geo-seo-claude (zubair-trabzada) | geo-optimizer-skill (Auriti-Labs) |
| --- | --- | --- | --- | --- |
| Requires Python | No | Yes (Python 3.10+) | Yes | Yes (Python 3.9+) |
| Requires Playwright / headless browser | No | Optional (Chromium auto-installed by install.sh for SPA rendering) | Optional, for some checks | Not required for core function |
| Install | npm / PyPI (deps: cheerio+commander or none) | git clone + install.sh / install.ps1, or Claude Code /plugin | git clone + install.sh / install-win.sh | pip install or uvx |
| Cross-platform / Windows out of the box | Yes (no shelling, no path resolution) | Ships a Windows install.ps1, but fresh-install/Windows/path failures are a recurring pattern: issues #137, #138, #139 | Windows install pain is a recurring pattern here too: issues #69, #21, #3 | pip/uv are cross-platform; not verified further |
| AI-crawler bot coverage | 7 bots, training and search crawlers tracked separately (GPTBot/OAI-SearchBot, ClaudeBot/Claude-SearchBot, PerplexityBot, Google-Extended, Applebot-Extended) | Not a dedicated check | Not a dedicated check | Not verified |
| Markdown content negotiation check | Yes (markdown-negotiation) | No | No | No |
| Role | Checker | Checker | Checker + report generator | Checker |
| Coverage | Technical + GEO (21 checks) | Technical + GEO (broad) | GEO-focused | Technical + GEO |
| License | MIT | MIT | Not verified | MIT |
Sources: SeoFleet, from this repo's package.json, src/fetch-utils.ts, src/checks/index.ts, and the absence of child_process in src/. claude-seo, from its README install section (Python 3.10+, install.sh/install.ps1, /plugin), its MIT license, and open issues #137/#138/#139. geo-seo-claude, from its README and its own issue tracker (Windows install pain issues #69, #21, #3, all cited above). geo-optimizer-skill, from its README (Python 3.9+, pip install geo-optimizer-skill / uvx, MIT, CLI with audit/fix commands).
Hosted analytics products such as Profound, Peec, and Evertune are a different category (paid, hosted GEO-tracking dashboards, not installable OSS checkers) and are intentionally not in this table.
What is SeoFleet, and why does it exist
SeoFleet is an independent, open-source command-line tool that checks a website for 21 technical-SEO and generative-engine-optimization issues. It ships as two genuinely independent, feature-equivalent distributions: a TypeScript/Node CLI with two runtime dependencies (cheerio, commander) and zero external interpreter or browser, and a Python CLI with zero runtime dependencies at all. Neither child_process (TypeScript) nor a subprocess call (Python) appears anywhere in either implementation's checks.
It exists to replace the install flow of an existing project, AgriciDaniel/claude-seo, for one specific class of problem. That project is a Claude Code SEO/GEO skill that carries out its checks by shelling out to Python scripts (Playwright-based rendering, pip-installed dependencies) from skill instructions. That external-toolchain-plus-path-resolution chain is the root cause behind a recurring pattern of install/Windows/path bugs filed against it, including three still-open issues: #137 (a fresh /plugin install provisions neither the Python dependencies nor Playwright Chromium), #138 (skill instructions hardcode python3, which does not exist on a stock Windows install), and #139 (skills call scripts/*.py through a relative path that does not resolve when the scripts live under the plugin root). The same class of pain shows up independently in zubair-trabzada/geo-seo-claude, another actively used Claude Code GEO skill (issues #69, #21, #3) -- the failure mode is architectural, not specific to one project.
SeoFleet is not a fork of either project. It shares no code with them, has a different name, and reimplements the equivalent checks from scratch. The design choice that matters is what it does not do: because the checks run inside the host process rather than by launching an external interpreter and a headless browser, the entire failure class behind those bugs does not exist here. There is no interpreter to provision, no pip install to run beyond the package itself, no browser binary to download, and no relative script path to resolve, so a fresh install behaves the same on every platform. The direct cost of that choice is that the content-extraction check is a static-HTML heuristic and cannot evaluate content that only appears after client-side JavaScript renders. The check documents this limitation in its own output.
Beyond the install-fix wedge, SeoFleet's checks track the concrete, evidence-backed direction the GEO space has actually moved since mid-2025 -- see Why GEO checks matter right now for the cited sources behind that claim, including the training-versus-search AI crawler split, Markdown content negotiation, and Google's own documented FAQ-rich-result deprecation.
SeoFleet is at v0.2. Both distributions are published: pip install seofleet-cli (PyPI) and npm install -g seofleet-cli (npm) -- see Install for both paths.
FAQ
Does SeoFleet require Python?
No. The npm distribution is pure TypeScript/Node with two dependencies (cheerio, commander). There is no pip install step and no Python interpreter involved at any point in that path.
Does it use Playwright or a headless browser?
No, in either distribution. Both fetch HTML over http(s) and parse it (cheerio in TypeScript, the standard library in Python). There is no Chromium download and no subprocess call anywhere in either implementation's checks. The trade-off is that the content-extraction check reads static HTML only and cannot see JavaScript-rendered content. It says so in its own result message.
What does "zero-config" mean here, concretely?
seofleet init <path> writes a working seofleet.json and a Claude Code skill file with no prompts. The one value you must supply is your live site URL (via --site-url or by editing the file), because the tool cannot infer a project's public URL from its local files. After that, seofleet check <path> runs with no further configuration; all 21 checks run by default.
Why does SeoFleet track training crawlers and search crawlers separately? Because OpenAI and Anthropic actually run them as separate, independently blockable user agents now. Blocking GPTBot (training) has no effect on whether OAI-SearchBot can still retrieve and cite your page live in a ChatGPT answer, and the same split applies to ClaudeBot versus Claude-SearchBot. Reporting them together would hide a real, actionable distinction.
Does SeoFleet tell me to add an llms.txt?
No, it only reports whether one exists. llms.txt is a real, growing convention, but Google has stated publicly it does not support it -- see Why GEO checks matter right now for the source. SeoFleet reports facts a site owner can act on; it does not take a position on an unsettled question.
Why not just fix claude-seo or geo-seo-claude directly instead of building a separate tool? Their install/Windows bugs share a single root cause: checks are performed by shelling out to an external interpreter-plus-browser toolchain from skill instructions. Patching each symptom leaves that architecture in place. SeoFleet removes the architecture instead: with no external toolchain, that class of install and path failure cannot recur. It is an independent reimplementation, not a patch.
Can I run it against many sites at once?
Yes. seofleet fleet manifest.json runs the full suite against every site in a local JSON manifest in one invocation, and --out-dir writes one auto-named report file per site instead of one combined stdout dump -- built for agencies checking many client sites.
Can an agent or script consume the output?
Yes. Pass the global --json flag to any command for structured JSON, including per-check id, status, message, and fix fields, plus a summary object. Exit codes are stable: 0 clean, 1 at least one FAIL, 2 a usage/config error.
Is there a Python version?
Yes -- pip install seofleet-cli installs a genuine, independent Python port (not a wrapper around the Node binary), with zero runtime dependencies. It runs the same 21 checks with the same PASS/WARN/FAIL verdicts as this npm package. See python/README.md.
Can I use SeoFleet commercially, or in a closed-source project? Yes. Both distributions are MIT licensed (see LICENSE): you can use, modify, and redistribute SeoFleet in commercial and closed-source work, with no royalty and no obligation to open-source anything it checks. The only requirement is keeping the copyright notice and license text if you redistribute the source itself.
Contributing
See CONTRIBUTING.md for the full guide, covering both the TypeScript and Python codebases. Useful commands for this package:
npm install
npm run build # tsc build to dist/
npm run typecheck # tsc --noEmit
npm test # vitest run (247 tests)
npm run test:coverage
npm run lint # eslint src testCI (.github/workflows/ci.yml) runs lint, typecheck, build, coverage, and npm audit --audit-level=high on every push and pull request to main. Issues and pull requests are welcome at https://github.com/RudrenduPaul/SeoFleet/issues.
Adding a 22nd check is intentionally small: implement the Check interface (src/types.ts) in a new file under src/checks/, then register it in src/checks/index.ts (and the Python equivalent under python/src/seofleet/checks/, per CONTRIBUTING.md).
License
MIT. See LICENSE.
