feat(ui): expose all editable prompt files, drop agent prompt

This commit is contained in:
mika kuns
2026-06-04 14:07:43 +02:00
parent edc9f77357
commit bd1e3db1d9
5 changed files with 31 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ using System.Text;
namespace ClaudeDo.Data;
public enum PromptKind { System, Planning, PlanningInitial, Retry, DailyPrep, WeeklyReport, Agent }
public enum PromptKind { System, Planning, PlanningInitial, Retry, DailyPrep, WeeklyReport }
public static class PromptFiles
{
@@ -16,7 +16,6 @@ public static class PromptFiles
PromptKind.Retry => Path.Combine(Root, "retry.md"),
PromptKind.DailyPrep => Path.Combine(Root, "daily-prep.md"),
PromptKind.WeeklyReport => Path.Combine(Root, "weekly-report.md"),
PromptKind.Agent => Path.Combine(Root, "agent.md"),
_ => throw new ArgumentOutOfRangeException(nameof(kind))
};
@@ -60,7 +59,6 @@ public static class PromptFiles
PromptKind.Retry => RetryDefault,
PromptKind.DailyPrep => DailyPrepDefault,
PromptKind.WeeklyReport => WeeklyReportDefault,
PromptKind.Agent => "",
_ => ""
};