feat(hooks): add TASK_CONTINUATION system directive and hook name

This commit is contained in:
YeonGyu-Kim 2026-02-06 11:21:37 +09:00
parent 04576c306c
commit f796fdbe0a
2 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@ export const AgentNameSchema = BuiltinAgentNameSchema
export const HookNameSchema = z.enum([ export const HookNameSchema = z.enum([
"todo-continuation-enforcer", "todo-continuation-enforcer",
"task-continuation-enforcer",
"context-window-monitor", "context-window-monitor",
"session-recovery", "session-recovery",
"session-notification", "session-notification",

View File

@ -48,6 +48,7 @@ export function removeSystemReminders(text: string): string {
export const SystemDirectiveTypes = { export const SystemDirectiveTypes = {
TODO_CONTINUATION: "TODO CONTINUATION", TODO_CONTINUATION: "TODO CONTINUATION",
TASK_CONTINUATION: "TASK CONTINUATION",
RALPH_LOOP: "RALPH LOOP", RALPH_LOOP: "RALPH LOOP",
BOULDER_CONTINUATION: "BOULDER CONTINUATION", BOULDER_CONTINUATION: "BOULDER CONTINUATION",
DELEGATION_REQUIRED: "DELEGATION REQUIRED", DELEGATION_REQUIRED: "DELEGATION REQUIRED",