Generate SEO-optimized page structures from keywords. Use when you need to create landing pages, guide pages, comparison pages, or hub pages from trending keywords. Handles search intent classification, template selection, meta tag generation, schema markup, and SERP competitor analysis.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Generate SEO-optimized page structures from keywords. Use when you need to create landing pages, guide pages, comparison pages, or hub pages from trending keywords. Handles search intent classification, template selection, meta tag generation, schema markup, and SERP competitor analysis.
{"type":"object","properties":{"keyword":{"type":"string","description":"Target keyword or search phrase"},"growth_rate":{"type":"string","description":"Optional trend growth rate (e.g. '+400%')"},"category":{"type":"string","description":"Optional content category"},"enrich":{"type":"boolean","description":"Enable SERP enrichment via search API (default: true)"}},"required":["keyword"]}
output_schema
{"type":"object","properties":{"intent":{"type":"object","description":"Classified search intent with confidence score"},"template":{"type":"object","description":"Selected page template with sections and requirements"},"meta":{"type":"object","description":"Generated meta tags (title, description, OG)"},"schema_markup":{"type":"object","description":"JSON-LD schema markup for the page"},"content_outline":{"type":"object","description":"Page structure with H1, slug, and section outline"},"serp_data":{"type":"object","description":"SERP competitor data (when enrichment enabled)"}}}
metadata
{"requires":{"env":["CLAW0X_API_KEY"]}}
SEO Page Generator
Turn trending keywords into production-ready SEO page structures in seconds.
$0.01 per successful call. Failed calls are free.
Quick Reference
When This Happens
Do This
What You Get
Found a trending keyword
Send keyword + growth rate
Complete page blueprint
Need to create a landing page
Send target keyword
Intent-matched template + meta tags
Building content at scale
Batch keywords
Page structures with schema markup
Competitor research
Enable SERP enrichment
Top 5 competitors + related queries
5-Minute Quickstart
Step 1: Get API Key
Sign up at claw0x.com → Dashboard → Create API Key
"Compare the best AI writing tools 2026 options. Detailed pros & cons, pricing, and our honest recommendation."
}
,
"schema_markup"
:
{
"@context"
:
"https://schema.org"
,
"@type"
:
"ItemList"
,
"..."
}
,
"content_outline"
:
{
"h1"
:
"best AI writing tools 2026"
,
"slug"
:
"best-ai-writing-tools-2026"
,
"sections"
:
[
]
}
,
"serp_data"
:
{
"people_also_ask"
:
[
"What is the best AI writing tool?"
,
"..."
]
,
"top_competitors"
:
[
]
}
}
Step 4: Build Your Page
Use the blueprint to generate your actual page content. The template, meta tags, and schema markup are ready to drop into your Next.js / Astro / Hugo project.
Problem: You found "yba codes" trending +400% on Google Trends but creating a page takes hours.
Solution: Send the keyword → get a transactional template with codes page structure, FAQ schema, and competitor data.
Result: Page blueprint in 2 seconds instead of 2 hours.
Scenario 2: Content Site Scaling
Problem: You need to create 50 SEO pages for a new content site.
Solution: Batch your keyword list through the API → get intent-matched templates for each.
Result: 50 page blueprints with correct schema markup, meta tags, and content outlines.
Scenario 3: Competitor Gap Analysis
Problem: You want to know what competitors rank for before creating content.
Solution: Enable SERP enrichment → get top 5 competitors, their titles, and content gaps.
Result: Data-driven content strategy instead of guesswork.
Integration Recipes
OpenClaw Agent
import { Claw0xClient } from'@claw0x/sdk';
const claw0x = newClaw0xClient(process.env.CLAW0X_API_KEY);
// Generate page structure for a trending keywordconst result = await claw0x.call('seo-page-generator', {
keyword: 'how to use Claude MCP',
growth_rate: '+200%',
});
console.log(`Intent: ${result.data.intent.type}`);
console.log(`Template: ${result.data.template.type}`);
console.log(`H1: ${result.data.content_outline.h1}`);