SEO Guide Generator
This skill automates the creation of "Encyclopedia-style" guide pages for the Picksy marketplace. It uses AI to generate authoritative content about specific collectible categories, sets, or items, helping to capture long-tail search traffic and funnel users to active listings.
Workflow
- •Identify Target: Determine the specific subject for the guide (e.g., "1986 Fleer Basketball", "Pokemon Base Set", "Australian Gold Sovereigns").
- •Generate Content: Use the
scripts/generate-guide-content.tsscript to call the AI (Gemini Pro) and generate the "Investment Profile", "History", and "Key Cards" sections. - •Create Page: Use the
scripts/create-next-page.tsscript to scaffold a new Next.js page insrc/app/guide/[slug]/page.tsx(or similar) using the generated content. - •Inject Data: The page template automatically fetches live market data (active listings, recent sales) to keep the page fresh.
Usage
1. Generate a Guide
Run the generation script with the target topic:
bash
npx ts-node .gemini/skills/seo-guide-generator/scripts/generate-guide.ts --topic "1999 Pokemon Base Set" --slug "pokemon-base-set-1999"
2. (Optional) Bulk Generation
To generate multiple guides from a list:
bash
npx ts-node .gemini/skills/seo-guide-generator/scripts/bulk-generate.ts --file topics.json
Resources
- •
scripts/generate-guide.ts: The main orchestration script. - •
assets/GuidePageTemplate.tsx: The React component template for the guide page. - •
references/seo-structure.md: Guidelines for H1, H2, and metadata structure.