chore: auto-commit (1 archivos)

- naming.go

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-11 00:16:46 +02:00
parent 1ec8f72edd
commit 89bc67f471
+2 -1
View File
@@ -21,6 +21,7 @@ var canonicalDomains = map[string]bool{
"metabase": true,
"ml": true,
"notebook": true,
"obsidian": true,
"pipelines": true,
"shell": true,
"tui": true,
@@ -112,7 +113,7 @@ func validateDomain(domain string) error {
}
if !canonicalDomains[domain] {
return fmt.Errorf(
"naming: domain %q not in canonical list. Allowed: browser, core, cybersecurity, datascience, docker, finance, gamedev, geo, gfx, infra, metabase, ml, notebook, pipelines, shell, tui, ui, viz. Add new domain to CLAUDE.md + apps/registry_mcp/naming.go first.",
"naming: domain %q not in canonical list. Allowed: browser, core, cybersecurity, datascience, docker, finance, gamedev, geo, gfx, infra, metabase, ml, notebook, obsidian, pipelines, shell, tui, ui, viz. Add new domain to CLAUDE.md + apps/registry_mcp/naming.go first.",
domain,
)
}