- Create packages/branding/ workspace package (@paperclipai/branding) - Add VOCAB constant with 8 Nexus display strings (company, companies, ceo, board, hire, fire, appName, tagline) - Export VocabKey type for type-safe string lookups - Add vitest config and 9 passing unit tests covering all VOCAB values - Update pnpm-lock.yaml to link new workspace package
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
export const VOCAB = {
|
|
// Entity renames (display only — code identifiers unchanged)
|
|
company: "Workspace",
|
|
companies: "Workspaces",
|
|
ceo: "Project Manager",
|
|
board: "Owner",
|
|
hire: "Add",
|
|
fire: "Remove",
|
|
|
|
// Brand name
|
|
appName: "Nexus",
|
|
tagline: "Open-source orchestration for your agents",
|
|
} as const;
|
|
|
|
export type VocabKey = keyof typeof VOCAB;
|