9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
5.3 KiB
5.3 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, inferred_by
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | inferred_by | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-ai-overviews-and-sge | AI Overviews and SGE (Search Generative Experience) | 10_Wiki/Topics | verified | self |
|
none | B | 0.85 | conceptual |
|
2026-05-09 | pending | Claude Opus 4.7 (manual cleanup 2026-05-09) |
AI Overviews and SGE
📌 한 줄 통찰
Google 의 search 의 매 query 의 AI-generated answer + cited source. 매 brand 의 매 click 의 lose, 매 citation 의 gain. Direct answer + structured data + Core Web Vitals 의 critical.
📖 핵심
Evolution
- PageRank (1998): link 의 popularity.
- Knowledge Graph (2012): structured entity.
- BERT / RankBrain (2018+): semantic.
- SGE (2023+): generative answer.
- AI Overviews (2024+): permanent UI.
매 component
- AI-generated answer: top of SERP.
- Cited source: 매 link.
- Follow-up question: chat-like.
- Traditional results: below.
Optimization 의 framework
Visual Hierarchy
- 매 H1 / H2 / H3 의 clear.
- 매 1 question / heading.
- 매 short paragraph.
Direct Answer
- 매 H2 (question) 직후 = 1-2 sentence answer.
- 매 expansion = 다음 paragraph.
- "Inverted pyramid" (journalism).
Schema.org
- FAQPage / HowTo / Article.
- Product / Recipe (specific).
- 매 entity 의 explicit.
Core Web Vitals
- LCP < 2.5s.
- INP < 200ms.
- CLS < 0.1.
→ 매 SGE 의 selection signal.
E-E-A-T
- Experience: 매 first-hand.
- Expertise: credential / qualification.
- Authoritativeness: 매 domain authority.
- Trustworthiness: secure, accurate.
→ Google 의 quality rater guideline.
매 query type 의 SGE behavior
Informational ("How to X")
- AI Overview 가 dominant.
- 매 step-by-step format.
Transactional ("buy X")
- AI Overview 가 less.
- 매 product result.
Navigational ("Tesla home page")
- AI Overview 거의 X.
- 매 direct site.
YMYL (Your Money Your Life)
- 매 strict E-E-A-T.
- 매 medical / financial / legal.
- 매 conservative AI Overview.
Zero-click 의 reality
- 매 user 의 click 의 ↓.
- 매 publisher 의 traffic 의 hurt.
- 매 brand visibility 의 citation 의 trade-off.
매 measurement
Search Console
- 매 query 의 AI Overview 의 inclusion.
- 매 impression / position.
3rd-party
- Semrush, Ahrefs, BrightEdge.
- 매 SGE-specific tracking.
Self-monitor
- 매 important keyword 의 manual check.
- 매 weekly / monthly.
💻 Code
FAQ schema (top citation chance)
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How does AI Overview work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "AI Overview generates a summary answer at the top of search results, citing source URLs."
}
}
]
}
</script>
HowTo schema
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to bake bread",
"step": [
{ "@type": "HowToStep", "name": "Mix flour", "text": "..." },
{ "@type": "HowToStep", "name": "Knead", "text": "..." }
]
}
</script>
매 page structure (AI-friendly)
<article>
<h1>Topic</h1>
<p>Direct answer in 1-2 sentence (lead).</p>
<h2>What is X?</h2>
<p>Brief definition + key points.</p>
<h2>Why is X important?</h2>
<p>Context + benefit.</p>
<h2>How to use X?</h2>
<ol>
<li>Step 1</li>
<li>Step 2</li>
</ol>
<h2>Common mistakes</h2>
<ul>
<li>Mistake 1</li>
</ul>
</article>
Author bio (E-E-A-T)
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jane Doe",
"jobTitle": "Senior AI Researcher",
"alumniOf": { "@type": "Organization", "name": "MIT" },
"url": "https://janedoe.com"
}
</script>
🤔 결정 기준
| Query type | Strategy |
|---|---|
| Informational | FAQ + HowTo schema |
| Product | Product schema + reviews |
| YMYL | E-E-A-T strict |
| Local | LocalBusiness schema |
| News | Article + freshness |
기본값: Direct answer + FAQ schema + Core Web Vitals + E-E-A-T author info.
🔗 Graph
- 부모: SEO
- 변형: AI-Answer-Engine-Optimization · Generative-Engine-Optimization
- 응용: Core Web Vitals Optimization (INP, LCP, CLS)
- Adjacent: Zero-Click-Search · Knowledge Graph
🤖 LLM 활용
언제: Content website 의 SGE traffic 의 capture. 언제 X: 매 internal app. 매 paid-only content.
❌ 안티패턴
- JS-only render: bot blind.
- Fake schema: penalty.
- Click-bait + AI 의 misalign: low citation.
- No author info: low E-E-A-T.
🧪 검증 / 중복
- Verified (concept).
- 신뢰도 B (Google Search Central, Schema.org).
- Related: AI-Answer-Engine-Optimization (overlap).
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-09 | Manual cleanup — schema code + E-E-A-T + 결정 |