docs: regenerate services catalog for the register() disposer signature

This commit is contained in:
Tianyi Cui
2026-07-09 04:53:58 +08:00
parent 547aacee2f
commit d5d5e3fa3c

View File

@@ -31,7 +31,7 @@ Agent registry (`ctx.agents`): tracks live agents so UI, hook, and orchestrator
setFactory(factory: AgentFactory): () => void
create(options: CreateAgentOptions): AgentHandle
async resume(options: ResumeAgentOptions): Promise<AgentHandle>
register(agent: Agent): () => void
register(agent: Agent): () => Promise<void> | void
get(id: AgentId): Agent | undefined
list(): Agent[]
```