compose_prompts
Combine multiple existing prompts into a single prompt to create complex multi-step workflows. Use search_prompts first to find prompt names, then compose them with custom separators.
Instructions
🔗 Combine Prompts: Combine multiple existing prompts into a single prompt. Perfect for creating complex multi-step workflows. 📋 WORKFLOW: Use search_prompts to find prompt names first, then compose them.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompts | Yes | List of exact prompt names to combine in order. Get these names from search_prompts results. Examples: ["code_review_assistant", "documentation_generator"] | |
separator | No | Text to insert between prompts. Defaults to "\n\n---\n\n". Can use "\n\nNext Step:\n\n" or custom separators. |
Input Schema (JSON Schema)
{
"properties": {
"prompts": {
"description": "List of exact prompt names to combine in order. Get these names from search_prompts results. Examples: [\"code_review_assistant\", \"documentation_generator\"]",
"items": {
"type": "string"
},
"type": "array"
},
"separator": {
"description": "Text to insert between prompts. Defaults to \"\\n\\n---\\n\\n\". Can use \"\\n\\nNext Step:\\n\\n\" or custom separators.",
"type": "string"
}
},
"required": [
"prompts"
],
"type": "object"
}