Context
Anthropic's Claude Code lead Thariq Shihipar published The Unreasonable Effectiveness of HTML on 2026-05-08, arguing HTML beats Markdown as the canonical output format for AI agents in the 1M-context era. Anthropic has adopted HTML as the internal default for plans, code reviews, design systems, and reports.
The argument in one line:
Markdown won when context windows were small and every token mattered. Context windows are a million tokens now. The original constraint is gone. HTML's display power wins.
This issue migrates OwnYourCode's Spec-Driven Development (SDD) workflow to HTML as the canonical format for all 6 SDD artifacts. Maximalist scope — no hybrid.
Why now
- 1M context windows flipped the token-cost calculus — bottleneck shifted from fitting context to human comprehension.
- The cwc-workshops 'How We Claude Code' workshop demonstrates the canonical pattern: HTML mockups as the design artifact, 4 divergent layouts side-by-side, agents reason across them.
- 'Plans you actually read' = 'plans you understood' = ownership. Aligns with OwnYourCode's anti-cognitive-offloading positioning.
Scope — all 6 SDD files
| File |
Created by |
Read/Mutated by |
Migration |
| `ownyourcode/product/mission.html` |
`/own:init` |
Human review |
New HTML template |
| `ownyourcode/product/stack.html` |
`/own:init` |
Human reference |
New HTML template |
| `ownyourcode/product/roadmap.html` |
`/own:init` |
`/own:feature` (phase detection), Human |
HTML parsing required |
| `ownyourcode/specs/active/phase-[N]-[name]/spec.html` |
`/own:feature` |
`/own:guide`, Human |
New HTML template |
| `ownyourcode/specs/active/phase-[N]-[name]/design.html` |
`/own:feature` |
`/own:guide`, Human |
Killer feature: 4 design options pattern |
| `ownyourcode/specs/active/phase-[N]-[name]/tasks.html` |
`/own:feature` |
`/own:done` (mutates checkboxes), `/own:status` (parses progress) |
HTML mutation + parsing required |
Work items
Out of scope
- Other OwnYourCode commands (`/own:retro`, `/own:advise`, `/own:stuck`, `/own:profile`, `/own:docs`, `/own:test`, `/own:guide`) — they don't touch SDD files
- Learning registry, retro logs, career stories — those stay Markdown
- Replacing the `frontend-design` skill itself
References
Notes for implementer
- This is a multi-PR feature, not a single change. Stage logically (templates → `/own:theme` → `/own:init` → `/own:feature` → `/own:done`/`/own:status`).
- DOM mutation in `/own:done` is the hardest part — that's a senior engineering challenge worth surfacing in the LinkedIn post.
- Theme system must enforce: user controls VISUAL design only, not workflow structure.
- Cost analysis: HTML costs ~2-3x MD per generation in raw tokens, but saves more in reduced iteration cycles. Net positive for human-read files.
Source of decision: brainstorm session 2026-05-28 after watching Code with Claude London lectures on YouTube.
Context
Anthropic's Claude Code lead Thariq Shihipar published The Unreasonable Effectiveness of HTML on 2026-05-08, arguing HTML beats Markdown as the canonical output format for AI agents in the 1M-context era. Anthropic has adopted HTML as the internal default for plans, code reviews, design systems, and reports.
The argument in one line:
This issue migrates OwnYourCode's Spec-Driven Development (SDD) workflow to HTML as the canonical format for all 6 SDD artifacts. Maximalist scope — no hybrid.
Why now
Scope — all 6 SDD files
Work items
Out of scope
References
Notes for implementer
Source of decision: brainstorm session 2026-05-28 after watching Code with Claude London lectures on YouTube.