feat: add prompts for schedule generation

This commit is contained in:
2026-06-05 23:59:13 +09:00
parent d72c3dde0b
commit 0d40ecffed
4 changed files with 192 additions and 1 deletions

View File

@@ -1,7 +1,13 @@
import { readFile } from "fs/promises";
import path from "path";
const prompts = ["PERSONA_INIT", "PERSONA_BASE_SYSTEM_PROMPT"] as const;
const prompts = [
"PERSONA_INIT",
"PERSONA_BASE_SYSTEM_PROMPT",
"DAILY_SCHEDULE",
"MONTHLY_SCHEDULE",
"SCHEDULE_AVAILABILITY",
] as const;
export type PromptKey = (typeof prompts)[number];
function fileName(promptKey: PromptKey): string {