feat: Add skill creation command (#141)

Co-authored-by: cpacker <packercharles@gmail.com>
Co-authored-by: Sarah Wooders <sarahwooders@gmail.com>
This commit is contained in:
Kevin Lin
2025-12-01 21:02:49 -08:00
committed by GitHub
parent 8ce6d32087
commit 57169c63e1
14 changed files with 1482 additions and 11 deletions

View File

@@ -14,6 +14,7 @@ import personaEmptyPrompt from "./prompts/persona_empty.mdx";
import personaKawaiiPrompt from "./prompts/persona_kawaii.mdx";
import planModeReminder from "./prompts/plan_mode_reminder.txt";
import projectPrompt from "./prompts/project.mdx";
import skillCreatorModePrompt from "./prompts/skill_creator_mode.md";
import skillUnloadReminder from "./prompts/skill_unload_reminder.txt";
import skillsPrompt from "./prompts/skills.mdx";
import stylePrompt from "./prompts/style.mdx";
@@ -23,6 +24,7 @@ export const SYSTEM_PROMPT = systemPrompt;
export const PLAN_MODE_REMINDER = planModeReminder;
export const SKILL_UNLOAD_REMINDER = skillUnloadReminder;
export const INITIALIZE_PROMPT = initializePrompt;
export const SKILL_CREATOR_PROMPT = skillCreatorModePrompt;
export const MEMORY_PROMPTS: Record<string, string> = {
"persona.mdx": personaPrompt,