mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing professional tools, resources, and prompts for implementing AI agent best practices
24 lines • 981 B
TypeScript
/**
* Prompt Flow Builder - Creates declarative, graph-based AI workflows
*
* Inspired by claude-flow's architecture, this tool enables complex prompting strategies through:
* - Declarative flow definition with nodes and edges
* - Conditional branching and loops for adaptive behavior
* - Parallel execution for independent operations
* - Automatic visualization and execution guides
*
* Integration with Serena patterns:
* - Memory-aware execution (stores flow results for context retention)
* - Mode-appropriate flow design (planning vs. execution flows)
* - Symbol-based operations (flows can reference code symbols)
*
* @param args - Flow configuration (validated against PromptFlowSchema)
* @returns Formatted flow specification with visualization and execution guide
*/
export declare function promptFlowBuilder(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
//# sourceMappingURL=prompt-flow-builder.d.ts.map