@exaudeus/workrail 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/spec/examples/coding-task-workflow.json +126 -107
- package/spec/examples/conditional-workflow-example.json +251 -212
- package/spec/examples/valid-workflow.json +118 -115
- package/spec/workflow.schema.json +62 -2
- package/workflows/adaptive-ticket-creation.json +272 -245
- package/workflows/coding-task-workflow.json +317 -138
- package/workflows/learner-centered-course-workflow.json +267 -265
- package/workflows/personal-learning-materials-creation-branched.json +195 -175
- package/workflows/presentation-creation.json +244 -237
- package/workflows/systemic-bug-investigation.json +175 -174
- package/workflows/workflow-for-workflows.json +296 -262
|
@@ -1,252 +1,259 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
{
|
|
22
|
-
"id": "audience-and-context-analysis",
|
|
23
|
-
"title": "Audience & Context Analysis",
|
|
24
|
-
"prompt": "**PREP**: Thoroughly analyze your audience and presentation context to ensure maximum impact.\n\n**IMPLEMENT**: Create a detailed audience profile:\n- **Audience Demographics**: Professional background, expertise level, role/seniority\n- **Audience Motivations**: What they want to learn, their pain points, success criteria\n- **Context Analysis**: Event type, setting, time constraints, follow-up expectations\n- **Engagement Preferences**: Interactive vs. presentation style, Q&A expectations\n- **Success Metrics**: How will you measure if the presentation achieved its goals?\n\n**VERIFY**: Confirm you have a clear understanding of who you're presenting to and what success looks like.",
|
|
25
|
-
"agentRole": "You are an audience research specialist and presentation strategist with expertise in understanding diverse professional audiences. Your strength lies in identifying audience needs, motivations, and preferences to ensure presentations resonate and achieve their intended impact.",
|
|
26
|
-
"guidance": [
|
|
27
|
-
"The better you understand your audience, the more you can tailor your message",
|
|
28
|
-
"Consider both explicit and implicit audience needs",
|
|
29
|
-
"Think about the broader context - what happens before and after your presentation?"
|
|
30
|
-
],
|
|
31
|
-
"requireConfirmation": true,
|
|
32
|
-
"validationCriteria": [
|
|
2
|
+
"id": "presentation-creation",
|
|
3
|
+
"name": "Dynamic Presentation Creation Workflow",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"description": "A comprehensive workflow for creating dynamic, interesting, and insightful presentations. Guides users through audience analysis, content strategy, visual design, and delivery preparation to create compelling presentations that engage and inform.",
|
|
6
|
+
"preconditions": [
|
|
7
|
+
"User has a clear presentation topic or objective",
|
|
8
|
+
"User has access to relevant source materials or research",
|
|
9
|
+
"User has identified their target audience",
|
|
10
|
+
"User has a rough timeline for presentation delivery"
|
|
11
|
+
],
|
|
12
|
+
"clarificationPrompts": [
|
|
13
|
+
"What is the main objective or key message of your presentation?",
|
|
14
|
+
"Who is your target audience and what is their expertise level?",
|
|
15
|
+
"What is the presentation format (conference, meeting, webinar, etc.)?",
|
|
16
|
+
"How much time do you have for the presentation?",
|
|
17
|
+
"What supporting materials or data do you have available?",
|
|
18
|
+
"Are there any specific constraints or requirements to consider?"
|
|
19
|
+
],
|
|
20
|
+
"steps": [
|
|
33
21
|
{
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
22
|
+
"id": "audience-and-context-analysis",
|
|
23
|
+
"title": "Audience & Context Analysis",
|
|
24
|
+
"prompt": "**PREP**: Thoroughly analyze your audience and presentation context to ensure maximum impact.\n\n**IMPLEMENT**: Create a detailed audience profile:\n- **Audience Demographics**: Professional background, expertise level, role/seniority\n- **Audience Motivations**: What they want to learn, their pain points, success criteria\n- **Context Analysis**: Event type, setting, time constraints, follow-up expectations\n- **Engagement Preferences**: Interactive vs. presentation style, Q&A expectations\n- **Success Metrics**: How will you measure if the presentation achieved its goals?\n\n**VERIFY**: Confirm you have a clear understanding of who you're presenting to and what success looks like.",
|
|
25
|
+
"agentRole": "You are an audience research specialist and presentation strategist with expertise in understanding diverse professional audiences. Your strength lies in identifying audience needs, motivations, and preferences to ensure presentations resonate and achieve their intended impact.",
|
|
26
|
+
"guidance": [
|
|
27
|
+
"The better you understand your audience, the more you can tailor your message",
|
|
28
|
+
"Consider both explicit and implicit audience needs",
|
|
29
|
+
"Think about the broader context - what happens before and after your presentation?"
|
|
30
|
+
],
|
|
31
|
+
"requireConfirmation": true,
|
|
32
|
+
"validationCriteria": [
|
|
33
|
+
{
|
|
34
|
+
"type": "regex",
|
|
35
|
+
"pattern": "(?i)##?\\s*Audience Demographics:?",
|
|
36
|
+
"message": "Analysis must include audience demographics section"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"type": "regex",
|
|
40
|
+
"pattern": "(?i)##?\\s*Audience Motivations:?",
|
|
41
|
+
"message": "Analysis must include audience motivations section"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "length",
|
|
45
|
+
"min": 400,
|
|
46
|
+
"message": "Analysis should be at least 400 characters for comprehensive coverage"
|
|
47
|
+
}
|
|
48
|
+
],
|
|
49
|
+
"hasValidation": true
|
|
37
50
|
},
|
|
38
51
|
{
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
52
|
+
"id": "content-strategy-and-structure",
|
|
53
|
+
"title": "Content Strategy & Structure Development",
|
|
54
|
+
"prompt": "**PREP**: Develop a compelling content strategy that aligns with your audience analysis.\n\n**IMPLEMENT**: Create a structured content plan:\n- **Core Message**: One clear, memorable takeaway (elevator pitch version)\n- **Supporting Arguments**: 3-5 key points that reinforce your core message\n- **Narrative Arc**: How will you take the audience on a journey? (problem \u2192 solution \u2192 impact)\n- **Evidence Strategy**: Data, examples, stories, and visuals that support each point\n- **Engagement Hooks**: Surprising statistics, thought-provoking questions, interactive elements\n- **Call-to-Action**: What specific action do you want the audience to take?\n\n**VERIFY**: Ensure your content strategy creates a logical flow that serves your audience's needs while achieving your objectives.",
|
|
55
|
+
"agentRole": "You are a presentation design expert and storytelling specialist with extensive experience in crafting compelling content strategies. Your expertise lies in transforming complex information into engaging narratives that drive audience action and understanding.",
|
|
56
|
+
"guidance": [
|
|
57
|
+
"Start with your core message - everything else should support it",
|
|
58
|
+
"Use the 'So What?' test for each section - why should the audience care?",
|
|
59
|
+
"Plan for multiple learning styles - visual, auditory, kinesthetic",
|
|
60
|
+
"Include moments of high engagement throughout, not just at the beginning"
|
|
61
|
+
],
|
|
62
|
+
"requireConfirmation": true,
|
|
63
|
+
"validationCriteria": [
|
|
64
|
+
{
|
|
65
|
+
"type": "regex",
|
|
66
|
+
"pattern": "(?i)##?\\s*Core Message:?",
|
|
67
|
+
"message": "Strategy must include a clear core message"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "regex",
|
|
71
|
+
"pattern": "(?i)##?\\s*Supporting Arguments:?",
|
|
72
|
+
"message": "Strategy must include supporting arguments"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "regex",
|
|
76
|
+
"pattern": "(?i)##?\\s*Call-to-Action:?",
|
|
77
|
+
"message": "Strategy must include a call-to-action"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "length",
|
|
81
|
+
"min": 600,
|
|
82
|
+
"message": "Strategy should be at least 600 characters for comprehensive planning"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"hasValidation": true
|
|
42
86
|
},
|
|
43
87
|
{
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
{
|
|
79
|
-
"type": "length",
|
|
80
|
-
"min": 600,
|
|
81
|
-
"message": "Strategy should be at least 600 characters for comprehensive planning"
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"id": "slide-structure-and-flow",
|
|
87
|
-
"title": "Slide Structure & Flow Design",
|
|
88
|
-
"prompt": "**PREP**: Transform your content strategy into a detailed slide-by-slide structure.\n\n**IMPLEMENT**: Create a comprehensive slide outline:\n- **Opening Hook** (1-2 slides): Attention grabber, context setting, agenda preview\n- **Main Content Blocks** (8-15 slides): Each supporting argument with evidence and examples\n- **Transition Slides**: Smooth connections between major sections\n- **Interaction Points**: Polls, Q&A moments, discussion breaks\n- **Visual Hierarchy**: Which slides need charts, images, diagrams, or minimal text\n- **Pacing Strategy**: Balance of information density vs. breathing room\n- **Closing Impact** (2-3 slides): Summary, call-to-action, next steps\n\n**VERIFY**: Review the flow for logical progression, appropriate pacing, and engagement variety.",
|
|
89
|
-
"agentRole": "You are a presentation structure architect with expertise in information design and audience engagement flow. Your specialty is creating logical, well-paced slide sequences that maintain audience attention while effectively conveying complex information.",
|
|
90
|
-
"guidance": [
|
|
91
|
-
"Follow the 6x6 rule: max 6 bullet points with 6 words each",
|
|
92
|
-
"Plan for one key idea per slide",
|
|
93
|
-
"Include slide numbers and estimated timing",
|
|
94
|
-
"Consider how slides will work both in-person and if shared later"
|
|
95
|
-
],
|
|
96
|
-
"requireConfirmation": true,
|
|
97
|
-
"validationCriteria": [
|
|
98
|
-
{
|
|
99
|
-
"type": "regex",
|
|
100
|
-
"pattern": "(?i)slide\\s*\\d+",
|
|
101
|
-
"message": "Outline must include numbered slides (e.g., 'Slide 1', 'Slide 2')"
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"type": "regex",
|
|
105
|
-
"pattern": "(?i)(opening|hook|introduction)",
|
|
106
|
-
"message": "Outline must include opening/hook slides"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"type": "regex",
|
|
110
|
-
"pattern": "(?i)(closing|conclusion|summary)",
|
|
111
|
-
"message": "Outline must include closing/summary slides"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"type": "length",
|
|
115
|
-
"min": 800,
|
|
116
|
-
"message": "Slide outline should be at least 800 characters for detailed planning"
|
|
117
|
-
}
|
|
118
|
-
]
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"id": "visual-design-and-engagement",
|
|
122
|
-
"title": "Visual Design & Engagement Elements",
|
|
123
|
-
"prompt": "**PREP**: Design the visual and interactive elements that will make your presentation dynamic and memorable.\n\n**IMPLEMENT**: Plan comprehensive visual and engagement strategy:\n- **Visual Theme**: Color scheme, typography, consistent design language\n- **Data Visualization**: Chart types, infographic concepts, before/after comparisons\n- **Multimedia Elements**: Video clips, animations, interactive demos\n- **Storytelling Visuals**: Metaphors, analogies, journey maps\n- **Engagement Techniques**: Live polls, breakout discussions, hands-on activities\n- **Memory Aids**: Mnemonics, repeated visual themes, callback references\n- **Accessibility**: Readable fonts, color contrast, alternative text descriptions\n\n**VERIFY**: Ensure visual elements enhance rather than distract from your message, and engagement techniques fit naturally into your flow.",
|
|
124
|
-
"agentRole": "You are a UX/visual design consultant and engagement specialist with expertise in presentation design and audience interaction. Your strength lies in creating cohesive visual experiences that enhance message delivery while maintaining accessibility and professional standards.",
|
|
125
|
-
"guidance": [
|
|
126
|
-
"Visuals should simplify complex ideas, not complicate simple ones",
|
|
127
|
-
"Use consistent visual language throughout the presentation",
|
|
128
|
-
"Plan interactive elements that serve your learning objectives",
|
|
129
|
-
"Consider how visual elements will reproduce in different formats (print, mobile, etc.)"
|
|
130
|
-
],
|
|
131
|
-
"requireConfirmation": true,
|
|
132
|
-
"validationCriteria": [
|
|
133
|
-
{
|
|
134
|
-
"type": "regex",
|
|
135
|
-
"pattern": "(?i)##?\\s*Visual Theme:?",
|
|
136
|
-
"message": "Design plan must include visual theme section"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"type": "regex",
|
|
140
|
-
"pattern": "(?i)##?\\s*Engagement Techniques:?",
|
|
141
|
-
"message": "Design plan must include engagement techniques"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
"type": "length",
|
|
145
|
-
"min": 500,
|
|
146
|
-
"message": "Visual design plan should be at least 500 characters for comprehensive coverage"
|
|
147
|
-
}
|
|
148
|
-
]
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"id": "content-development-and-refinement",
|
|
152
|
-
"title": "Content Development & Refinement",
|
|
153
|
-
"prompt": "**PREP**: Develop the actual presentation content, focusing on clarity, impact, and memorability.\n\n**IMPLEMENT**: Create polished presentation content:\n- **Slide Content**: Write clear, concise text for each slide following your outline\n- **Speaker Notes**: Detailed talking points, transitions, and timing cues\n- **Stories and Examples**: Develop compelling narratives that illustrate your points\n- **Data Presentation**: Create clear, impactful visualizations of key statistics\n- **Interaction Scripts**: Prepare questions, poll options, and facilitation guidance\n- **Backup Content**: Extra slides for deep-dive questions or extended time\n- **Handout Materials**: Summary sheets, resource lists, contact information\n\n**VERIFY**: Review content for clarity, accuracy, and alignment with your core message. Test that examples resonate with your target audience.",
|
|
154
|
-
"agentRole": "You are a professional content developer and presentation writer with expertise in translating complex ideas into clear, engaging presentation content. Your strength lies in crafting compelling narratives, developing relevant examples, and creating speaker-friendly materials that ensure confident delivery.",
|
|
155
|
-
"guidance": [
|
|
156
|
-
"Write for the ear, not the eye - content should sound natural when spoken",
|
|
157
|
-
"Use active voice and concrete language",
|
|
158
|
-
"Prepare for different scenarios (early finish, running long, technical difficulties)",
|
|
159
|
-
"Include personal anecdotes or case studies when appropriate"
|
|
160
|
-
],
|
|
161
|
-
"askForFiles": true,
|
|
162
|
-
"requireConfirmation": true,
|
|
163
|
-
"validationCriteria": [
|
|
164
|
-
{
|
|
165
|
-
"type": "regex",
|
|
166
|
-
"pattern": "(?i)##?\\s*Slide Content:?",
|
|
167
|
-
"message": "Content must include slide content section"
|
|
88
|
+
"id": "slide-structure-and-flow",
|
|
89
|
+
"title": "Slide Structure & Flow Design",
|
|
90
|
+
"prompt": "**PREP**: Transform your content strategy into a detailed slide-by-slide structure.\n\n**IMPLEMENT**: Create a comprehensive slide outline:\n- **Opening Hook** (1-2 slides): Attention grabber, context setting, agenda preview\n- **Main Content Blocks** (8-15 slides): Each supporting argument with evidence and examples\n- **Transition Slides**: Smooth connections between major sections\n- **Interaction Points**: Polls, Q&A moments, discussion breaks\n- **Visual Hierarchy**: Which slides need charts, images, diagrams, or minimal text\n- **Pacing Strategy**: Balance of information density vs. breathing room\n- **Closing Impact** (2-3 slides): Summary, call-to-action, next steps\n\n**VERIFY**: Review the flow for logical progression, appropriate pacing, and engagement variety.",
|
|
91
|
+
"agentRole": "You are a presentation structure architect with expertise in information design and audience engagement flow. Your specialty is creating logical, well-paced slide sequences that maintain audience attention while effectively conveying complex information.",
|
|
92
|
+
"guidance": [
|
|
93
|
+
"Follow the 6x6 rule: max 6 bullet points with 6 words each",
|
|
94
|
+
"Plan for one key idea per slide",
|
|
95
|
+
"Include slide numbers and estimated timing",
|
|
96
|
+
"Consider how slides will work both in-person and if shared later"
|
|
97
|
+
],
|
|
98
|
+
"requireConfirmation": true,
|
|
99
|
+
"validationCriteria": [
|
|
100
|
+
{
|
|
101
|
+
"type": "regex",
|
|
102
|
+
"pattern": "(?i)slide\\s*\\d+",
|
|
103
|
+
"message": "Outline must include numbered slides (e.g., 'Slide 1', 'Slide 2')"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "regex",
|
|
107
|
+
"pattern": "(?i)(opening|hook|introduction)",
|
|
108
|
+
"message": "Outline must include opening/hook slides"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"type": "regex",
|
|
112
|
+
"pattern": "(?i)(closing|conclusion|summary)",
|
|
113
|
+
"message": "Outline must include closing/summary slides"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "length",
|
|
117
|
+
"min": 800,
|
|
118
|
+
"message": "Slide outline should be at least 800 characters for detailed planning"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"hasValidation": true
|
|
168
122
|
},
|
|
169
123
|
{
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
124
|
+
"id": "visual-design-and-engagement",
|
|
125
|
+
"title": "Visual Design & Engagement Elements",
|
|
126
|
+
"prompt": "**PREP**: Design the visual and interactive elements that will make your presentation dynamic and memorable.\n\n**IMPLEMENT**: Plan comprehensive visual and engagement strategy:\n- **Visual Theme**: Color scheme, typography, consistent design language\n- **Data Visualization**: Chart types, infographic concepts, before/after comparisons\n- **Multimedia Elements**: Video clips, animations, interactive demos\n- **Storytelling Visuals**: Metaphors, analogies, journey maps\n- **Engagement Techniques**: Live polls, breakout discussions, hands-on activities\n- **Memory Aids**: Mnemonics, repeated visual themes, callback references\n- **Accessibility**: Readable fonts, color contrast, alternative text descriptions\n\n**VERIFY**: Ensure visual elements enhance rather than distract from your message, and engagement techniques fit naturally into your flow.",
|
|
127
|
+
"agentRole": "You are a UX/visual design consultant and engagement specialist with expertise in presentation design and audience interaction. Your strength lies in creating cohesive visual experiences that enhance message delivery while maintaining accessibility and professional standards.",
|
|
128
|
+
"guidance": [
|
|
129
|
+
"Visuals should simplify complex ideas, not complicate simple ones",
|
|
130
|
+
"Use consistent visual language throughout the presentation",
|
|
131
|
+
"Plan interactive elements that serve your learning objectives",
|
|
132
|
+
"Consider how visual elements will reproduce in different formats (print, mobile, etc.)"
|
|
133
|
+
],
|
|
134
|
+
"requireConfirmation": true,
|
|
135
|
+
"validationCriteria": [
|
|
136
|
+
{
|
|
137
|
+
"type": "regex",
|
|
138
|
+
"pattern": "(?i)##?\\s*Visual Theme:?",
|
|
139
|
+
"message": "Design plan must include visual theme section"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"type": "regex",
|
|
143
|
+
"pattern": "(?i)##?\\s*Engagement Techniques:?",
|
|
144
|
+
"message": "Design plan must include engagement techniques"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"type": "length",
|
|
148
|
+
"min": 500,
|
|
149
|
+
"message": "Visual design plan should be at least 500 characters for comprehensive coverage"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"hasValidation": true
|
|
173
153
|
},
|
|
174
154
|
{
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
"type": "length",
|
|
206
|
-
"min": 400,
|
|
207
|
-
"message": "Practice plan should be at least 400 characters for comprehensive preparation"
|
|
208
|
-
}
|
|
209
|
-
]
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"id": "delivery-preparation-and-logistics",
|
|
213
|
-
"title": "Delivery Preparation & Logistics",
|
|
214
|
-
"prompt": "**PREP**: Finalize all logistical and technical aspects for smooth presentation delivery.\n\n**IMPLEMENT**: Complete pre-delivery checklist:\n- **Technical Setup**: Test all equipment, backup plans, file compatibility\n- **Materials Preparation**: Printed notes, handouts, business cards, feedback forms\n- **Venue Familiarization**: Room layout, microphone, lighting, seating arrangement\n- **Personal Preparation**: Wardrobe, arrival time, pre-presentation routine\n- **Follow-up Planning**: How to share slides, continue conversations, measure impact\n- **Emergency Protocols**: Contact information, backup equipment, alternative delivery methods\n- **Final Review**: Last-minute content updates, current examples, pronunciation check\n\n**VERIFY**: Confirm all logistical elements are in place and you have contingency plans for potential issues.",
|
|
215
|
-
"agentRole": "You are an event logistics coordinator and presentation delivery specialist with expertise in ensuring flawless presentation execution. Your focus is on comprehensive preparation that anticipates and mitigates potential issues while ensuring professional delivery standards.",
|
|
216
|
-
"guidance": [
|
|
217
|
-
"Arrive early to test technology and get comfortable with the space",
|
|
218
|
-
"Have multiple backup options for critical technical components",
|
|
219
|
-
"Prepare a 'presentation day' checklist",
|
|
220
|
-
"Plan how you'll handle unexpected questions or technical difficulties"
|
|
221
|
-
],
|
|
222
|
-
"requireConfirmation": true,
|
|
223
|
-
"validationCriteria": [
|
|
224
|
-
{
|
|
225
|
-
"type": "regex",
|
|
226
|
-
"pattern": "(?i)##?\\s*Technical Setup:?",
|
|
227
|
-
"message": "Preparation must include technical setup section"
|
|
155
|
+
"id": "content-development-and-refinement",
|
|
156
|
+
"title": "Content Development & Refinement",
|
|
157
|
+
"prompt": "**PREP**: Develop the actual presentation content, focusing on clarity, impact, and memorability.\n\n**IMPLEMENT**: Create polished presentation content:\n- **Slide Content**: Write clear, concise text for each slide following your outline\n- **Speaker Notes**: Detailed talking points, transitions, and timing cues\n- **Stories and Examples**: Develop compelling narratives that illustrate your points\n- **Data Presentation**: Create clear, impactful visualizations of key statistics\n- **Interaction Scripts**: Prepare questions, poll options, and facilitation guidance\n- **Backup Content**: Extra slides for deep-dive questions or extended time\n- **Handout Materials**: Summary sheets, resource lists, contact information\n\n**VERIFY**: Review content for clarity, accuracy, and alignment with your core message. Test that examples resonate with your target audience.",
|
|
158
|
+
"agentRole": "You are a professional content developer and presentation writer with expertise in translating complex ideas into clear, engaging presentation content. Your strength lies in crafting compelling narratives, developing relevant examples, and creating speaker-friendly materials that ensure confident delivery.",
|
|
159
|
+
"guidance": [
|
|
160
|
+
"Write for the ear, not the eye - content should sound natural when spoken",
|
|
161
|
+
"Use active voice and concrete language",
|
|
162
|
+
"Prepare for different scenarios (early finish, running long, technical difficulties)",
|
|
163
|
+
"Include personal anecdotes or case studies when appropriate"
|
|
164
|
+
],
|
|
165
|
+
"askForFiles": true,
|
|
166
|
+
"requireConfirmation": true,
|
|
167
|
+
"validationCriteria": [
|
|
168
|
+
{
|
|
169
|
+
"type": "regex",
|
|
170
|
+
"pattern": "(?i)##?\\s*Slide Content:?",
|
|
171
|
+
"message": "Content must include slide content section"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"type": "regex",
|
|
175
|
+
"pattern": "(?i)##?\\s*Speaker Notes:?",
|
|
176
|
+
"message": "Content must include speaker notes section"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"type": "length",
|
|
180
|
+
"min": 1000,
|
|
181
|
+
"message": "Content development should be at least 1000 characters for comprehensive coverage"
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
"hasValidation": true
|
|
228
185
|
},
|
|
229
186
|
{
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
187
|
+
"id": "practice-and-timing",
|
|
188
|
+
"title": "Practice & Timing Optimization",
|
|
189
|
+
"prompt": "**PREP**: Develop a practice strategy to ensure confident, well-timed delivery.\n\n**IMPLEMENT**: Create a comprehensive practice plan:\n- **Run-Through Schedule**: Multiple practice sessions with increasing realism\n- **Timing Benchmarks**: Target time for each section with buffer zones\n- **Difficult Transitions**: Extra practice on challenging sections or technical demonstrations\n- **Q&A Preparation**: Anticipated questions with prepared responses\n- **Contingency Planning**: Backup plans for technical issues, timing problems, or unexpected situations\n- **Feedback Integration**: Plan for getting feedback and making final adjustments\n- **Confidence Building**: Techniques for managing nerves and maintaining energy\n\n**VERIFY**: Ensure you have a realistic practice schedule that will prepare you for confident delivery.",
|
|
190
|
+
"agentRole": "You are a presentation coach and performance specialist with expertise in helping speakers develop confidence and delivery skills. Your focus is on practical preparation strategies that ensure speakers can deliver their content effectively under various conditions.",
|
|
191
|
+
"guidance": [
|
|
192
|
+
"Practice out loud - silent review is not enough",
|
|
193
|
+
"Time each section and the overall presentation",
|
|
194
|
+
"Practice with your actual slides and equipment when possible",
|
|
195
|
+
"Rehearse transitions between slides and topics"
|
|
196
|
+
],
|
|
197
|
+
"requireConfirmation": true,
|
|
198
|
+
"validationCriteria": [
|
|
199
|
+
{
|
|
200
|
+
"type": "regex",
|
|
201
|
+
"pattern": "(?i)##?\\s*Run-Through Schedule:?",
|
|
202
|
+
"message": "Practice plan must include run-through schedule"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"type": "regex",
|
|
206
|
+
"pattern": "(?i)##?\\s*Q&A Preparation:?",
|
|
207
|
+
"message": "Practice plan must include Q&A preparation"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": "length",
|
|
211
|
+
"min": 400,
|
|
212
|
+
"message": "Practice plan should be at least 400 characters for comprehensive preparation"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"hasValidation": true
|
|
233
216
|
},
|
|
234
217
|
{
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
218
|
+
"id": "delivery-preparation-and-logistics",
|
|
219
|
+
"title": "Delivery Preparation & Logistics",
|
|
220
|
+
"prompt": "**PREP**: Finalize all logistical and technical aspects for smooth presentation delivery.\n\n**IMPLEMENT**: Complete pre-delivery checklist:\n- **Technical Setup**: Test all equipment, backup plans, file compatibility\n- **Materials Preparation**: Printed notes, handouts, business cards, feedback forms\n- **Venue Familiarization**: Room layout, microphone, lighting, seating arrangement\n- **Personal Preparation**: Wardrobe, arrival time, pre-presentation routine\n- **Follow-up Planning**: How to share slides, continue conversations, measure impact\n- **Emergency Protocols**: Contact information, backup equipment, alternative delivery methods\n- **Final Review**: Last-minute content updates, current examples, pronunciation check\n\n**VERIFY**: Confirm all logistical elements are in place and you have contingency plans for potential issues.",
|
|
221
|
+
"agentRole": "You are an event logistics coordinator and presentation delivery specialist with expertise in ensuring flawless presentation execution. Your focus is on comprehensive preparation that anticipates and mitigates potential issues while ensuring professional delivery standards.",
|
|
222
|
+
"guidance": [
|
|
223
|
+
"Arrive early to test technology and get comfortable with the space",
|
|
224
|
+
"Have multiple backup options for critical technical components",
|
|
225
|
+
"Prepare a 'presentation day' checklist",
|
|
226
|
+
"Plan how you'll handle unexpected questions or technical difficulties"
|
|
227
|
+
],
|
|
228
|
+
"requireConfirmation": true,
|
|
229
|
+
"validationCriteria": [
|
|
230
|
+
{
|
|
231
|
+
"type": "regex",
|
|
232
|
+
"pattern": "(?i)##?\\s*Technical Setup:?",
|
|
233
|
+
"message": "Preparation must include technical setup section"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "regex",
|
|
237
|
+
"pattern": "(?i)##?\\s*Follow-up Planning:?",
|
|
238
|
+
"message": "Preparation must include follow-up planning"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"type": "length",
|
|
242
|
+
"min": 300,
|
|
243
|
+
"message": "Delivery preparation should be at least 300 characters for comprehensive planning"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"hasValidation": true
|
|
238
247
|
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
]
|
|
252
|
-
}
|
|
248
|
+
],
|
|
249
|
+
"metaGuidance": [
|
|
250
|
+
"Focus on your audience's needs and interests throughout the entire process",
|
|
251
|
+
"Prioritize clarity over complexity - your audience should easily follow your logic",
|
|
252
|
+
"Build in engagement opportunities to maintain attention and encourage participation",
|
|
253
|
+
"Practice storytelling techniques to make your content memorable and relatable",
|
|
254
|
+
"Plan for different learning styles and attention spans in your audience",
|
|
255
|
+
"Always have a clear call-to-action that tells your audience what to do next",
|
|
256
|
+
"Test all technical elements well before your presentation",
|
|
257
|
+
"Prepare for the unexpected - have backup plans for common presentation challenges"
|
|
258
|
+
]
|
|
259
|
+
}
|