diff --git a/.planning/ROADMAP.md b/.planning/ROADMAP.md
index eb8f13d..f6627bf 100644
--- a/.planning/ROADMAP.md
+++ b/.planning/ROADMAP.md
@@ -110,7 +110,7 @@ Plans:
- [x] **Phase 5: @nuxt/content Setup & Renderer** - Integration @nuxt/content, markdown renderer complet avec syntax highlighting et images — Completed 2026-04-22 (2/2 plans)
- [x] **Phase 6: Blog Pages** - Page listing /blog et page article /blog/[slug] SSR, bilingue, avec TOC et nav prev/next — Completed 2026-04-22 (4/4 plans)
- [x] **Phase 7: SEO Blog** - useSeoMeta par article, JSON-LD Article, sitemap etendu, og:image, BreadcrumbList — Completed 2026-04-22 (4/4 plans)
-- [ ] **Phase 8: Content & Cocon Semantique** - 2 articles seed Hytale, liens internes blog-hytale
+- [x] **Phase 8: Content & Cocon Semantique** - 2 articles seed Hytale, liens internes blog-hytale — Completed 2026-04-22 (3/3 plans)
---
@@ -191,4 +191,4 @@ Plans:
| 5. @nuxt/content Setup & Renderer | 2/2 | Complete | 2026-04-22 |
| 6. Blog Pages | 4/4 | Complete | 2026-04-22 |
| 7. SEO Blog | 4/4 | Complete | 2026-04-22 |
-| 8. Content & Cocon Semantique | 0/? | Not started | - |
+| 8. Content & Cocon Semantique | 3/3 | Complete | 2026-04-22 |
diff --git a/.planning/STATE.md b/.planning/STATE.md
index eed610e..14a0da8 100644
--- a/.planning/STATE.md
+++ b/.planning/STATE.md
@@ -2,15 +2,15 @@
gsd_state_version: 1.0
milestone: v1.0
milestone_name: milestone
-status: Plan 07-04 shipped — endpoint Nitro /api/__sitemap__/urls bilingue (draft-filtered, alternates hreflang x-default), validé curl /sitemap.xml
-last_updated: "2026-04-22T12:00:00.000Z"
+status: Plan 07-04 shipped — endpoint Nitro sitemap bilingue (draft-filtered + hreflang x-default), SEO-12 complet
+last_updated: "2026-04-22T16:39:45.338Z"
last_activity: 2026-04-22
progress:
total_phases: 8
- completed_phases: 4
- total_plans: 15
- completed_plans: 14
- percent: 93
+ completed_phases: 5
+ total_plans: 18
+ completed_plans: 17
+ percent: 94
---
# Project State
diff --git a/.planning/phases/08-content-cocon-semantique/08-VERIFICATION.md b/.planning/phases/08-content-cocon-semantique/08-VERIFICATION.md
new file mode 100644
index 0000000..dd3d793
--- /dev/null
+++ b/.planning/phases/08-content-cocon-semantique/08-VERIFICATION.md
@@ -0,0 +1,90 @@
+---
+phase: 08-content-cocon-semantique
+verified: 2026-04-22T00:00:00Z
+status: passed
+score: 6/6 must-haves verified
+overrides_applied: 0
+---
+
+# Phase 08: Content & Cocon Sémantique — Verification Report
+
+**Phase Goal:** 2 articles seed Hytale (FR+EN, draft:false, liens inline /hytale), section "Articles récents" sur /hytale filtrée tag=hytale, cocon sémantique bidirectionnel.
+**Verified:** 2026-04-22
+**Status:** passed
+**Re-verification:** No — initial verification
+
+## Goal Achievement
+
+### Observable Truths
+
+| # | Truth | Status | Evidence |
+|---|-------|--------|----------|
+| 1 | 4 markdown articles exist (FR+EN × 2), `draft: false`, tag `hytale`, ≥800 words | VERIFIED | wc -w: 1049, 970, 1148, 1009; frontmatter confirms `tags: ["hytale", ...]` and `draft: false` in all 4 |
+| 2 | FR articles contain inline link `](/hytale)` | VERIFIED | grep: 2 occurrences per FR file (4 total) |
+| 3 | EN articles contain inline link `](/en/hytale)` | VERIFIED | grep: 2 occurrences per EN file (4 total) |
+| 4 | `HytaleRecentArticles.vue` uses literal queryCollection branches + JS tag filter + slice(0,2) + v-if | VERIFIED | Component reads: `queryCollection('blog_fr')` / `queryCollection('blog_en')` literals (L13,17); `a.tags.includes('hytale')` (L28); `.slice(0, 2)` (L28); `v-if="articles.length"` (L34) |
+| 5 | `app/pages/hytale.vue` mounts `` |
+| 6 | i18n keys `hytale.recentArticles.{title,subtitle,viewAll}` present in fr.json + en.json | VERIFIED | fr.json L556-560 and en.json L556-560 all 3 keys present |
+
+**Bonus:** `pnpm typecheck` exit 0 (clean).
+
+### Required Artifacts
+
+| Artifact | Expected | Status | Details |
+|----------|----------|--------|---------|
+| `content/fr/blog/how-to-build-your-first-hytale-plugin.md` | Tutorial FR, draft:false, tag hytale, ≥800w, link /hytale | VERIFIED | 1049 words, frontmatter correct, 2× `](/hytale)` |
+| `content/en/blog/how-to-build-your-first-hytale-plugin.md` | Tutorial EN, draft:false, tag hytale, ≥800w, link /en/hytale | VERIFIED | 970 words, frontmatter correct, 2× `](/en/hytale)` |
+| `content/fr/blog/hytale-plugin-development-2026.md` | Industry FR, draft:false, tag hytale, ≥800w, link /hytale | VERIFIED | 1148 words, frontmatter correct, 2× `](/hytale)` |
+| `content/en/blog/hytale-plugin-development-2026.md` | Industry EN, draft:false, tag hytale, ≥800w, link /en/hytale | VERIFIED | 1009 words, frontmatter correct, 2× `](/en/hytale)` |
+| `app/components/HytaleRecentArticles.vue` | Literal queryCollection + JS filter hytale + slice(0,2) + v-if | VERIFIED | All patterns present |
+| `app/pages/hytale.vue` | Mounts `` | VERIFIED | Line 38 |
+| `i18n/locales/fr.json` | hytale.recentArticles.{title,subtitle,viewAll} | VERIFIED | L556-560 |
+| `i18n/locales/en.json` | hytale.recentArticles.{title,subtitle,viewAll} | VERIFIED | L556-560 |
+
+### Key Link Verification
+
+| From | To | Via | Status |
+|------|-----|-----|--------|
+| Articles FR blog → /hytale | Service page | Markdown inline link `](/hytale)` | WIRED (2× per article) |
+| Articles EN blog → /en/hytale | Service page | Markdown inline link `](/en/hytale)` | WIRED (2× per article) |
+| /hytale page → recent blog articles | Cocon retour | `` querying `blog_fr`/`blog_en` filtered tag=hytale | WIRED |
+| HytaleRecentArticles → BlogCard rendering | Data flow | `queryCollection(...).where(draft,=,false).order(date,DESC).all()` + JS filter on tags + slice(0,2) | WIRED — data flows from @nuxt/content collection to render |
+
+### Data-Flow Trace (Level 4)
+
+| Artifact | Data Variable | Source | Produces Real Data | Status |
+|----------|--------------|--------|--------------------|--------|
+| HytaleRecentArticles.vue | `articles` computed | `useAsyncData` → `queryCollection('blog_fr'/'blog_en')` (real @nuxt/content SQLite collections populated by the 4 articles above) | Yes — 2 hytale-tagged articles per locale exist in content/, draft:false | FLOWING |
+
+### Requirements Coverage
+
+| Requirement | Source Plan | Description | Status | Evidence |
+|-------------|-------------|-------------|--------|----------|
+| BLOG-07 | 08-01, 08-02 | Seed content Hytale publié (≥2 articles FR+EN, draft:false, tag hytale) | SATISFIED | 4 articles live, frontmatter compliant, word counts ≥800 |
+| SEO-14 | 08-01, 08-02, 08-03 | Cocon sémantique bidirectionnel blog↔service Hytale | SATISFIED | Inline links from articles → /hytale (FR) & /en/hytale (EN); HytaleRecentArticles section back from /hytale → blog articles; tag filter `hytale` enforces topical relevance |
+
+### Anti-Patterns Found
+
+None. Component correctly avoids known pitfalls documented in comments:
+- D-03: literal `queryCollection` branches (not variable) for Vite extractor
+- D-11: JS post-query filter instead of unreliable SQLite LIKE on JSON array
+- T-08-01: `Array.isArray` guard before `.includes` for schema-broken frontmatter safety
+
+### Behavioral Spot-Checks
+
+| Behavior | Command | Result | Status |
+|----------|---------|--------|--------|
+| TypeScript compiles cleanly | `pnpm typecheck` | Exit 0, no errors | PASS |
+
+### Human Verification Required
+
+None — all checks verifiable via static analysis / grep / typecheck.
+
+### Gaps Summary
+
+No gaps. Phase 08 fully achieves its goal: cocon sémantique bidirectionnel complete, 4 seed articles published with proper frontmatter, /hytale page loops back to recent hytale-tagged articles via a wired component that correctly queries @nuxt/content with known-pitfall-safe patterns.
+
+---
+
+_Verified: 2026-04-22_
+_Verifier: Claude (gsd-verifier)_