소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill programmatic-seo-pages명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | programmatic-seo-pages |
| description | >- Use when this capability is needed. |
Generate many high-intent SEO pages from a single template + a dataset. Done right, this captures long-tail traffic the brand team would never write by hand. Done wrong, you ship thin doorway pages and tank the whole domain.
Companion skills: programmatic-seo-content-quality, seo-ssr-and-prerendering, seo-meta-tags-spa, seo-structured-data, seo-sitemap-generation.
| Pattern | Examples | Search intent |
|---|---|---|
| Location pages | /locations/[city], /dentist/[city] | "dentist in austin" |
| Comparisons | /compare/[a]-vs-[b] | "notion vs evernote" |
| Alternatives | /alternatives/[brand] | "alternatives to mailchimp" |
| Integrations | /integrations/[tool] | "stripe integration" |
| Templates / use-cases | /templates/[category]/[name] | "marketing plan template" |
| Glossary / wiki | /glossary/[term] | "what is bounce rate" |
Pick one or two patterns first. Don't ship five at once.
Each template needs a row per page with enough unique data to justify existence:
create table public.location_pages (
slug text primary key,
city text not null,
state text not null,
country text not null,
lat numeric, lng numeric,
service_areas text[],
testimonials jsonb,
avg_price_cents int,
faqs jsonb, -- [{ q, a }]
hero_image_url text,
published boolean default false,
noindex boolean default false,
created_at timestamptz default now(),
updated_at timestamptz default now()
);
create index location_pages_published_idx on public.location_pages (published) where published = true;
Rules:
published boolean so drafts never leak into sitemap.noindex flag per row — kill underperformers without deleting.// /locations/[slug]
export default function LocationPage() {
const { slug } = useParams();
const { data: page } = useLocationPage(slug);
if (!page) return <NotFound />;
return (
<>
<Seo
title={`${page.service} in ${page.city}, ${page.state}`}
description={`Find ${page.service} in ${page.city}. ${page.unique_hook}.`}
path={`/locations/${page.slug}`}
image={page.hero_image_url}
/>
<JsonLd data={buildLocalBusinessSchema(page)} />
<JsonLd data={buildFaqSchema(page.faqs)} />
<JsonLd data={buildBreadcrumbSchema(page)} />
<Hero city= = = />
);
}
Each section must take page-specific data. If your testimonials section says "Loved by customers" identically on every page, it's filler.
These pages must be in the raw HTML — Googlebot can render JS, but at scale you'll hit crawl-budget issues.
// vite-ssg includedRoutes
export async function includedRoutes() {
const slugs = await fetchAllPublishedSlugs();
return [
"/",
"/pricing",
...slugs.map((s) => `/locations/${s}`),
];
}
For thousands of pages: split into chunks and run prerender in parallel, or move to true SSR (seo-ssr-and-prerendering).
/alternatives/[brand] not /best/alternatives/to/[brand]/2026.mailchimp-alternatives not the-best-mailchimp-alternatives).Programmatic pages need internal links to be discovered and ranked:
/locations lists all cities; /integrations lists all tools.RelatedX component per template, deterministic per row (sorted by proximity, popularity, etc.).Generate dynamically — one PNG per row, cached.
og:image.@vercel/og) or Cloudflare Workers — generate on first request, cache.Cheap fallback: a single branded OG with the page title overlaid via CSS in a screenshot service.
programmatic-seo-content-quality).published + noindex flags so you can curate.sitemap.xml only when published = true.Source: charanjit-singh/lovable-skills — distributed by TomeVault.