Files
Maestro/src/prompts/index.ts
Pedram Amini 93268d3528 OAuth enabled but no valid token found. Starting authentication...
Found expired OAuth token, attempting refresh...
Token refresh successful
## CHANGES

- Prompts now compile from Markdown into TypeScript at build-time 🔧
- New `build:prompts` step runs automatically for dev and release builds 🏗️
- Main process stops runtime prompt file I/O for faster, safer startups 
- Group chat prompt access refactored into getter functions for flexibility 🧩
- Added IPC to reset a participant context with session summarization 🔄
- Participant cards now copy agent session IDs with one click 📋
- UI shows context-reset button when participant usage hits 40%+ ⏱️
- History markdown now supports raw HTML rendering via `rehype-raw` 🧪
- History detail supports clickable file links and in-app file previews 🗂️
- Document copy-drag enables reset-on-completion across duplicate filenames 🧷
2025-12-24 12:17:42 -06:00

35 lines
738 B
TypeScript

/**
* Centralized prompts module
*
* All prompts are stored as .md files in this directory and compiled
* to TypeScript at build time by scripts/generate-prompts.mjs.
*
* The generated file is at src/generated/prompts.ts
*/
export {
// Wizard
wizardSystemPrompt,
wizardSystemContinuationPrompt,
wizardDocumentGenerationPrompt,
// AutoRun
autorunDefaultPrompt,
autorunSynopsisPrompt,
// Input processing
imageOnlyDefaultPrompt,
// Commands
commitCommandPrompt,
// Maestro system prompt
maestroSystemPrompt,
// Group chat prompts
groupChatModeratorSystemPrompt,
groupChatModeratorSynthesisPrompt,
groupChatParticipantPrompt,
groupChatParticipantRequestPrompt,
} from '../generated/prompts';