From d8aa46c0a759896db4069de82e29d0d24f4d48bf Mon Sep 17 00:00:00 2001 From: glifocat Date: Sun, 10 May 2026 20:30:40 +0200 Subject: [PATCH] fix(cli-scope): add scopeField to groups, sessions, destinations, members --- src/cli/resources/sessions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/resources/sessions.ts b/src/cli/resources/sessions.ts index f60fccc..33e2407 100644 --- a/src/cli/resources/sessions.ts +++ b/src/cli/resources/sessions.ts @@ -7,6 +7,7 @@ registerResource({ description: 'Session — the runtime unit. Maps one (agent_group, messaging_group, thread) combination to a container with its own inbound.db and outbound.db. Created automatically by the router when a message arrives.', idColumn: 'id', + scopeField: 'agent_group_id', columns: [ { name: 'id', type: 'string', description: 'UUID.', generated: true }, { name: 'agent_group_id', type: 'string', description: 'Agent group this session runs.' },