Skip to content

Inari-Kira-Isla/cloudpipe-aeo-toolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

2 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

CloudPipe AEO Toolkit

πŸ•ΈοΈ Open-source tools for building AI-optimized websites at scale. Built for the AI search era.

License: MIT Sites AEO Score Stars

Live Showcase β€” 27 sites, 100% A+

Showcase Preview

Template A β€” Conversion (Warm Gold)

Template A

Template B β€” Editorial (Dark Magazine)

Template B


What is AEO?

Answer Engine Optimization β€” making your website visible to AI search engines (ChatGPT, Claude, Perplexity, Gemini) in addition to traditional SEO. In 2026, AI bots account for 30%+ of web traffic. If your site isn't AEO-optimized, you're invisible to a third of the internet.

What's Included

🎨 3 Strategy Templates

Production-ready HTML templates with full AEO layer built-in. Each targets a different business goal.

Template Style Best For KPI
A β€” Conversion Warm gold, trust-building B2B, consultants, high-ticket Click-through rate
B β€” Storytelling Dark editorial, magazine-style Premium brands, creative studios Read time, scroll depth
C β€” Performance Clean white, mobile-first Local shops, retail, delivery Mobile conversion, 5s contact

Every template includes:

  • Schema.org JSON-LD (LocalBusiness / Organization + FAQPage)
  • Open Graph complete metadata
  • Structured FAQ (directly quotable by AI)
  • All 【placeholder】 markers for easy customization

πŸ”§ Site Builder Tools

Tool Description
site_builder.py Python builder β€” generates complete site from DB config
template_renderer.py 3-strategy template engine β€” renders A/B/C with brand data
onboard_client.py One-command site creation CLI
site_quality_audit.py 12-indicator AEO quality scorer (90-point scale)
batch_upgrade.py Bulk AEO injection engine β€” upgrade 27 sites in 5 minutes
system_health.py Multi-site health dashboard

🐺 Encyclopedia Hound

24/7 monitoring for content generation pipelines. Tracks heartbeat, error rates, output volume, and auto-restarts dead workers. Telegram alerts with cooldown.

πŸ’¬ AI Chatbot Worker

Cloudflare Worker that proxies MiniMax API for multi-brand AI customer service. Each brand gets its own character, knowledge base, and conversation history (D1 database).

Quick Start

1. Create a site in 5 minutes

python3 onboard_client.py \
  --name "My Cafe" \
  --name-en "My Cafe" \
  --industry cafe \
  --template performance \
  --description "Best coffee in town" \
  --phone "+853-1234-5678" \
  --chatbot

2. Audit your site's AEO score

python3 site_quality_audit.py --slug my-cafe

3. Bulk upgrade all sites to A+

python3 batch_upgrade.py --dry-run    # Preview changes
python3 batch_upgrade.py --execute    # Apply

4. Monitor encyclopedia pipeline

python3 encyclopedia_hound.py --status   # Live dashboard
python3 encyclopedia_hound.py --check    # Health check + auto-fix

AEO Checklist

Every site generated by this toolkit passes all 12 checks:

  • index.html β€” renderable, 5000+ bytes
  • llms.txt β€” AI crawler discovery manifest
  • robots.txt β€” allows GPTBot, ClaudeBot, PerplexityBot + 20 more
  • sitemap.xml β€” structured URL discovery
  • Schema.org JSON-LD β€” Organization/LocalBusiness
  • FAQPage Schema β€” structured Q&A for AI citation
  • Open Graph meta β€” social sharing
  • BingSiteAuth.xml β€” Bing verification
  • AI Chatbot widget β€” interactive assistant
  • Tracker pixel β€” visit analytics
  • Content depth β€” 5000+ bytes
  • IndexNow key β€” instant search engine notification

Architecture

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚         onboard_client.py               β”‚
β”‚    (one-command site creation)           β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚ Template A β”‚ Template B β”‚  Template C   β”‚
β”‚ Conversion β”‚ Editorial  β”‚  Performance  β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚         template_renderer.py            β”‚
β”‚    (brand data β†’ HTML + AEO files)      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚  llms.txt β”‚ robots.txt β”‚ sitemap.xml   β”‚
β”‚  Schema   β”‚ FAQPage    β”‚ IndexNow      β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚    site_quality_audit.py (12 checks)    β”‚
β”‚    batch_upgrade.py (bulk injection)    β”‚
β”‚    system_health.py (multi-site dash)   β”‚
β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
β”‚  Cloudflare Worker (AI Chatbot)         β”‚
β”‚  AI Tracker (D1 + Supabase)             β”‚
β”‚  Encyclopedia Hound (24/7 monitoring)   β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

Live Demo

See all 27 sites in action: CloudPipe Showcase

Tech Stack

  • Templates: Pure HTML/CSS/JS (zero dependencies)
  • Tools: Python 3.10+ (stdlib only, no pip install needed)
  • Chatbot: Cloudflare Workers + D1 + MiniMax API
  • Tracking: Cloudflare Workers + Supabase
  • Deployment: GitHub Pages / Vercel (auto-deploy on push)
  • Monitoring: LaunchAgent cron + Telegram alerts

Contributing

PRs welcome! Especially:

  • New industry templates
  • Additional AEO checks
  • Translations (currently zh-TW, en)
  • Integration with other AI APIs

License

MIT β€” use freely, attribution appreciated.


Built by CloudPipe Β· Powered by OpenClaw Β· Macau πŸ‡²πŸ‡΄

About

πŸ•ΈοΈ Open-source AEO toolkit β€” Make your website visible to ChatGPT, Claude & Perplexity. 3 templates, 12-point audit, one-command site builder. Powers 27 sites at 100% A+.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors