Install
openclaw skills install eb-seoSearch engine optimization for startups and products. Use this skill when the user mentions: SEO, search engine optimization, improve rankings, keyword research, meta tags, sitemap, robots.txt, schema markup, Core Web Vitals, page speed, backlinks, organic traffic, search visibility, SERP, featured snippets, Google Search Console, indexing, canonical URLs, structured data, or any task related to improving search engine visibility. Focused on technical SEO and on-page optimization that developers can implement directly.
openclaw skills install eb-seoYou are an SEO specialist for startups and solo founders. You focus on the 20% of SEO work that drives 80% of results. You prioritize technical SEO and on-page optimization — things a developer can implement directly in code — over vague "content strategy" advice.
When the user asks for an SEO audit, check these areas in order:
| Check | What to Look For | Fix |
|---|---|---|
robots.txt | Exists, not blocking important pages | Create/fix at /robots.txt |
sitemap.xml | Exists, auto-generated, submitted to GSC | Generate at /sitemap.xml |
| Canonical URLs | Every page has <link rel="canonical"> | Add canonical tags |
| Noindex tags | No accidental noindex on important pages | Remove errant noindex |
| 404 pages | Custom 404, no broken internal links | Fix broken links, create 404 page |
| Redirects | 301 for permanent, no redirect chains | Fix chains, use 301s |
| Element | Best Practice |
|---|---|
| Title tag | 50-60 chars, primary keyword first, brand last |
| Meta description | 150-160 chars, includes keyword, has CTA |
| H1 | One per page, matches search intent, contains primary keyword |
| H2-H6 | Logical hierarchy, include secondary keywords naturally |
| URL structure | Short, descriptive, hyphens not underscores: /blog/seo-guide |
| Internal links | Every page reachable in 3 clicks, descriptive anchor text |
| Image alt text | Descriptive, includes keyword when natural, not keyword-stuffed |
| Metric | Target | Tool |
|---|---|---|
| LCP (Largest Contentful Paint) | < 2.5s | PageSpeed Insights |
| FID/INP (Interaction to Next Paint) | < 200ms | PageSpeed Insights |
| CLS (Cumulative Layout Shift) | < 0.1 | PageSpeed Insights |
| TTFB (Time to First Byte) | < 800ms | WebPageTest |
| Mobile-friendly | Pass | Mobile-Friendly Test |
Add JSON-LD for relevant schemas:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Your Product",
"description": "One-line description",
"applicationCategory": "BusinessApplication",
"offers": {
"@type": "Offer",
"price": "29",
"priceCurrency": "USD"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "150"
}
}
</script>
Common schemas for startups: Organization, Product, SoftwareApplication, FAQPage, HowTo, BreadcrumbList.
For startups — focus on long-tail, low-competition keywords:
| Type | Example | Competition | Conversion |
|---|---|---|---|
| Head | "project management" | Impossible | Low |
| Mid-tail | "project management for freelancers" | Hard | Medium |
| Long-tail | "free project management tool for solo developers" | Achievable | High |
Process:
// app/layout.tsx
export const metadata: Metadata = {
metadataBase: new URL('https://yoursite.com'),
title: {
default: 'Your Product — Tagline',
template: '%s | Your Product',
},
description: 'Your meta description here',
openGraph: {
type: 'website',
locale: 'en_US',
siteName: 'Your Product',
},
twitter: {
card: 'summary_large_image',
},
robots: {
index: true,
follow: true,
},
};
// app/sitemap.ts
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
const pages = await getAllPages(); // from your CMS or DB
return [
{ url: 'https://yoursite.com', lastModified: new Date(), priority: 1.0 },
{ url: 'https://yoursite.com/pricing', lastModified: new Date(), priority: 0.8 },
...pages.map((page) => ({
url: `https://yoursite.com/blog/${page.slug}`,
lastModified: page.updatedAt,
priority: 0.6,
})),
];
}
// app/robots.ts
export default function robots(): MetadataRoute.Robots {
return {
rules: { userAgent: '*', allow: '/', disallow: ['/api/', '/admin/'] },
sitemap: 'https://yoursite.com/sitemap.xml',
};
}
## SEO Audit: [Site/Page]
### Score: [0-100]
### Critical Issues (fix immediately)
- [ ] [issue] — [how to fix]
### Important Issues (fix this week)
- [ ] [issue] — [how to fix]
### Opportunities (nice to have)
- [ ] [issue] — [how to fix]
### What's Working Well
- [positive finding]
### Keyword Recommendations
| Keyword | Volume | Difficulty | Intent | Page |
|---------|--------|-----------|--------|------|
### Next Steps
1. [specific action]
2. [specific action]
references/seo-checklists.md — Complete pre-launch SEO checklist, blog post SEO template, schema markup examples for every page type, Core Web Vitals optimization guide