fix(agent-core-v2): publish prompt.accepted on the event bus

This commit is contained in:
qer 2026-08-20 16:20:27 +08:00
parent 3e5976ecfd
commit 2ea5f794de

View file

@ -12,6 +12,7 @@ const promptAcceptedSchema = z.object({
export class PromptAccepted extends AgentEvent2<z.infer<typeof promptAcceptedSchema>> {
static override readonly type = 'prompt.accepted';
static override readonly durable = true;
static override readonly observable = true;
static override readonly schema = promptAcceptedSchema;
}
export interface PromptAccepted {