refactor: split Claude agent runner entrypoint (#200)

This commit is contained in:
Eyejoker
2026-05-30 01:47:41 +09:00
committed by GitHub
parent 35988d9797
commit 1531482363
8 changed files with 864 additions and 705 deletions

View File

@@ -0,0 +1,13 @@
import type { RoomRoleContext } from './room-role-context.js';
export interface RunnerInput {
prompt: string;
sessionId?: string;
groupFolder: string;
chatJid: string;
isMain: boolean;
isScheduledTask?: boolean;
assistantName?: string;
secrets?: Record<string, string>;
roomRoleContext?: RoomRoleContext;
}