syntaxai/tdd.md · commit e38ab1d

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]>
author
syntaxai <[email protected]>
date
2026-05-24 09:31:12 +01:00
parent
fe79ac7
commit
e38ab1d31d132ba384caa6f406b638a5a1844b4a

2 files changed · +3 −3

modified content/home.md +1 −1
@@ -1,6 +1,6 @@
11 # SAMA
22
3-> The architectural standard for AI-agent codebases.
3+> Architecture as code, for code AI writes.
44
55 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.
66
modified src/d21_app.ts +2 −2
@@ -67,11 +67,11 @@ const HOME_MD = "./content/home.md";
6767 const GAME_DIR = "./content/games";
6868
6969 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.";
7171
7272 const homeBody = await Bun.file(HOME_MD).text();
7373 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",
7575 description: HOME_DESCRIPTION,
7676 bodyMarkdown: homeBody,
7777 active: "home",