Content Pipeline Workflow

Multi-step content creation pipeline

1 version
@admin
about 3 hours ago
Automations

Content

1{
2 "name": "Content Creation Pipeline",
3 "version": "1.0",
4 "steps": [
5 {
6 "id": "research",
7 "name": "Research Topic",
8 "prompt": "Research the topic '{{topic}}' and provide 5 key points with sources",
9 "output": "research_results"
10 },
11 {
12 "id": "outline",
13 "name": "Create Outline",
14 "prompt": "Based on {{research_results}}, create a detailed blog post outline",
15 "output": "outline",
16 "depends_on": [
17 "research"
18 ]
19 },
20 {
21 "id": "draft",
22 "name": "Write Draft",
23 "prompt": "Write a {{word_count}} word blog post following this outline: {{outline}}",
24 "output": "draft",
25 "depends_on": [
26 "outline"
27 ]
28 },
29 {
30 "id": "review",
31 "name": "Review & Edit",
32 "prompt": "Review and improve this draft for clarity, grammar, and engagement: {{draft}}",
33 "output": "final_content",
34 "depends_on": [
35 "draft"
36 ]
37 }
38 ],
39 "variables": {
40 "topic": {
41 "type": "string",
42 "required": true
43 },
44 "word_count": {
45 "type": "number",
46 "default": 1500
47 }
48 }
49}