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