Reframe homepage tagline: architecture as code, for code AI writes
"The architectural standard" was bolder than SAMA on day three can honestly claim — one author, n=3 datapoints, no external adoption. "Architecture as code, for code AI writes" follows the Pulumi/Tailwind concept-pun pattern: a recognizable SV trope (infrastructure-as-code, tests-as-code) repurposed for the AI-coding domain. Three call sites synced: - content/home.md — the blockquote tagline - src/d21_app.ts — HOME_DESCRIPTION meta + og:title The "Conventional Commits for code architecture" byline below stays intact because the analogy is anchored to the SAMA acronym, not the tagline. Co-Authored-By: Claude Opus 4.7 <[email protected]>
2 files changed · +3 −3
content/home.md
+1
−1
| @@ -1,6 +1,6 @@ | ||
| 1 | 1 | # SAMA |
| 2 | 2 | |
| 3 | -> The architectural standard for AI-agent codebases. | |
| 3 | +> Architecture as code, for code AI writes. | |
| 4 | 4 | |
| 5 | 5 | SAMA is to agent-written code what Conventional Commits is to git history: a small, named, verifiable standard your CI enforces so your AI coding agents stop drifting. |
| 6 | 6 | |
src/d21_app.ts
+2
−2
| @@ -67,11 +67,11 @@ const HOME_MD = "./content/home.md"; | ||
| 67 | 67 | const GAME_DIR = "./content/games"; |
| 68 | 68 | |
| 69 | 69 | const HOME_DESCRIPTION = |
| 70 | - "SAMA — the architectural standard for AI-agent codebases. Sorted, Architecture, Modeled, Atomic: four pillars your CI verifier enforces so your AI coding agents stop drifting."; | |
| 70 | + "SAMA — architecture as code, for code AI writes. Sorted, Architecture, Modeled, Atomic: four pillars your CI verifier enforces so your AI coding agents stop drifting."; | |
| 71 | 71 | |
| 72 | 72 | const homeBody = await Bun.file(HOME_MD).text(); |
| 73 | 73 | const HOME_HTML = await renderPage({ |
| 74 | - title: "SAMA — the architectural standard for AI-agent codebases", | |
| 74 | + title: "SAMA — architecture as code, for code AI writes", | |
| 75 | 75 | description: HOME_DESCRIPTION, |
| 76 | 76 | bodyMarkdown: homeBody, |
| 77 | 77 | active: "home", |