@@ -170,7 +170,9 @@ kind = "donna.lib.request_action"
170170
171171#### Kinds of Workflow Operations
172172
173- 1 . ` donna.lib.request_action ` operation kind indicates that Donna will request the agent to perform some action.
173+ ##### ` donna.lib.request_action `
174+
175+ ` donna.lib.request_action ` operation kind indicates that Donna will request the agent to perform some action.
174176
175177The content of the tail section is the text instructions for the agent on what to do.
176178
@@ -188,7 +190,9 @@ Here may be any additional instructions, requirements, notes, references, etc.
188190
189191** The body of the operation MUST contain a neat strictly defined algorithm for the agent to follow.**
190192
191- 2 . ` donna.lib.run_script ` operation kind executes a script from the operation body without agent/user interaction.
193+ ##### ` donna.lib.run_script `
194+
195+ ` donna.lib.run_script ` operation kind executes a script from the operation body without agent/user interaction.
192196
193197The body of the operation MUST include exactly one fenced code block whose info string includes ` <language> donna script ` .
194198Any other text in the operation body is ignored.
@@ -229,7 +233,9 @@ Routing rules:
229233When ` save_stdout_to ` and/or ` save_stderr_to ` are set, the operation stores captured output in the task context
230234under the specified variable names.
231235
232- 3 . ` donna.lib.output ` operation kind emits its body as an output cell and then continues to the configured next step.
236+ ##### ` donna.lib.output `
237+
238+ ` donna.lib.output ` operation kind emits its body as an output cell and then continues to the configured next step.
233239
234240The body of the operation is rendered as an output cell during execution.
235241
@@ -241,7 +247,9 @@ kind = "donna.lib.output"
241247next_operation_id = " <next_operation_id>" # required
242248```
243249
244- 4 . ` donna.lib.finish ` operation kind indicates that the workflow is finished.
250+ ##### ` donna.lib.finish `
251+
252+ ` donna.lib.finish ` operation kind indicates that the workflow is finished.
245253
246254The body of the operation is rendered as an output cell before the workflow completes.
247255
0 commit comments