🎯

pseo-orchestrate

🎯Skill

from lisbeth718/pseo-skills

VibeIndex|
What it does

Orchestrates the complete programmatic SEO workflow by sequentially executing specialized skills to discover, audit, implement, and validate pSEO pages across multiple phases.

πŸ“¦

Part of

lisbeth718/pseo-skills(12 items)

pseo-orchestrate

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add lisbeth718/pseo-skills --skill pseo-orchestrate
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Orchestrate the full programmatic SEO implementation by coordinating all pseo-* skills in the correct order. Use when implementing pSEO from scratch, running the full pSEO pipeline, or when the user asks to "set up programmatic SEO" or "build pSEO pages" without specifying a single skill.

Overview

# pSEO Orchestrator

Coordinate the execution of all pseo-* skills in the correct dependency order to implement or validate a complete programmatic SEO system.

Skill Dependency Graph

```

pseo-discovery (0) ← what should we build? what data exists?

β”‚

β–Ό

pseo-audit (1) ← is the codebase ready for what we want to build?

β”‚

β–Ό

pseo-scale (1.5) ← CONDITIONAL: only if 10K+ pages planned

β”‚

β–Ό

pseo-data (2)

β”‚

β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”

β–Ό β–Ό

pseo-templates (3) pseo-linking (4)

β”‚ β”‚

β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜

β”‚

β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”

β–Ό β–Ό

pseo-metadata (5) pseo-schema (6) ← parallel: both read from data layer

β”‚ β”‚

β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜

β”‚

β”Œβ”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”

β–Ό β–Ό

pseo-performance pseo-llm-visibility ← parallel: independent optimizations

(7) (8)

β”‚ β”‚

β””β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”˜

β–Ό

pseo-quality-guard (9)

```

Note: metadata and schema are independent of each other β€” both read from the data layer and render into templates. Run them in parallel in Phase 4.

Note: pseo-scale only applies when discovery identifies 10K+ pages. It runs after audit to set up database infrastructure, data sufficiency gating, and CDN architecture before the data layer is built. At < 10K pages, skip it entirely.

Execution Modes

`full` (default)

Run the complete pipeline: discover β†’ audit β†’ implement β†’ validate.

`discover-only`

Run only pseo-discovery. No code changes. Use when the user doesn't yet know what to build.

`audit-only`

Run pseo-audit and pseo-quality-guard. No code changes. Assumes discovery is done.

`implement`

Skip discovery and audit, go straight to implementation (assumes both were already done).

`validate`

Run only pseo-quality-guard against the existing implementation.

Full Pipeline Procedure

Phase 0: Discovery

  1. Run pseo-discovery with scope all
  2. Present the discovery report: data assets found, proposed page types, rejected candidates
  3. Ask the user to confirm which page types to pursue
  4. If data enrichment is needed, flag it β€” implementation cannot produce quality pages without sufficient data

Phase 1: Audit

  1. Run pseo-audit with scope full, informed by the discovery output (what page types are planned)
  2. Present findings to the user
  3. Ask the user to confirm which areas to implement
  4. Create a prioritized implementation plan based on audit results

Phase 1.5: Scale Infrastructure (conditional β€” 10K+ pages only)

  1. Run pseo-scale to set up database, sufficiency gating, CDN, and monitoring
  2. Migrate existing data to database if moving from file-based storage
  3. Compute data sufficiency scores and gate thin combinations

Phase 2: Data Foundation

  1. Run pseo-data to set up or refactor the data architecture
  2. Verify data layer exports are complete and typed
  3. Validate slug uniqueness and data integrity

Phase 3: Page Structure (parallel where possible)

  1. Run pseo-templates to create or refactor page templates and routing
  2. Run pseo-linking to build internal linking, breadcrumbs, and hub pages
  3. Verify all routes generate correctly and no 404s exist

Phase 4: SEO Tags

  1. Run pseo-metadata to implement dynamic metadata on all templates
  2. Run pseo-schema to add JSON-LD structured data to all templates
  3. Verify metadata and schema render correctly on sample pages

Phase 5: Optimization

  1. Run pseo-performance to optimize build times, CWV, and caching
  2. Run pseo-llm-visibility to optimize for AI citation (llms.txt, AI crawlers, content chunking, entity optimization)
  3. Run a build to verify it completes successfully at current scale
  4. Check bundle size and rendering performance

Phase 6: Validation

  1. Run pseo-quality-guard with scope all (or delta at 10K+ pages)
  2. Present quality report to the user
  3. Fix any critical issues flagged by the quality guard
  4. Re-run quality guard to confirm all issues resolved

Decision Points

At each phase transition, check with the user:

  • Phase 0β†’1: "Here are the pSEO opportunities. Which page types should we build?"
  • Phase 1β†’1.5: "The audit found these issues. Scale target is N pages β€” do we need scale infrastructure?" (only if 10K+)
  • Phase 1.5β†’2: "Database and gating are set up. Proceed with data architecture?"
  • Phase 1β†’2: "The audit found these issues. Proceed with implementation?" (if < 10K, skip 1.5)
  • Phase 3β†’4: "Templates and linking are set up. Ready for metadata and schema?"
  • Phase 5β†’6: "Performance and LLM visibility optimizations applied. Ready for final validation?"

Progress Tracking

Track and report progress as:

```

Phase 0: Discovery [βœ“] Complete β€” 3 page types confirmed, 50K pages planned

Phase 1: Audit [βœ“] Complete

Phase 1.5: Scale Infra [βœ“] Complete (DB, gating, CDN) β€” skipped if < 10K

Phase 2: Data [βœ“] Complete

Phase 3: Structure [β†’] In Progress (templates done, linking in progress)

Phase 4: SEO Tags [ ] Pending

Phase 5: Optimization [ ] Pending (performance + LLM visibility)

Phase 6: Validation [ ] Pending

```

Important Rules

  • Never skip the discovery phase on a new project (unless user already knows exactly what pages to build)
  • Never skip the audit phase on a new project (unless user explicitly says to)
  • Always run pseo-quality-guard as the final step
  • If quality guard finds critical issues, fix them before declaring success
  • Commit changes at logical checkpoints (after each phase)
  • Keep the user informed at each phase transition

Framework Note

All code examples across the pseo-* skills use Next.js App Router patterns by default. The concepts, data structures, and SEO principles are framework-agnostic and apply equally to Astro, Nuxt, Remix, SvelteKit, or any SSG/SSR framework. When working with a non-Next.js project, adapt the framework-specific APIs (routing, metadata, static generation) to the equivalent in the target framework.

What This Skill Does NOT Do

  • Does not choose a framework (assumes one is already in place or user will decide)
  • Does not create content (assumes data/content exists or user will provide it)
  • Does not deploy the site
  • Does not set up CI/CD
  • Does not configure hosting or DNS

More from this repository10

🎯
pseo-quality-guard🎯Skill

Validates programmatic SEO pages by detecting thin content, duplicates, and keyword cannibalization to prevent Google penalties.

🎯
pseo-llm-visibility🎯Skill

Optimizes programmatic SEO pages for AI search visibility by structuring content for LLM extraction and citation across multiple generative engines.

🎯
pseo-performance🎯Skill

Optimizes programmatic SEO applications for fast builds, excellent Core Web Vitals, and scalable performance across 1000+ pages.

🎯
pseo-schema🎯Skill

Generates context-specific JSON-LD structured data schemas for programmatic SEO pages to enhance search engine understanding and rich result potential.

🎯
pseo-discovery🎯Skill

Discovers programmatic SEO opportunities by analyzing codebase, business context, and data assets to identify scalable page types matching search intent.

🎯
pseo-linking🎯Skill

Links and maps potential career pathways by analyzing professional skills, educational backgrounds, and industry connections.

🎯
pseo-scale🎯Skill

Scales programmatic SEO systems to 10K-100K+ pages with database-backed architectures, incremental validation, and optimized content delivery.

🎯
pseo-audit🎯Skill

Audits a codebase for programmatic SEO readiness, identifying scalability gaps and providing actionable insights for 1000+ page websites.

🎯
pseo-templates🎯Skill

Generates programmatic SEO page templates with dynamic routing, creating unique, intent-matched content for each page automatically.

🎯
pseo-data🎯Skill

Designs and generates structured data architecture for programmatic SEO pages, ensuring type-safe, SEO-optimized content models and data pipelines.