In mid-May 2026, Prompt Anatomy shipped Classroom Prompt Builder at promptanatomy.online—a free, no-account web app that helps US K–12 teachers assemble structured prompts for ChatGPT, Claude, and Gemini without the site ever calling an AI API. Source and deploy details live in the open sister repo DITreneris/teacher: a static Vercel root plus lightweight serverless routes for optional PDF checkout. The US MVP landed 2026-05-15; paid fulfillment, buyer-confidence UX, and SEO hardening shipped through v1.1.2 on 2026-05-20.
This article is a field note on what shipped, which prompt-system patterns we reused from enterprise work, and where .online sits beside governed implementation content on .blog and team practice on .app. If you are mapping properties for the first time, start with The Prompt Anatomy Ecosystem Map.
What Classroom Prompt Builder is
Classroom Prompt Builder is a vertical try surface for teachers—not a knowledge hub and not corporate training checkout.
It is:
- A free, no-account, single-page prompt builder for US K–12
- Five modes—LESSON, ASSESSMENT, TASKS, PRESENTATION, STRATEGY—each with mode-specific form fields (defined in sister
config/sot.json) - Grade 1–12 context, six library templates, and optional saved sessions in browser localStorage
- Optional paid PDF guides (Beginners $4.99 · Advanced $9.99) sold separately through Stripe
It is not:
- An AI runtime—the product never calls an AI API
- An LMS, student data store, or enterprise workflow platform
- Proof of corporate AI maturity for procurement decks
That separation mirrors a rule we repeat on .blog: the builder is not the execution environment. See The Model Is Not the System. Teachers paste prompts into external tools; ops teams paste registry artifacts into governed agent stacks—the architecture lesson is the same.
The four-step workflow
The live product follows one loop:
- Select a mode tab (lesson plan, assessment, tasks, presentation, or teaching strategy).
- Pick a grade and fill mode-specific fields—topic, duration, goals, constraints, or the main question for the AI.
- Read the generated prompt in the output panel; it updates as the form changes.
- Copy and paste into ChatGPT, Claude, or Gemini—the site offers deep links to each tool.
Saved sessions stay in localStorage with a cap—no account required. That is intentional trust posture: the builder workflow does not collect student PII or transmit prompt text to Prompt Anatomy servers.
Five lesson-quality principles
The product ships five quality rules in SOT—not as footer disclaimers but as design constraints baked into how modes and library templates are written:
| Principle | Enterprise parallel |
|---|---|
| Every prompt leads to a classroom-ready outcome | Task prompt with a clear output contract |
| Clarity beats complexity: one mode, one goal | No mega-prompt drift across workflow steps |
| Activities should be doable in your classroom | Scope constraints in task templates |
| Define assessment criteria up front | Checker framing before generation |
| Presentation mode returns a text outline—bring it to your slides tool | Transformation step, not the final artifact |
Mode separation is the same discipline we teach for business workflows: match prompt type to step, not one growing system message. See Types of Prompts for Business Workflows.
Architecture lessons for implementers
Builders evaluating a similar wedge product—or auditing how Prompt Anatomy extends the brand—should note six patterns from the sister repo's gold_legacy_standard.md. The same assembly≠execution pattern shipped earlier on The Weekly CEO Brief Pattern (April 2026, DITreneris/ceo); CPB reuses the stack for K–12:
- SOT-first copy —
config/sot.jsonowns modes, library prompts, commerce copy, buyer FAQ, and legal metadata;generator.jshydrates the page at runtime. Treat it as a lightweight prompt registry for product copy—the same idea as versioned packs in Structured Prompt System Blueprint. - Prompt assembly ≠ AI execution — the site constructs text; execution happens in a tool the user controls. Teacher-in-the-loop verification before classroom use is the K–12 version of handoff rules between humans and AI.
- Static checkout fallbacks — live
buy.stripe.comhrefs ship in HTML before JavaScript hydrates from SOT, so checkout works when JS fails or SOT fetch is slow. - Same-host fulfillment — Stripe Payment Link success URL, webhook endpoint, Redis store, and
SITE_URLmust all belong topromptanatomy.online. A production incident occurred when the webhook pointed at.appwhile buyers returned to.online—payment succeeded but fulfillment lookup was empty. - Repo boundary — product UI and PDF fulfillment stay in
teacher; school outreach (Railway, Supabase, marketing email onnews.promptanatomy.online) lives in siblingcpb-school-outreach. Do not mix outreach logic intoapi/**fulfillment routes. - Quality gates in CI —
npm run test:mixedcovers structure, smoke at 320/375/768 px, core e2e, and pa11y; fulfillment changes addnpm run check:fulfillment.
Deploy checklists, webhook env tables, and operator runbooks stay in the sister repo (DEPLOY.md, AGENTS.md, memo_pdf.md)—not duplicated here.
What shipped (surfaces)
| Surface | URL |
|---|---|
| Product | promptanatomy.online |
| Repository | github.com/DITreneris/teacher |
| Parent brand / training | promptanatomy.app |
| Optional PDFs | Beginners $4.99 · Advanced $9.99 |
The stack is intentionally thin: Vercel static root, serverless api/* for Stripe webhook and signed PDF delivery, no build command. Design System 2.0 lives in sister docs/STYLEGUIDE.md.
Read the hero diagram
The launch hero encodes the product chain: Mode → Form → Classroom-ready prompt → External AI tool.
Random chat produces inconsistent lesson plans and unclear ownership. Mode picks the workflow step. Form fields supply context, grade, and constraints. Classroom-ready prompt is the copy-paste artifact. External AI tool is where generation happens—under teacher review, not inside Prompt Anatomy infrastructure.
That chain parallels the marketing-site hero (Random Prompt → Logic Layer → Team Workflow → Repeatable Output) described in Prompt Anatomy Marketing Site Launch—except CPB stops before "team workflow" because the teacher owns the workflow. Discover the brand on .site; try the K–12 wedge on .online; read depth on .blog.
Launch guardrails
Product trust (documented in sister Terms and Privacy):
- Verify AI output before classroom use; outputs are not for high-stakes decisions without human review
- No student PII collected through the prompt-building workflow
- Optional PDFs carry a Classroom License and 14-day refund policy
For .blog readers:
- CPB usage or PDF sales do not prove enterprise AI implementation maturity—the same category error as citing Corporate Ladder engagement in a procurement deck
- Do not paste builder copy into governance forums as if it were eval evidence; link relevant playbooks and cite pass rate, cycle time, or incident cost on real workflows per AI Procurement Freeze
promptanatomy.online gives teachers a structured front door. The job of this blog remains turning curiosity into repeatable, owned AI workflows—and .app into team practice when you are ready to standardize.