mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-05 09:33:07 +00:00
feat: add resume interrupted features endpoint and handler
- Introduced a new endpoint `/resume-interrupted` to handle resuming features that were interrupted during server restarts. - Implemented the `createResumeInterruptedHandler` to check for and resume interrupted features based on the project path. - Enhanced the `AutoModeService` to track and manage the execution state of features, ensuring they can be resumed correctly. - Updated relevant types and prompts to include the new 'ux-reviewer' enhancement mode for better user experience handling. - Added new templates for UX review and other enhancement modes to improve task descriptions from a user experience perspective.
This commit is contained in:
27
libs/prompts/src/enhancement-modes/index.ts
Normal file
27
libs/prompts/src/enhancement-modes/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Enhancement Modes Index
|
||||
*
|
||||
* Central export point for all enhancement mode definitions.
|
||||
* Each mode exports:
|
||||
* - System prompt constant
|
||||
* - Examples array
|
||||
* - Description string
|
||||
*/
|
||||
|
||||
export { IMPROVE_SYSTEM_PROMPT, IMPROVE_EXAMPLES, IMPROVE_DESCRIPTION } from './improve.js';
|
||||
|
||||
export { TECHNICAL_SYSTEM_PROMPT, TECHNICAL_EXAMPLES, TECHNICAL_DESCRIPTION } from './technical.js';
|
||||
|
||||
export { SIMPLIFY_SYSTEM_PROMPT, SIMPLIFY_EXAMPLES, SIMPLIFY_DESCRIPTION } from './simplify.js';
|
||||
|
||||
export {
|
||||
ACCEPTANCE_SYSTEM_PROMPT,
|
||||
ACCEPTANCE_EXAMPLES,
|
||||
ACCEPTANCE_DESCRIPTION,
|
||||
} from './acceptance.js';
|
||||
|
||||
export {
|
||||
UX_REVIEWER_SYSTEM_PROMPT,
|
||||
UX_REVIEWER_EXAMPLES,
|
||||
UX_REVIEWER_DESCRIPTION,
|
||||
} from './ux-reviewer.js';
|
||||
Reference in New Issue
Block a user