← back to Homesonspec
fix(homesonspec): correct fabricated CPG termsUrls in seed (TK-10487)
a7904b1edb905827faf037d7e28315188610376e · 2026-08-30 09:39:38 -0700 · Steve
Mungo /terms-of-use and Chafin /terms-of-use/ were pattern-guessed by the
batch-2 build loop and both 404. Replaced with footer-verified 200 URLs:
mungo.com/legal and the CPG-parent claytonhomes.com/legal that Chafin's own
footer links (Chafin has no standalone terms page). Facts-only; seed is not
executed (seeding stays Steve-gated).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Files touched
M packages/database/prisma/seed-cpg-builders.ts
Diff
commit a7904b1edb905827faf037d7e28315188610376e
Author: Steve <steve@designerwallcoverings.com>
Date: Sun Aug 30 09:39:38 2026 -0700
fix(homesonspec): correct fabricated CPG termsUrls in seed (TK-10487)
Mungo /terms-of-use and Chafin /terms-of-use/ were pattern-guessed by the
batch-2 build loop and both 404. Replaced with footer-verified 200 URLs:
mungo.com/legal and the CPG-parent claytonhomes.com/legal that Chafin's own
footer links (Chafin has no standalone terms page). Facts-only; seed is not
executed (seeding stays Steve-gated).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---
packages/database/prisma/seed-cpg-builders.ts | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/packages/database/prisma/seed-cpg-builders.ts b/packages/database/prisma/seed-cpg-builders.ts
index 0ff5566d..5d9dc1b1 100644
--- a/packages/database/prisma/seed-cpg-builders.ts
+++ b/packages/database/prisma/seed-cpg-builders.ts
@@ -52,7 +52,9 @@ const CPG_BRANDS: {
name: "Mungo Homes",
legalName: "Mungo Homes, Inc.",
website: "https://www.mungo.com",
- termsUrl: "https://www.mungo.com/terms-of-use",
+ // Verified from the site footer (2026-08-30, 200) — the guessed
+ // /terms-of-use 404s; /legal is the real terms page. (TK-10487)
+ termsUrl: "https://www.mungo.com/legal",
coverage: "North Carolina, South Carolina, Georgia, and Virginia",
},
{
@@ -60,7 +62,10 @@ const CPG_BRANDS: {
name: "Chafin Communities",
legalName: "Chafin Communities, Inc.",
website: "https://www.chafincommunities.com",
- termsUrl: "https://www.chafincommunities.com/terms-of-use/",
+ // Verified from the site footer (2026-08-30, 200) — the guessed
+ // /terms-of-use/ 404s; Chafin has no own terms page, its footer links the
+ // Clayton Properties Group parent legal/terms. (TK-10487)
+ termsUrl: "https://www.claytonhomes.com/legal/",
coverage: "Georgia — Metro Atlanta",
},
];
← ef253225 Record TK-10809 post-commit proof
·
back to Homesonspec
·
TK-10809: extract classifyForDest pure fn + hermetic verify 66e0038c →