MCP Terminal Server

# No new actions at runtime error Defining new actions at runtime is not allowed. āœ… DO: ```ts const prompt = defineDotprompt({...}) const flow = defineFlow({...}, async (input) => { await prompt.generate(...); }) ``` āŒ DON'T: ```ts const flow = defineFlow({...}, async (input) => { const prompt = defineDotprompt({...}) prompt.generate(...); }) ```