(slug: string)
| 126 | * URL namespace (`classifyMcpPath` claims only `org_`-prefixed segments). |
| 127 | */ |
| 128 | export const isValidOrgSlug = (slug: string): boolean => |
| 129 | ORG_SLUG_PATTERN.test(slug) && !RESERVED_ORG_SLUGS.has(slug); |
| 130 | |
| 131 | /** |
| 132 | * Derive a slug candidate from an organization name. Lowercases, strips |
no outgoing calls
no test coverage detected