geo-pipeline

Solid

Entry point + orchestrator for the recomby-geo GEO (Generative Engine Optimization) workflow on OpenAI Codex CLI. Use when the user wants to run any stage of the GEO pipeline on a client folder — intake, visibility audit, content-gap analysis, content brief, draft production, distribution, or monthly re-audit — or asks to "run GEO", "audit AI search visibility", or "GEO this client". Codex has no bare slash commands, so this skill is how the 7 stages (that Claude Code runs as /01-intake … /07-reaudit) are driven on Codex. It routes to the per-stage specs in this plugin's commands/ and enforces the orchestration rules. Does not auto-fill expert content — the human-in-loop brief checkpoint is the moat.

AI & Automation 509 stars 46 forks Updated 6 days ago MIT

Install

View on GitHub

Quality Score: 94/100

Stars 20%
90
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# geo-pipeline — Codex orchestrator for recomby-geo On Claude Code each stage is a bare slash command (`/01-intake` … `/07-reaudit`). Codex CLI has no bare custom commands, so this skill is the Codex entry point: it carries the orchestration rules and routes to the per-stage specification files, which are the **single source of truth** shared with the Claude Code side. Do not duplicate stage logic here — read the stage file and follow it. **Per-stage specs (read the one you're running):** `commands/01-intake.md`, `commands/02-audit.md`, `commands/03-gap.md`, `commands/04-content-brief.md`, `commands/05-production.md`, `commands/06-distribution.md`, `commands/07-reaudit.md` (relative to this plugin's root). Full directory convention + dependency graph: `orchestrator/run.md`. ## How to run a stage on Codex 1. Identify the client folder `clients/<slug>/` and the stage the user wants. 2. Read the matching `commands/0X-*.md` and execute its Procedure verbatim. 3. Validate every JSON artifact the stage writes against its schema before moving on (Codex has no built-in schema validation — run it explicitly): ```bash python3 - <<'PY' import json, jsonschema pairs = { "brand_context.json": "brand_context.schema.json", "visibility_baseline.json": "visibility_baseline.schema.json", "content_priorities.json": "content_priorities.schema.json", } # see schemas/ for the full set incl. attribution_diff + review_feedback # jsonschema.Draft202012Validat...

Details

Author
ViryaZheng
Repository
ViryaZheng/recomby-geo
Created
2 months ago
Last Updated
6 days ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

geo-pipeline

Entry point + orchestrator for the recomby-geo GEO (Generative Engine Optimization) workflow on OpenAI Codex CLI. Use when the user wants to run any stage of the GEO pipeline on a client folder — intake, visibility audit, content-gap analysis, content brief, draft production, distribution, or monthly re-audit — or asks to "run GEO", "audit AI search visibility", or "GEO this client". Codex has no bare slash commands, so this skill is how the 7 stages (that Claude Code runs as /01-intake … /07-reaudit) are driven on Codex. It routes to the per-stage specs in this plugin's commands/ and enforces the orchestration rules. Does not auto-fill expert content — the human-in-loop brief checkpoint is the moat.

509 Updated 6 days ago
recomby-ai
AI & Automation Solid

codex-workflows

Run a dynamic-workflow script on a local Codex App Server — orchestrate many Codex / GPT agents (the agent / parallel / pipeline / phase / budget DSL) instead of Claude subagents, for codebase audits, large migrations, and multi-agent review or research. Give it one or two rough sentences and it compiles the right harness for you. Manual-invoke only via /codex-workflows.

235 Updated 1 months ago
scasella
AI & Automation Listed

run-codex

Delegate clear-spec, bulk, or mechanical work — migrations, codemods, large refactors, log digs, and independent code review — to gpt-5.5 through the Codex CLI, with quota-aware fallback to Claude models.

0 Updated today
Tarekkharsa