Is xgenious.com AI agent ready? B · 74/100
Why we think this is Next.js (2 signals)
- · hosted on Vercel
- · /_next/static/ asset
Scan history · 2 public scans of xgenious.com
2 failed · 3 partial out of 15 that apply to your site.
Fix automatically with AIScan
5 open checks (2 failing) can be handed to an AI agent: C1, M4, E2, E4, E5. Pick one route — each returns the full, check-by-check instructions.
npx add-skill https://aiscan.site/aiscan-skill.jsonThen ask your agent: “Fix the failing AI readiness checks for https://xgenious.com/”.
curl -o CLAUDE.md https://aiscan.site/CLAUDE.mdDrop it in your project root, then ask Claude Code to fix the failing AIScan checks.
https://aiscan.site/api/mcpTools: scan_website, get_fixes, get_grade. Call get_fixes { "url": "https://xgenious.com/" }.
curl -s 'https://aiscan.site/api/public/scan?url=https%3A%2F%2Fxgenious.com%2F'Returns every check with its complete fix guide.
Verify: Re-scan at https://aiscan.site after applying fixes, or run npx aiscan-cli https://xgenious.com/. Individual checks that need a specific probe list it in their own guide.
Quick Wins
Top 3 fixes ranked by score impact
- 01Fail+8 pts if fixed
Markdown content negotiation
See full detailsServe text/markdown when the client sends Accept: text/markdown, or publish /index.md.
- 02Partial+4 pts if fixed
Machine-readable pricing
See full detailsPublish schema.org Offer / AggregateOffer JSON-LD on your pricing page with price, priceCurrency and the billing period, so an agent can answer "what does this cost?" without scraping prose.
- 03Fail+3 pts if fixed
Machine-readable API description
See full detailsPublish an OpenAPI 3.1 document at /openapi.json and reference it from /.well-known/api-catalog as a service-desc link.
# Agent-readiness remediation brief
Site: https://xgenious.com/
Platform: nextjs (60% confidence)
AIScan score: 74/100 — Level 4 (Interactive)
Rubric: v2026.08.2
## Failing checks (sorted by weight)
- **[C1] Markdown content negotiation** — FAIL
- Evidence: Accept: text/markdown → 200 (text/html; charset=utf-8)
- Fix: Serve text/markdown when the client sends Accept: text/markdown, or publish /index.md.
- **[M4] Machine-readable pricing** — PARTIAL
- Evidence: JSON-LD offer on homepage (no price fields, price 0 only — paid plans not described): {"@context":"https://schema.org","@type":"ProfessionalService","name":"Xgenious","url":"https://xgenious.com","priceRange":"$$$","areaServed":["US","GB","AE","BD"],"hasOfferCatalog
- Fix: Publish schema.org Offer / AggregateOffer JSON-LD on your pricing page with price, priceCurrency and the billing period, so an agent can answer "what does this cost?" without scraping prose.
- **[E4] HTTPS & canonical host** — PARTIAL
- Evidence: final origin https://xgenious.com · http:// upgrades to https · www.xgenious.com serves its own copy (duplicate origin) · HSTS set
- Fix: Serve the site over HTTPS, 301-redirect http:// to https://, and redirect the www/apex variant to a single canonical host so agents don't index two copies of every URL.
- **[E2] Machine-readable API description** — FAIL
- Evidence: no /openapi.json, /api/openapi.json or swagger document found
- Fix: Publish an OpenAPI 3.1 document at /openapi.json and reference it from /.well-known/api-catalog as a service-desc link.
- **[E5] Content feed (RSS / Atom / JSON Feed)** — PARTIAL
- Evidence: RSS feed at https://xgenious.com/feed (found by convention, not declared in <head>)
- Fix: Publish an RSS, Atom, or JSON Feed of new content and declare it in <head> with <link rel="alternate" type="application/rss+xml">. Feeds give agents a cheap, dated changelog of your site that a sitemap doesn't.
## General guidance
- Static-first: `robots.txt`, `llms.txt`, `/.well-known/*` JSON cards.
- Markdown negotiation: serve `text/markdown` when requested via `Accept` header or `?format=md`.
- Bot access: explicit allow/deny per AI user-agent (GPTBot, ClaudeBot, PerplexityBot, Google-Extended, Applebot-Extended, Bytespider, Amazonbot, CCBot, meta-externalagent, cohere-ai, Diffbot).
- Capabilities: publish an MCP server card and (optionally) an Agent Skills manifest even if the runtime isn't live — discovery first.
- Re-scan at aiscan.site after deploying.
How this score is calculated
Every check earns points against a weight. We divide the points you earned by the points that actually apply to a Next.js — so checks that don't apply never drag you down.
Baseline every site should meet.
Strong signals most sites benefit from.
Emerging standards. Can only add points.
Not counted (6): B1, B3, P2, P3, M1, M3 — either not applicable to this site profile or optional and not yet adopted. Expand any check to see the exact evidence we based it on.
Discoverability
95Can agents find your pages? robots, sitemaps, llms.txt.
Content
64Can agents read your content cleanly? Markdown, structured data.
Your site is missing this right now, so AI agents can't use it. The fix below is what to change.
ID · C1
What we foundAccept: text/markdown → 200 (text/html; charset=utf-8)
How to fix itServe text/markdown when the client sends Accept: text/markdown, or publish /index.md.
Serve text/markdown on Accept negotiation
When a client sends
Accept: text/markdown, return a markdown rendering of the same content. The simplest path is to publish parallel.mdfiles (e.g./about→/about.md) and rewrite based on the Accept header.Test it
curl -H "Accept: text/markdown" https://yoursite.com/
Bot Access
100Are AI crawlers explicitly allowed or blocked?
Capabilities
73Can agents do things? APIs, auth, MCP, Agent Skills.
Your site is missing this right now, so AI agents can't use it. The fix below is what to change.
ID · E2
What we foundno /openapi.json, /api/openapi.json or swagger document found
Measured againstHow to fix itPublish an OpenAPI 3.1 document at /openapi.json and reference it from /.well-known/api-catalog as a service-desc link.
Publish an OpenAPI 3.1 description
Serve it at
/openapi.json(or/openapi.yaml). Describe every public endpoint, its parameters, and its response schema.Advertise it
Reference it from
/.well-known/api-catalogas aservice-desclink and from aLinkresponse header.Link: </openapi.json>; rel="service-desc"; type="application/json"
Content sites can skip this
If you expose no programmatic API, this check is informational and costs you nothing.
Commerce
33Can agents transact? Catalogs, checkout, agentic commerce.
Embed your AIScan badge
Drop this badge into your site footer, GitHub README, or docs. It links back to a fresh scan of xgenious.com on AIScan.site.
<!-- AIScan.site agent-readiness badge --> <a href="https://aiscan.site/?u=https%3A%2F%2Fxgenious.com%2F" target="_blank" rel="noopener" title="Agent-Readiness Grade B (74/100) — AIScan.site"> <img src="https://aiscan.site/api/public/badge.svg?score=74&grade=B&host=xgenious.com" alt="AIScan.site Grade B — 74/100" width="240" height="64" loading="lazy" /> </a>
[](https://aiscan.site/?u=https%3A%2F%2Fxgenious.com%2F)
Create a free account to track this site over time
- Save scan history
- See score trends
- Re-scan anytime
Dig deeper
xgenious.com is built on Next.js. AI-agent readiness for Next.js walks through the same checks on that platform.
This page always shows the most recent public scan for xgenious.com.