Install
openclaw skills install @asif2bd/aiscan-ai-readiness-scannerAIScan v1.4.0 audits websites for AI-agent readiness, MCP discoverability, LLM access, framework signals, and fix-ready remediation.
openclaw skills install @asif2bd/aiscan-ai-readiness-scannerLive Scanner · REST API Docs · MCP Endpoint · Changelog
Use this skill when a user wants to know whether a website is ready for AI agents, LLM crawlers, MCP-aware tools, ChatGPT, Claude, Perplexity, or programmatic discovery.
In simple language:
"Scan this website and tell me what stops AI agents from understanding, crawling, citing, or using it. Then give me the exact fixes."
AIScan is a hosted scanner at https://aiscan.site. It returns a 0-100 score, maturity level, platform detection, dimension scores, failing checks, and plain-English fixes that agents can apply safely.
AIScan looks for the signals modern AI agents need:
robots.txt availability and AI crawler rulesllms.txt structure and usefulnessAccept: text/markdown/.well-known/mcp/server-card.json/.well-known/agent-skills/index.jsonThe live AIScan product has moved beyond the original scanner:
/api/public/scan/changeloghttps://aiscan.site/r/abc12345/api/public/scan/api/mcp/aiscan-skill.json/CLAUDE.mdllms.txt, API catalog, MCP server card, and AI-friendly robots.txt/api/public/badge.svgTrigger on requests like:
status is fail or partial.remediation and fixGuide; do not invent check IDs or fake fixes.Prefer POST:
curl -sS -X POST https://aiscan.site/api/public/scan \
-H 'Content-Type: application/json' \
-d '{"url":"https://example.com"}'
GET is also supported:
curl -sS 'https://aiscan.site/api/public/scan?url=https://example.com'
Browser-friendly docs are available at:
https://aiscan.site/api/public/scan
Rate limit: 5 scans per minute per IP. Do not loop scans. Scan, fix, then re-scan once.
AIScan exposes a streamable HTTP MCP server:
https://aiscan.site/api/mcp
Available tools:
scan_website — full scan result JSONget_fixes — failing and partial checks onlyget_grade — score and grade onlyIf the current runtime supports MCP server registration, add AIScan as a streamable HTTP MCP server. If not, use the REST endpoint.
Key fields:
overallScore — 0-100 readiness scorelevel and levelName — maturity levelplatform.platform — detected stackplatform.confidence — confidence percentagechecks[] — individual audit checksdimensions — grouped scores for discoverability, content, bot access, capabilities, and commercerubricVersion — scoring rubric versionGrade mapping:
| Score | Grade |
|---|---|
| 90-100 | A |
| 75-89 | B |
| 60-74 | C |
| 40-59 | D |
| 0-39 | F |
Filter checks where status is fail or partial. Skip pass, na, and optional info checks unless the user explicitly wants optional improvements.
Common platform mappings:
public/robots.txt, public/llms.txt, generated sitemap, static .well-known/* files, deployment headersrobots.txt, sitemap settings, theme functions.php, or a small mu-pluginrobots.txt.liquid, theme templates, app metadata, platform-supported sitemap behaviorImportant: a clean 404 is better than returning homepage HTML for machine endpoints like /.well-known/mcp/server-card.json.
Use this concise format in chat:
AIScan result for <url>
Score: <score>/100 (<grade>) — <levelName>
Platform: <platform> (<confidence>% confidence)
Top fixes:
1. <check name> — <remediation>
2. <check name> — <remediation>
3. <check name> — <remediation>
Next step: I can apply the safe fixes, then re-scan to confirm the score improvement.
For a file report, include:
https://aiscan.sitehttps://aiscan.site/api/public/scanhttps://aiscan.site/api/mcphttps://aiscan.site/aiscan-skill.jsonhttps://aiscan.site/CLAUDE.mdhttps://aiscan.site/.well-known/mcp/server-card.jsonhttps://aiscan.site/changeloghttps://aiscan.site/llms.txthttps://aiscan.site/api/public/badge.svg?url=https://example.comrobots.txt, llms.txt, MCP cards, API catalogs, or skill manifests.This package includes reference copies of AIScan public artifacts under assets/:
assets/aiscan-skill.jsonassets/CLAUDE.mdassets/mcp-server-card.jsonassets/llms.txtThe live source of truth remains https://aiscan.site.