MCPcopy Index your code
hub / github.com/codeaashu/claude-code / generateWordSlug

Function generateWordSlug

src/utils/words.ts:785–790  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

783 * Example: "gleaming-brewing-phoenix", "cosmic-pondering-lighthouse"
784 */
785export function generateWordSlug(): string {
786 const adjective = pickRandom(ADJECTIVES)
787 const verb = pickRandom(VERBS)
788 const noun = pickRandom(NOUNS)
789 return `${adjective}-${verb}-${noun}`
790}
791
792/**
793 * Generate a shorter random word slug in the format "adjective-noun"

Callers 2

generateUniqueTeamNameFunction · 0.85
getPlanSlugFunction · 0.85

Calls 1

pickRandomFunction · 0.85

Tested by

no test coverage detected