Implementation Notes

Who Orchestrates the Builders — Shipping promptanatomy.info

9 min read · Implementation Notes · May 2026

Who Orchestrates the Builders — Shipping promptanatomy.info
Execution agents localize UI, UX, and prompt copy across EN · ET · LV · JA · LT; the learning loop turns locale QA failures into rules for the next translation pass.

Field note on the May 2026 production launch of promptanatomy.info—a five-locale daily workflow library—and how a closed-loop agent system localized UI, UX, and prompt copy while hardening release gates across EN, ET, LV, JA, and LT.

Teams that roll out prompt libraries without org context scale paste-ready mistakes faster than they scale review habits. Northline's enablement lead shipped a .info workflow pack to forty contributors in one week. Adoption looked strong until a client-facing email went out with an invented statistic. Nobody had run a send check because the library felt ready to paste. The product needed to exist; the shipping discipline needed to match.

In late May 2026, Prompt Anatomy cut over promptanatomy.info to Vercel production—v1.4.0 on 2026-05-29 in the open sister repo DITreneris/automation. The Use spoke is a free, no-account, five-locale static library (LT, EN, ET, LV, JA) with eight org-analysis prompts and a copy-first journey. What made the launch repeatable was not a bigger template count—it was a closed-loop agent system we used while translating UI, UX, and prompt copy across locales: Orchestrator plus Content, UI, QA, and Research agents on the execution side; logs, evaluation, lessons, and rule updates on the learning side.

This article is a field note on what shipped, how the hero diagram maps to multilingual product work, and where .info sits beside governed implementation content on .blog. If you are mapping properties for the first time, start with The Prompt Anatomy Ecosystem Map. For the Enter spoke—send check before depth—see Quick Send Check First.

What promptanatomy.info is

promptanatomy.info is the Use spoke—not the knowledge hub, not training checkout, and not a vertical wedge like .online or .ceo.

It is:

  • A free, no-account static library at promptanatomy.info/en/ with paths for LT, EN, ET (Estonian), LV (Latvian), and JA (Japanese)
  • Eight org-analysis prompts with bullet-proof META / INPUT / OUTPUT blocks per BULLET_PROOF_PROMPTS
  • A copy → mark done → next prompt journey with progress in browser localStorage
  • Assembly only—the library never calls an AI API; visitors paste into ChatGPT, Claude, or Gemini

It is not:

  • An agent runtime, LMS, or enterprise workflow registry
  • Proof of corporate AI maturity for procurement decks

That separation mirrors a rule we repeat on .blog: the library is not the execution environment. See The Model Is Not the System. The agent loop in the hero diagram runs on the builder side—localizing and hardening the product—not inside the user's chat session.

Read the hero diagram

The launch hero encodes a closed-loop agent learning system—not a production multi-agent graph customers run.

Diagram block Multilingual shipping on .info
Orchestrator (plan · route · retry · track) Repo Orchestrator role—CI parity, locale gates, generate:et-lv diff checks, release coordination per AGENTS.md
Content agent Microcopy and prompt bodies per locale—library.js (EN canonical), library.lt.js, library.ja.js, generated ET/LV
UI agent DS v2.0 tokens, library.css, lang dropdown (hero + footer), collapsible prompts 2–8, mobile-first polish
QA agent structure.test.js (five-locale asserts), pa11y on /en/, /et/, /lv/, /ja/, lint:html across 11 HTML pages
Research agent MULTILINGUAL_STRUCTURE.md, hreflang rules, locale path parity
Skills npm test, validate:tokens, lint:design-tokens, generate:et-lv, SEO head constants
Output Shipped library—all five locales live at promptanatomy.info
Learning loop lessons/LESSONS.md—EN leaks, generator drift, hreflang bugs, serve -s trap—fed back into rules and skills

Contrast with Agent Orchestrator Operating Model: that article defines the production org role for multi-agent workflows in your company. This diagram shows the builder system that localized UI/UX and prompt copy while keeping five locales aligned—execution on the left, improvement on the right.

The locale pipeline

EN is canonical for shipping gates. ET and LV pages and JS generate from EN via npm run generate:et-lv; LT and JA stay manual but must pass the same structure and a11y asserts. After every EN edit, CI fails if generated ET/LV/LT JS diff is uncommitted—that is the Orchestrator enforcing parity, not goodwill.

Locale Path Maintenance
EN /en/ Canonical—en/index.html, js/library.js
ET /et/ Generated from EN
LV /lv/ Generated from EN
LT /lt/ Manual—origin tone; must stay structurally aligned
JA /ja/ Manual—prompt corpus in prompt-bodies-ja.cjs

Local preview uses npx serve . -l 3000 without -s—SPA mode breaks locale paths. That rule landed in lessons after a bad preview session; the learning loop working as designed.

Curriculum order is the lesson

The eight prompts teach org context before daily depth—the same sequence Northline needed after the invented-statistic incident:

.info prompt Blog parallel
DI context check Structured Prompt System Blueprint
Organization portrait What Is Context Architecture
Role + KPI Types of Prompts for Business Workflows
Core processes (Pareto) From Prompts to Business Outcomes
Daily prompt library (prompt 7) Handoff Rules Between Humans and AI

Translating that curriculum into five locales forced the agent loop to treat prompt semantics and UI microcopy as one surface—change EN copy, regenerate ET/LV, manually sync LT/JA, rerun pa11y. A library that reads premium in EN but leaks English into ET footer links fails the same way a support agent leaks the wrong disclaimer: users trust the wrong layer. See 10 Signs Your Company Is Vibe Prompting when copy-paste feels ship-ready without review.

Premium SaaS craft without a backend

v1.4.0 shipped Design System v2.0 and interaction patterns that feel like a hosted product—without databases or inference:

  • Token SSOTcss/tokens.css only; semantic layers for link, action, focus, motion
  • Progressive disclosure — prompt 1 always open; prompts 2–8 collapsible with #blockN deep links
  • Copy journey — Copy CTA sits above "Before using"; successful copy auto-marks done and advances progress
  • Mobile-first — lang dropdown opens down in hero, up in footer; hover transforms only at @media (hover: hover); toast respects safe-area-inset
  • Self-hosted assets — Lucide bundled locally; branded 404.html; OG pipeline from assets/img/og/
  • GEOllms.txt, sitemap.xml, hreflang + JSON-LD on library pages

Premium feel here comes from interaction design plus test gates, not from calling an API. The builder agents earned that quality locale by locale—not in one EN-only sprint.

Architecture patterns for implementers

Builders evaluating a similar multilingual library—or auditing how Prompt Anatomy extends the brand—should note seven patterns from the sister repo:

  1. EN canonical + locale generator — edit EN first; npm run generate:et-lv for ET/LV; LT/JA manual with parity asserts
  2. Prompt text SOT — per-locale library.*.js modules; bullet-proof META/INPUT/OUTPUT; copy payload excludes instructional chrome
  3. Assembly ≠ execution — library constructs text; external tools run inference under user control
  4. Locale preview rule — never serve -s on this stack; locale paths are real directories
  5. Product vs course hosts — library at promptanatomy.info/en/; course CTA to promptanatomy.app/en—never merge in badges or checkout
  6. Vercel hardening.vercelignore, cache headers, 301 redirects for legacy icon/OG paths per DEPLOYMENT.md
  7. CI as Orchestratornpm test bundles structure, tokens, HTML lint, ESLint; pa11y runs per locale URL list

Deploy checklists, locale rules, and operator runbooks stay in the sister repo—AGENTS.md, CONTRIBUTING.md—not duplicated here.

What shipped (surfaces)

Surface URL
Library (EN) promptanatomy.info/en/
Library (LT / ET / LV / JA) /lt/, /et/, /lv/, /ja/ on same host
Repository github.com/DITreneris/automation
Training / pricing promptanatomy.app/en
Ecosystem map The Prompt Anatomy Ecosystem Map

The stack stays thin: plain HTML, vanilla JS, Vercel static deploy, no backend and no AI API. Post-launch orchestrator hygiene—lean AGENTS.md, Cursor skills, lessons/audit-patterns.md—continues the learning loop through June 2026 without changing the user-facing contract.

Launch guardrails

Treat .info completion as orientation and daily habit, not proof of enterprise implementation maturity:

  • Finishing eight prompts in five languages does not replace a documented workflow ID, RACI, or eval gate pack on your side.
  • Do not paste library copy into procurement decks; link the relevant playbook on .blog and cite pass rate, cycle time, or incident cost per AI Procurement Freeze.
  • Library host (.info) and course host (.app) must stay distinct in analytics and CTAs—the same class of mistake as cross-domain webhook mismatches in Classroom Prompt Builder Launch.

Free ecosystem spokes complement training; they do not replace the full six-module path on .app. See Shipping Prompt Anatomy for hub access and where Enter (.cloud) and Manage (.ceo) fit.

promptanatomy.info gives practitioners org-aware daily prompts in five locales. The job of this blog remains turning that curiosity into repeatable, owned AI workflows—with owners, eval gates, and audit trails that survive the next model swap.

On this page

Move from pilot to program

Structured training for teams implementing AI under real operational and compliance constraints.

Explore training

Continue learning

Step 7 of 18 in Implementation Notes · Full reading order

Go deeper

Template

Templates

Governance RACI Worksheet

Copy-paste RACI worksheet to assign accountable owners for AI workflow changes, releases, and incidents.

3 min read · Templates · Jun 2026