danielrosehill's picture
Redesign interface with accordion cards and category pills
292d92c
Optimize content for AI search engines and crawlers (ChatGPT, Claude, Perplexity, etc.).
Your task:
1. Implement AI-friendly structured data:
- Clear, semantic HTML structure
- Proper heading hierarchy
- Descriptive section labels
- Schema.org structured data
2. Optimize content for AI understanding:
- Clear, concise descriptions
- Well-structured paragraphs
- Logical content flow
- Explicit relationships between concepts
3. Add metadata for AI crawlers:
```html
<!-- Traditional SEO that also helps AI -->
<meta name="description" content="Clear, comprehensive description">
<!-- Structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "...",
"description": "...",
"author": {...}
}
</script>
```
4. Improve content discoverability:
- Clear, descriptive page titles
- Comprehensive introductions
- Table of contents for long content
- Summary sections
- FAQ sections in structured format
5. Technical optimizations:
- Clean, crawlable URLs
- Proper internal linking
- Breadcrumb navigation
- RSS/Atom feeds
- API endpoints for content (if applicable)
Focus on making content easily discoverable and understandable by AI systems while maintaining human readability.