AI検索のvisibility作業を、research、structure、publish、measureの繰り返しworkflowに変えるCodex GEO skillの設計ガイドです。
Quick answer
2026年に最も実用的なCodex GEO skillは、「この記事をAI検索でrankさせて」とagentに頼む1行promptではありません。Codexにcurrent sourcesを集めさせ、brand claimsを引用しやすいanswer blocksに変え、crawlとcitation readinessを確認し、publish-ready assetsを作り、公開後にAI answer enginesがbrandをmentionするか測定する、repeatable workflow skillです。
これが重要なのは、GEO workがcontent adviceからoperationsへ移ったからです。teamに必要なのは、曖昧なchecklistではありません。Codexが毎回同じ方法で実行でき、fake sources、stale claims、missing images、weak metadata、unmeasured outcomesを避けられるguardrailsを持つskillです。
Auspia式のgrowth teamにとって、勝ち筋は単純です。research first、structure for extraction、publish with evidence、then measure AI visibilityです。Codex skillsが合うのは、OpenAI documentationがskillsをinstructions、resources、optional scriptsを持つreusable workflow packagesとして説明しているからです。つまり、良いGEO skillはAI search workの小さなoperating systemになります。
実用的なCodex GEO workflow:source gathering、answer design、QA、publishing、measurementを1つのrepeatable loopにします。
なぜCodex skillsはGEO workに合うのか
OpenAIのCodex documentationでは、skillsはtask-specific packagesであり、instructions、resources、optional scriptsを含むものとして説明されています。Codexは最初、skill name、description、pathだけを見て、関連すると判断したときにfull SKILL.md を読みます。これはGEOに有用です。workflowは毎回promptに入れるには細かすぎますが、memory任せにするには重要すぎるからです。
GEO workflowには通常、複数のstepが必要です。
- current sourcesを探し、正確にciteする。
- AI answer enginesが答えそうなbuyer questionsを特定する。
- pagesを短く抽出しやすいanswer blocksへrewriteする。
- entity facts、tables、FAQs、schema notes、internal linksを追加する。
- humansがargumentを理解しやすいimagesやdiagramsを作る。
- metadata、category、tags、social image fieldsを含めてpublishする。
- brand mentions、citation frequency、sentiment、prompt coverageを測定する。
普通のpromptでは、このどれかを忘れがちです。Codex skillなら、それらを必須にできます。
これは、Codexをfast writerとして使うか、operatorとして使うかの違いです。writerはcopyを作ります。operatorはsourcesを確認し、missing evidenceを探し、CMS向けにpostを準備し、measurement trailを残します。
最良のCodex GEO skillが担うべき5つの仕事
実用的なCodex GEO skillは、「全部を最適化する」必要はありません。より良い設計は狭くします。growth teamが毎週繰り返す作業をCodexに実行させます。
| Job | skillがCodexに必ず実行させること | GEOで重要な理由 |
|---|---|---|
| Research | current sources、official docs、SERPs、competitor pages、internal materialを調べる | AI searchは速く変わり、古いclaimsはtrustを弱める |
| Extract | topicをdirect answers、entity facts、comparison tables、FAQsへ変換する | AI systemsには引用・要約しやすいclear unitsが必要 |
| Validate | crawlability、robots rules、source attribution、metadata、unsupported claimsを確認する | contentが到達不能または信頼不能ならGEOは失敗する |
| Publish | article、images、taxonomy、OG image、internal linksを準備する | 良いdraftでもpublishing fieldsが不完全なら失敗する |
| Measure | prompt setを作り、AI visibilityを時間で記録する | measurementなしのGEOはcontent productionにすぎない |
「best」skillとは、このloopを閉じるskillです。他のtoolsを使ってもよいですが、workflow自体はskillが所有すべきです。
skillの中に入れるもの
強いCodex GEO skillは、focusされた SKILL.md から始まります。descriptionには、そのskillがいつtriggerすべきかを正確に書きます。Codexはdescriptionを使ってfull instructionsを読むか判断するからです。「SEOを助ける」のようなdescriptionは避けます。より良い例は次です。
---
name: codex-geo-operator
description: Use when creating, refreshing, auditing, or publishing content for GEO, AI search visibility, AI citations, ChatGPT visibility, Perplexity visibility, Google AI Overviews, or answer-engine optimization.
---
bodyではworkflowを定義します。実用的なstructureは次のとおりです。
- page goal、audience、brand、target AI answer surfacesを確認する。
- draft前にcurrent factsとofficial sourcesを調査する。
- buyer questionsとcomparison promptsのprompt libraryを作る。
- contentをcitable answer blocks、tables、FAQ sectionsへrewriteする。
- entity facts、internal links、schema notes、image requirementsを追加する。
- claims、citations、crawlability、metadataのQA checklistを実行する。
- CMS-ready packageをpublishまたは準備する。
- brand mentionsとcitation trackingのmeasurement planを作る。
skillにはreference filesも含められます。
references/geo-checklist.md: page-level QA checklist。references/prompt-library.md: reusable AI visibility prompts。references/source-policy.md: citation and evidence rules。references/publishing.md: CMS fields、taxonomy、image requirements。scripts/: metadata validationやlink auditsなどのdeterministic checks。
ここでCodex skillsは、copy-pasted promptsより信頼できるものになります。main fileのinstructionsを小さく保ち、taskが必要とするときだけ深いreferenceを読ませられます。
AGENTS.md、Skills、MCP:正しいlayerを使う
よくある間違いは、すべてを1つのsurfaceに入れることです。Codexには複数のlayerがあり、それぞれ違う種類のinstructionを持たせるべきです。
AGENTS.md はrepository-level rulesに向いています。OpenAI Codex manualでは、Codexは作業前に AGENTS.md を読み、globalとproject-specific guidanceをlayerとして扱うと説明されています。build commands、style rules、file locations、publishing safety rulesなど、repo内のすべてのtaskに適用すべきconventionsに使います。
Skillsはreusable workflowsに向いています。GEO operating procedureはskillに入れます。GEO、AEO、AI search visibility、citation analysis、content publishing workのときだけtriggerすべきだからです。
MCPはlive toolsとprivate dataに向いています。OpenAI documentationでは、MCPをthird-party documentation、browsers、Figma、Sentry、GitHubなどのtoolsへmodelsを接続する方法として説明しています。GEO skillにlive browser testing、Figma assets、SEO database、CMS APIが必要なら、MCPまたはscriptでtool accessを提供します。
clean setupは次のとおりです。
| Layer | Best use | GEO example |
|---|---|---|
| AGENTS.md | durable repo rules | 「このCMS routeを使う、tokenをhardcodeしない、publish前にlink checksを実行する」 |
| Codex skill | repeatable workflow | 「GEO articleをresearch、draft、optimize、publish、measureする」 |
| MCP/tool script | live capability | 「docs取得、page inspection、image upload、SEO metrics query」 |
| Prompt | one-off intent | 「SaaS founders向けにこの記事を英語で書く」 |
それぞれのlayerが狭い役割を持つと、1つの巨大promptで全部を制御しようとするより安定します。
teamがadaptできるCodex GEO skill template
私なら次の実用版から始めます。
---
name: codex-geo-operator
description: Use for GEO, AEO, AI search visibility, AI citations, ChatGPT SEO, Perplexity SEO, Google AI Overviews, and publish-ready content optimization.
---
# Codex GEO Operator
## Goal
Create or improve pages so AI answer engines can understand, quote, cite, and recommend the brand accurately.
## Required workflow
1. Identify the target audience, page type, market, language, and conversion goal.
2. Research current sources. Prefer official docs, first-party data, live SERPs, and credible third-party sources.
3. Build a prompt set: informational prompts, comparison prompts, buying prompts, objection prompts, and local/vertical prompts.
4. Draft the page with a direct answer near the top, clear entity facts, comparison tables, and concise FAQ answers.
5. Add evidence. Every claim about rankings, market size, product capability, pricing, or current behavior needs a source or a clear label as an assumption.
6. Run GEO QA: crawlability, robots rules, schema notes, internal links, citation clarity, brand entity clarity, and image alt text.
7. Prepare publishing fields: title, slug, excerpt, meta description, category, tags, featured image, OG image, and inline visuals.
8. Prepare measurement: prompt list, baseline answers, citation screenshots, brand mention notes, and follow-up date.
## Refuse or pause when
- The task asks for fake citations.
- The source is outdated and no browsing or verification is allowed.
- The article needs images for publishing but no image generation or upload path is available.
- The CMS token or required taxonomy is missing.
このtemplateは意図的にopinionatedです。Codexをgeneric writingから遠ざけ、auditable publishing workflowへ向かわせます。
skillがAI検索visibilityを改善する仕組み
GEOは魔法のformattingではありません。元のGEO research paper「GEO: Generative Engine Optimization」は、optimization methodsがgenerative enginesでのvisibilityを改善できると論じました。2026年の実務上の学びは、より単純で切実です。AI answer systemsは、retrieveしやすく、understandしやすく、compareしやすく、citeしやすいpageを評価します。
そのため、pageには通常次が必要です。
- 単独で成立する短いanswerを上部に置く。
- brand、product、category、audienceについて一貫したentity languageを使う。
- marketing adjectivesではなく、evidence-backed claimsを使う。
- alternativesやdecisionsを要約するtablesを入れる。
- real buyer questionsに答えるFAQsを入れる。
- tool、platform、search surfaceのbehaviorが変わり得る場合はfresh datesを入れる。
- botsやAI featuresをblockしないcrawlable HTMLとmetadataを用意する。
Codex GEO skillは、これらのrequirementsをrepeatable checksへ変えます。また、teamがpolished articleを公開したのにmeasurementを忘れるという失敗を減らします。skillがprompt libraryとbaseline reportを作って終わるなら、teamは「効くことを期待する」だけでなく、翌週AI answersを比較できます。
Auspiaなら実務でどう使うか
Auspia式のAI traffic growth workflowでは、Codex GEO skillはcontent productionとvisibility checksを接続すべきです。
実用的なweekly cycleは次のようになります。
- prompt libraryを使い、brandが不在または誤説明されているbuyer questionsを特定する。
- Codex GEO skillを実行し、最も関連するpageをcreateまたはrefreshする。
- AI Search Visibility Checkerで、target prompts全体におけるbrandの見え方を確認する。
- GEO Score Checkerで、page-level readinessを診断する。
- clear metadata、images、internal links付きでupdated articleをpublishする。
- indexing後に同じpromptsを再実行し、citation changesを記録する。
重要なのは1本の記事ではありません。継続的なループです。AI検索での可視性は、購入前の質問、比較質問、信頼に関する質問に答えるページをteamが継続的に改善すると伸びます。
多くのteamが間違えること
最初の間違いは、GEOをwriting styleとして扱うことです。FAQを追加し、ChatGPTに触れ、「optimized」と呼びます。これは薄い作業です。
2つ目の間違いは、source policyなしでCodexを使うことです。agentsは素早くdraftできますが、current platform behavior、product features、AI search surfacesは変わります。GEO skillは、特にtools、APIs、search features、pricing、regulationsについての記事では、draft前のsource gatheringを必須にすべきです。
3つ目の間違いは、imagesとstructured assetsを省略することです。良いdiagramやmatrixは、人間がarticleを理解する助けになります。また、social sharing、internal enablement、sales conversationsに使える強いassetにもなります。
4つ目の間違いは、measurementなしでpublishすることです。GEO projectには、prompt set、baseline answers、tracked competitors、citation quality notesが必要です。そうでなければ、teamは暗闇で最適化しているだけです。
選定checklist:これは本当に良いCodex GEO skillか
採用または作成する前に、このchecklistを使います。
- skillに狭いtrigger descriptionがあるか。それとも曖昧な「SEO helper」か。
- claimsを書く前にcurrent researchを必須にしているか。
- source gathering、drafting、QA、publishing、measurementを分けているか。
- evidence、citations、unsupported claimsのrulesがあるか。
- paragraphsだけでなく、answer blocks、tables、FAQs、image briefsを作るか。
- CMS taxonomy、image upload、OG image fieldsの場所を理解しているか。
- 後でAI visibilityを測定するprompt libraryを作るか。
- incomplete contentをpublishする代わりにpauseすべき条件を知っているか。
いくつもnoなら、それはskillの衣装を着たcontent promptかもしれません。
Final take
2026年に最も実用的なCodex GEO skillは、writer skillではなくoperator skillです。Codexを慎重なgrowth teammateのように振る舞わせるべきです。sourcesをverifyし、citable contentを作り、assetsを準備し、cleanly publishし、AI answer enginesが実際にbrandを拾ったか測定します。
ここにskillsの強みがあります。workflowを作業の近くに置けます。一方で AGENTS.md はrepo rulesを持ち、MCPはlive toolsを接続します。これらを一緒に使うと、growth teamsはGEOを曖昧なrecommendationからrepeatable systemへ変えられます。
FAQ
Codex GEO skillとは何ですか?
Codex GEO skillは、research、answer-block writing、citation checks、publishing、AI visibility measurementなどのgenerative engine optimization tasksをCodexに実行させるreusable SKILL.md workflowです。
GEOにはCodex skillのほうがAGENTS.mdより良いですか?
両方使います。AGENTS.md はrepository-wide rulesに向いています。Codex skillは、AI search visibility、citations、AEO、content optimizationに関わるときだけ走るspecific GEO workflowに向いています。
GEOはSEOを置き換えますか?
いいえ。GEOはSEOの上に成り立ちます。pageには今でもcrawlability、useful content、internal links、authority、technical hygieneが必要です。GEOはanswer extraction、citation readiness、entity clarity、AI visibility measurementを追加します。
GEO skillは何を測定すべきですか?
target AI answer surfaces全体で、brand mentions、citation frequency、citation quality、answer sentiment、competitor presence、prompt coverageを測定すべきです。clicksも有用ですが、それだけでは不十分です。
CodexはGEO articlesを自動公開できますか?
CMSへの安全なaccess、valid taxonomy、image upload paths、source verification rulesがあるなら可能です。ただし、required fields、images、credentialsが欠けている場合、skillはpauseすべきです。
Codex SEO/GEO 学習パス
この記事は Codex SEO/GEO オペレーターシリーズの一部です。ゼロから構築する場合は、次の順番で進めてください。
- 2026年にCodexで自動GEOを実践する方法
- CodexでSEOを自動化する方法
- AGENTS.mdでCodex SEOワークスペースを作る方法
- MCPでCodexをSEOデータに接続する方法
- 2026年版:最も実用的なCodex GEO Skill
- キーワードクラスタリング用のCodex Skillを作る方法
- SERP、コンテンツ、テクニカルSEOでCodex Subagentsを使う方法
- 本番を壊さずにCodexでテクニカルSEOを修正する方法
- Codex Automationsで毎日のSEO/GEO監視を行う方法
- Codex SEO/GEO品質ゲート:Diff、証拠、テスト、人間の承認
- CodexでSEO/GEO対応のWebサイトを作成・デプロイする方法
次に読むべき記事
前の記事: MCPでCodexをSEOデータに接続する方法
次の記事: キーワードクラスタリング用のCodex Skillを作る方法
参考情報
- OpenAI Codex documentation: Agent Skills
- OpenAI Codex documentation: Custom instructions with AGENTS.md
- OpenAI Codex documentation: Model Context Protocol
- Research paper: GEO: Generative Engine Optimization
- Google Search documentation: AI features and your website