Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

pseo-orchestrate伪编排

Agent Skill

pseo-orchestrate 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

264

周安装

11

GitHub Stars

40

下载量

88
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pseo-orchestrate(伪编排)
来源仓库:https://github.com/lisbeth718/pseo-skills
仓库路径:skills/pseo-orchestrate
安装命令:
npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-orchestrate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-orchestrate

简介

用于信息检索与筛选,支持复杂查询条件下的结果聚合。

  • 适合在多步骤研究任务中提供候选答案与证据链支持。
  • 通过 GitHub 仓库安装,需确认其是否执行长时间运行的网络请求。
  • 安装命令:npx skills add https://github.com/lisbeth718/pseo-skills --skill pseo-orchestrate。
  • 建议监控其资源占用情况以避免影响宿主进程性能。

SKILL.md

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.15%
按下载量换算33

Claude

26.8%
按下载量换算24

Cursor

17.75%
按下载量换算16

Gemini CLI

10.11%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills