Introduction
In this tutorial, we'll explore how to use Vercel's Is Agentic tool to audit website readiness for AI agents. This tool leverages Ora's comprehensive 100+ checks to evaluate how well websites are prepared to interact with AI agents. Understanding website readiness for AI agents is crucial as we move toward more intelligent web experiences. We'll walk through the process of auditing a website, interpreting the results, and implementing recommended improvements.
Prerequisites
- A public website that you want to audit
- Access to the Is Agentic tool (available at https://isagentic.vercel.app)
- Basic understanding of website structure and SEO concepts
- Access to your website's source code or content management system
Step-by-Step Instructions
1. Access the Is Agentic Tool
Navigate to https://isagentic.vercel.app in your web browser. This is the official interface for the tool that will analyze your website's readiness for AI agents. The tool is completely free to use and requires no account registration.
2. Enter Your Website URL
On the main interface, you'll see a URL input field. Enter the full URL of the website you want to audit. For this tutorial, we'll use a sample website URL like https://example.com. Ensure that the website is publicly accessible and has proper SSL certificates for accurate analysis.
3. Initiate the Audit Process
Click the "Audit" button after entering your URL. The tool will begin analyzing your website using Ora's 100+ checks. This process typically takes a few seconds to complete, during which the tool examines various aspects of your site including content structure, metadata, API readiness, and agent interaction capabilities.
4. Review the Overall Score
Once the audit is complete, you'll see an overall readiness score for AI agents. This score typically ranges from 0 to 100, with higher scores indicating better preparedness. The tool will also provide a summary of the key findings and areas that need improvement. Understanding this score helps prioritize your optimization efforts.
5. Analyze Detailed Audit Results
Click on the detailed audit results to see the breakdown of all 118 checks. The tool categorizes these checks into several key areas:
- Content Structure and Semantics
- Metadata and Schema Markup
- API and Data Accessibility
- Agent Interaction Patterns
- Security and Privacy Considerations
Each category will show a score and detailed explanations of what was found. Pay special attention to any failing checks, as these represent areas that need immediate attention.
6. Examine Specific Check Results
For each failing check, the tool provides specific recommendations for improvement. For example, if a check fails due to missing schema markup, the tool will show you exactly what type of schema to add and where to place it. This granular feedback is crucial for implementing effective fixes.
7. Implement Recommended Improvements
Based on the audit results, start implementing the recommended improvements. For instance, if your site lacks proper semantic HTML structure:
<!-- Before -->
<div class="header">Header Content</div>
<div class="content">Main Content</div>
<!-- After -->
<header>Header Content</header>
<main>Main Content</main>
Similarly, if schema markup is missing:
<!-- Add to your HTML head -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Your Website Name",
"url": "https://example.com"
}
</script>
These changes help AI agents better understand and interact with your website's content.
8. Re-audit Your Website
After implementing improvements, run the audit again to see how your scores have changed. This iterative process helps you track progress and ensure that your website is becoming more agent-ready over time. The tool will show you the before and after scores for each category, making it easy to see the impact of your changes.
9. Monitor Ongoing Readiness
Website readiness for AI agents is an ongoing process. As AI technologies evolve, so do the requirements for agent readiness. Regular audits using Is Agentic will help you stay ahead of these changes and maintain optimal performance for AI interactions.
Summary
This tutorial demonstrated how to use Vercel's Is Agentic tool to audit website readiness for AI agents. By following these steps, you've learned how to access the tool, run audits, interpret results, and implement improvements. The key takeaway is that website readiness for AI agents requires attention to structured content, proper metadata, and semantic HTML. Regular audits using Is Agentic will help you maintain and improve your site's performance in the evolving AI landscape. Remember that this is an iterative process, and continuous improvement is essential as AI agent capabilities advance.


