🔬 uuid.ts

This commit is contained in:
nirholas
2026-03-31 10:24:34 +00:00
parent c49179c7ce
commit bb9132de2a

View File

@@ -25,3 +25,4 @@ export function createAgentId(label?: string): AgentId {
const suffix = randomBytes(8).toString('hex')
return (label ? `a${label}-${suffix}` : `a${suffix}`) as AgentId
}