summaryrefslogtreecommitdiffhomepage
path: root/src/features/system-prompt/index.ts
blob: 50d9d218a60e8f86b000edc09424faab19f0b7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type {
  LoadSystemPrompt,
  LoadSystemPromptVariables,
  SaveSystemPrompt,
  SystemPromptLoadResult,
  SystemPromptSaveResult,
  SystemPromptVariablesResult,
  VariableGroup,
} from "./logic/view-model";
export { buildTag, groupVariables, insertTag, isDynamicVariable } from "./logic/view-model";
export { default as SystemPromptBuilder } from "./ui/SystemPromptBuilder.svelte";

/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
export const manifest = {
  name: "system-prompt",
  description: "Global system prompt template builder with variable placeholders",
} as const;