skills/seo-basic/SKILL.md
Add essential SEO to vibe-kit projects: meta tags, Open Graph, sitemap.xml, robots.txt, and structured data. Optimised for Vietnamese content and Google search in Vietnam market.
npx skillsauth add Hikkywannafly/vibe-kit seo-basicInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Add the minimum SEO needed for a vibe-kit project to rank on Google Vietnam and share correctly on Facebook/Zalo. Covers static and dynamic metadata.
import type { Metadata } from "next"
export const metadata: Metadata = {
metadataBase: new URL("https://tenwebsite.vn"),
title: {
default: "Ten Cua Hang | Mua sam truc tuyen",
template: "%s | Ten Cua Hang",
},
description: "Mo ta ngan gon 150-160 ky tu — hien thi tren Google.",
keywords: ["san pham", "mua online", "giao hang toan quoc"],
authors: [{ name: "Ten Cua Hang" }],
openGraph: {
title: "Ten Cua Hang | Mua sam truc tuyen",
description: "Mo ta cho Facebook/Zalo khi chia se link",
url: "https://tenwebsite.vn",
siteName: "Ten Cua Hang",
images: [{ url: "/og-image.jpg", width: 1200, height: 630, alt: "Ten Cua Hang" }],
locale: "vi_VN",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Ten Cua Hang",
images: ["/og-image.jpg"],
},
robots: { index: true, follow: true },
alternates: { canonical: "https://tenwebsite.vn" },
}
// app/products/[id]/page.tsx
export async function generateMetadata({ params }: { params: { id: string } }): Promise<Metadata> {
const product = await getProduct(params.id)
return {
title: product.name,
description: product.description?.slice(0, 155),
openGraph: { images: [product.image_url] },
}
}
import { MetadataRoute } from "next"
export default function sitemap(): MetadataRoute.Sitemap {
return [
{ url: "https://tenwebsite.vn", lastModified: new Date(), changeFrequency: "daily", priority: 1 },
{ url: "https://tenwebsite.vn/shop", lastModified: new Date(), changeFrequency: "daily", priority: 0.8 },
{ url: "https://tenwebsite.vn/lien-he", lastModified: new Date(), changeFrequency: "monthly", priority: 0.5 },
]
}
Sitemap auto-served at /sitemap.xml.
import { MetadataRoute } from "next"
export default function robots(): MetadataRoute.Robots {
return {
rules: { userAgent: "*", allow: "/", disallow: ["/api/", "/dashboard/"] },
sitemap: "https://tenwebsite.vn/sitemap.xml",
}
}
// In product page component
const jsonLd = {
"@context": "https://schema.org",
"@type": "Product",
name: product.name,
description: product.description,
image: product.image_url,
offers: {
"@type": "Offer",
priceCurrency: "VND",
price: product.price_vnd,
availability: "https://schema.org/InStock",
},
}
return (
<>
<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }} />
{/* page content */}
</>
)
Place public/og-image.jpg at 1200×630px. Use Vietnamese headline text on image
for better CTR when shared on Facebook groups and Zalo.
data-ai
Generate Vietnamese marketing copy, UI strings, CTAs, error messages, and email templates for vibe-kit projects. Tone: friendly, conversational, Southern Vietnamese style. Activated for any user-visible text generation.
development
One-shot orchestrator. Turns the prose after /vibe into a shipped product by clarifying intent, rendering a plan, gating on approval, then spawning planner+researcher+fullstack-dev+tester+reviewer agents in sequence. User-visible strings match the user's input language (Vietnamese by default for VN users). Two modes: SAFE (default — clarify + show plan + wait for approval, max 1 round-trip) and YOLO (skip clarify+approval, run full auto with smart defaults — for demos and power users). YOLO triggers: prose contains `yolo`, `nhanh nha`, `lam luon`, `khoi hoi`, `auto`, or args start with `yolo`. Trigger phrases (EN + VN): "build me a site", "make me a landing page", "create a shop", "I need an app", "vibe lam website", "tao cho toi mot", "xay dung shop online", "lam landing page", "can mot app".
tools
On-demand security audit for vibe-kit projects. Stack-aware checks for Next.js App Router + Supabase + Polar: secrets leak, RLS gaps, service-role key in client bundle, missing webhook signature verification, unprotected API routes, weak headers, dependency vulns. Outputs a Vietnamese P0/P1/P2 report with file:line + fix hints. User-visible strings match the user's input language (Vietnamese by default for VN users). Trigger phrases (EN + VN): "check security", "audit it", "security scan", "is this safe to launch", "kiem tra bao mat", "quet bao mat", "audit du an", "co an toan khong", "scan bao mat truoc khi deploy".
tools
Wire Supabase JS client into a React Native (Expo) vibe-kit project: session persistence via AsyncStorage, magic-link OAuth callback via expo-linking deep links, Realtime subscriptions on RN, and shared TypeScript types with the Next.js webapp twin (vibe-kit's typical web<->mobile pair pattern). This is the mobile counterpart of `auth-magic-link` (web). User-visible strings match the user's input language (Vietnamese by default for VN users). Trigger phrases (EN + VN): "supabase react native", "supabase mobile", "auth mobile expo", "magic link mobile", "tich hop supabase vao app", "supabase deep link".