mcp-casual-interview
Version:
MCP server for casual interview preparation workflow management
13 lines • 578 B
TypeScript
/**
* Next Action Prompts for Interview Workflow
*
* Contains the messages and guidance for each workflow state.
* Separated from main workflow logic for maintainability.
*/
type WorkflowState = 'not_started' | 'information_initially_registered' | 'career_summary_created' | 'match_position_determined' | 'match_degree_prediagnosed' | 'attract_plan_determined' | 'completed';
type NextActionPrompt = {
readonly message: string;
};
export declare const NEXT_ACTION_PROMPTS: Record<WorkflowState, NextActionPrompt>;
export {};
//# sourceMappingURL=action-prompts.d.ts.map