mirror of
https://github.com/jlengrand/Maestro.git
synced 2026-03-10 08:31:19 +00:00
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 🧷
35 lines
738 B
TypeScript
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';
|