Create structured outlines for blog posts.Input Schema:
topic (string, required)
audience (string, required)
word_count_target (integer)
Prompt:
Create a detailed outline for a blog post.Topic: {{ inputs.topic }}Target audience: {{ inputs.audience }}Target length: {{ inputs.word_count_target | default: 1500 }} wordsInclude:- Engaging title options (3)- Introduction hook- 4-6 main sections with subpoints- Conclusion with CTA- SEO keywords to targetReturn a structured JSON outline.
Draft a support response for this customer inquiry.Customer: {{ inputs.customer_name | default: "Customer" }}Issue type: {{ inputs.issue_type }}Tone: {{ inputs.tone | default: "friendly and professional" }}Customer message:{{ inputs.customer_message }}Guidelines:- Acknowledge their concern- Provide clear next steps- Offer additional help- Keep under 200 words{% include 'support-signature' %}
Extract entities from the following text.Entity types to find:{% for type in inputs.entity_types %}- {{ type }}{% endfor %}Text:{{ inputs.text }}For each entity found, include:- type: the entity type- value: the extracted text- normalized: standardized format (dates as ISO, amounts with currency)- confidence: 0.0 to 1.0Return: {"entities": [...]}
Analyze customer reviews for insights.Input Schema:
reviews (array of strings, required)
product_name (string)
Prompt:
Analyze these customer reviews for {{ inputs.product_name | default: "this product" }}.Reviews:{% for review in inputs.reviews %}---{{ review }}{% endfor %}---Provide:1. Overall sentiment breakdown (% positive/neutral/negative)2. Top 5 praised features3. Top 5 complaints4. Common suggestions for improvement5. Key quotes (positive and negative)Return comprehensive JSON analysis.
Explain this code to a developer.[The user's code is inserted here via inputs.code]Include:- What the code does at a high level- Step-by-step walkthrough- Key concepts used- Potential improvements- Definitions of technical terms for beginnersReturn structured JSON explanation.
Generate API documentation from code.Input Schema:
code (string, required)
framework (string)
Prompt:
Generate API documentation for this API endpoint.[The user's code is inserted here via inputs.code]Document:- Endpoint URL and method- Description- Request parameters with types and requirements- Request body schema- Response schema- Example request and response- Error responsesReturn in OpenAPI-compatible JSON format.