원클릭으로
agent-ready-scan-site
Sub-skill de agent-ready-cloudflare: Skill: Scan Site for Agent Readiness
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sub-skill de agent-ready-cloudflare: Skill: Scan Site for Agent Readiness
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Validate DESIGN.md files against the official Google specification using the `@google/design.md` CLI linter. Works with local files and remote URLs. Use when the user wants to lint a DESIGN.md, check spec compliance, find broken token references, verify WCAG contrast ratios, diff two versions, export tokens to Tailwind or DTCG format, or audit a design system file for structural correctness. Trigger on mentions of "validate DESIGN.md", "lint DESIGN.md", "check my design.md", "design.md spec compliance", "WCAG contrast check", "broken token references", "design token validation", "export design tokens", "diff design systems", "design.md audit", "@google/design.md", "npx design.md lint", "design system validation", "frontmatter tokens", or any request to verify a DESIGN.md file.
Evaluate any agent skill against a merged framework — Anthropic's Claude Code best practices plus Matt Pocock's writing-great-skills methodology — across 4 axes (Trigger, Structure, Steering, Pruning). Produces an evidence-cited scorecard (0–100), a weighted overall score, and diagnosed failure modes with prioritized fixes. Use when the user asks to evaluate, rate, or audit a skill ("evaluate this skill", "skill scorecard", "review SKILL.md"), or to compare two skills.
Reescreve textos em português brasileiro para soarem mais humanos e naturais, reduzindo padrões típicos de escrita gerada por IA sem alterar fatos, argumento ou intenção. Use quando o texto em PT-BR parecer genérico, burocrático ou gerado por IA, ou quando o usuário pedir para "humanizar", "dar vida", "tirar cara de IA", "remover AI slop" ou "reescrever com voz". Para textos em inglês, use a skill-irmã `human-ai`.
Sub-skill de agent-ready-cloudflare: Implement A2A Agent Card
Sub-skill de agent-ready-cloudflare: Implement ACP Discovery Document
Sub-skill de agent-ready-cloudflare: Implement Agent Skills Discovery Index
| name | agent-ready-scan-site |
| description | Sub-skill de agent-ready-cloudflare: Skill: Scan Site for Agent Readiness |
Scans any website URL and checks whether it implements the standards and protocols that make it accessible to AI agents. Checks 18 standards across 5 categories: discoverability, content accessibility, bot access control, API/auth/MCP discovery, and commerce. Returns a readiness level (0-5), the status of all 18 checks, and fix instructions for any failing checks.
Send a POST request to the scan API:
POST https://isitagentready.com/api/scan
Content-Type: application/json
{"url": "https://example.com", "format": "agent"}
url (required): The URL to scan. Must be a valid HTTP or HTTPS URL.format (optional): Set to "agent" for a markdown response with fix instructions, or "json" (default) for structured data.Alternatively, connect to the MCP server at:
https://isitagentready.com/mcp
Call the scan_site tool with a url parameter.
The response includes:
level: Integer 0-5 indicating overall readinesslevelName: Human-readable level name (e.g., "Agent-Readable")checks: Object with 5 categories, each containing individual check resultsnextLevel: What's needed to reach the next levelstatus ("pass", "fail", or "unableToCheck") and a messageReturns a markdown document listing:
| Level | Name | Key Requirements |
|---|---|---|
| 0 | Not Ready | Fewer than 2 of: robots.txt, sitemap, Link headers |
| 1 | Basic Web Presence | 2 of 3: robots.txt, sitemap, Link headers |
| 2 | Bot-Aware | Level 1 + both: AI bot rules in robots.txt, Content Signals |
| 3 | Agent-Readable | Level 2 + markdown content negotiation |
| 4 | Agent-Integrated | Level 3 + 1 of 4: MCP Server Card, agent skills, API catalog, WebMCP |
| 5 | Agent-Native | Level 4 + 2 of 4: Web Bot Auth, all integrations, commerce (UCP/x402), auth metadata |