periplon 0.2.0

Rust SDK for building multi-agent AI workflows and automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
# DSL Loop Pattern Cookbook

**Version:** 1.0
**Date:** 2025-10-19

Real-world examples and patterns for DSL loops. Copy, adapt, and use these proven patterns in your workflows.

---

## Table of Contents

1. [File Processing]#file-processing
2. [API Integration]#api-integration
3. [Monitoring & Polling]#monitoring--polling
4. [Batch Processing]#batch-processing
5. [Error Handling & Retry]#error-handling--retry
6. [Data Transformation]#data-transformation
7. [Parallel Processing]#parallel-processing
8. [Checkpointing & Resume]#checkpointing--resume
9. [Database Operations]#database-operations
10. [Complex Workflows]#complex-workflows

---

## File Processing

### Pattern 1: Process Files in Directory

**Use Case:** Scan directory, process each file.

```yaml
name: "File Processor"
version: "1.0.0"

agents:
  file_processor:
    description: "Process files"
    tools: [Read, Write, Bash]
    permissions:
      mode: "acceptEdits"

tasks:
  list_files:
    description: "List all .txt files in directory"
    agent: "file_processor"
    # Stores file list in state["txt_files"]

  process_files:
    description: "Processing {{file}}"
    agent: "file_processor"
    depends_on: [list_files]
    loop:
      type: for_each
      collection:
        source: state
        key: "txt_files"
      iterator: "file"
    loop_control:
      collect_results: true
      result_key: "processed_files"
      checkpoint_interval: 10
```

---

### Pattern 2: Batch Rename Files

**Use Case:** Rename files with pattern.

```yaml
name: "Batch File Renamer"
version: "1.0.0"

agents:
  renamer:
    description: "Rename files"
    tools: [Bash]
    permissions:
      mode: "acceptEdits"

tasks:
  rename_files:
    description: "Renaming {{file}} to {{file}}.backup"
    agent: "renamer"
    loop:
      type: for_each
      collection:
        source: file
        path: "files_to_rename.txt"
        format: lines
      iterator: "file"
```

---

### Pattern 3: Convert File Formats

**Use Case:** Convert multiple files from one format to another.

```yaml
name: "Format Converter"
version: "1.0.0"

agents:
  converter:
    description: "Convert file formats"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  convert_csv_to_json:
    description: "Converting {{csv_file}}"
    agent: "converter"
    output: "output/{{csv_file}}.json"
    loop:
      type: for_each
      collection:
        source: file
        path: "csv_files.txt"
        format: lines
      iterator: "csv_file"
      parallel: true
      max_parallel: 3
    loop_control:
      collect_results: true
      result_key: "converted_files"
```

---

## API Integration

### Pattern 4: Fetch and Process API Data

**Use Case:** Get data from REST API, process each item.

```yaml
name: "API Data Processor"
version: "1.0.0"

agents:
  api_processor:
    description: "Process API data"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  fetch_and_process:
    description: "Processing user {{user.name}} (ID: {{user.id}})"
    agent: "api_processor"
    loop:
      type: for_each
      collection:
        source: http
        url: "https://jsonplaceholder.typicode.com/users"
        method: "GET"
        format: json
      iterator: "user"
    loop_control:
      collect_results: true
      result_key: "processed_users"
      timeout_secs: 300
```

---

### Pattern 5: Paginate Through API Results

**Use Case:** Fetch all pages from paginated API.

```yaml
name: "API Paginator"
version: "1.0.0"

agents:
  paginator:
    description: "Fetch paginated data"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  fetch_all_pages:
    description: "Fetching page {{page}}"
    agent: "paginator"
    loop:
      type: for_each
      collection:
        source: range
        start: 1
        end: 11  # Pages 1-10
        step: 1
      iterator: "page"
    loop_control:
      collect_results: true
      result_key: "all_results"
```

---

### Pattern 6: POST Data to API

**Use Case:** Submit multiple items to API endpoint.

```yaml
name: "API Submitter"
version: "1.0.0"

agents:
  submitter:
    description: "Submit data to API"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  submit_items:
    description: "Submitting {{item.name}}"
    agent: "submitter"
    loop:
      type: for_each
      collection:
        source: file
        path: "items_to_submit.json"
        format: json
      iterator: "item"
      parallel: true
      max_parallel: 5  # Respect API rate limits
    loop_control:
      collect_results: true
      result_key: "submission_results"
      timeout_secs: 600
```

---

## Monitoring & Polling

### Pattern 7: Poll for Job Completion

**Use Case:** Wait for background job to complete.

```yaml
name: "Job Poller"
version: "1.0.0"

agents:
  poller:
    description: "Poll job status"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  wait_for_job:
    description: "Checking job status (attempt {{iteration}})"
    agent: "poller"
    loop:
      type: while
      condition:
        type: state_equals
        key: "job_complete"
        value: false
      max_iterations: 60
      iteration_variable: "iteration"
      delay_between_secs: 10  # Check every 10 seconds
    loop_control:
      timeout_secs: 600  # 10 minute max
```

---

### Pattern 8: Health Check Monitoring

**Use Case:** Monitor service health until ready.

```yaml
name: "Health Monitor"
version: "1.0.0"

agents:
  monitor:
    description: "Monitor service health"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  wait_for_healthy:
    description: "Health check {{iteration}}"
    agent: "monitor"
    loop:
      type: while
      condition:
        type: state_equals
        key: "service_healthy"
        value: false
      max_iterations: 30
      iteration_variable: "iteration"
      delay_between_secs: 5
    loop_control:
      timeout_secs: 180
      break_condition:
        type: state_equals
        key: "service_error"
        value: true
```

---

### Pattern 9: Continuous Monitoring

**Use Case:** Monitor metrics repeatedly.

```yaml
name: "Metrics Monitor"
version: "1.0.0"

agents:
  monitor:
    description: "Collect metrics"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  collect_metrics:
    description: "Collecting metrics (sample {{sample}})"
    agent: "monitor"
    loop:
      type: repeat
      count: 100
      iterator: "sample"
    loop_control:
      collect_results: true
      result_key: "metric_samples"
      checkpoint_interval: 10
```

---

## Batch Processing

### Pattern 10: Process Large Dataset in Batches

**Use Case:** Split large job into manageable batches.

```yaml
name: "Batch Processor"
version: "1.0.0"

agents:
  processor:
    description: "Process data batches"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  process_batches:
    description: "Processing batch {{batch}}/100"
    agent: "processor"
    loop:
      type: repeat
      count: 100
      iterator: "batch"
      parallel: true
      max_parallel: 10  # Process 10 batches concurrently
    loop_control:
      collect_results: true
      result_key: "batch_results"
      checkpoint_interval: 10
```

---

### Pattern 11: Chunked File Processing

**Use Case:** Process file in chunks for memory efficiency.

```yaml
name: "Chunked Processor"
version: "1.0.0"

agents:
  processor:
    description: "Process file chunks"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  process_chunks:
    description: "Processing chunk {{chunk}}"
    agent: "processor"
    loop:
      type: for_each
      collection:
        source: range
        start: 0
        end: 1000  # 1000 chunks
        step: 1
      iterator: "chunk"
    loop_control:
      checkpoint_interval: 50
      collect_results: true
      result_key: "chunk_results"
```

---

## Error Handling & Retry

### Pattern 12: Retry with Exponential Backoff

**Use Case:** Retry operation with increasing delays.

```yaml
name: "Retry with Backoff"
version: "1.0.0"

agents:
  retrier:
    description: "Retry operations"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  fetch_with_retry:
    description: "Attempt {{iteration}}/5"
    agent: "retrier"
    loop:
      type: repeat_until
      condition:
        type: state_equals
        key: "fetch_success"
        value: true
      min_iterations: 1
      max_iterations: 5
      iteration_variable: "iteration"
      delay_between_secs: 2  # 2, 4, 8, 16 seconds
    loop_control:
      timeout_secs: 60
```

---

### Pattern 13: Graceful Failure Handling

**Use Case:** Continue processing despite individual failures.

```yaml
name: "Fault Tolerant Processor"
version: "1.0.0"

agents:
  processor:
    description: "Process with error handling"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  process_with_error_handling:
    description: "Processing {{item}}"
    agent: "processor"
    loop:
      type: for_each
      collection:
        source: file
        path: "items.json"
        format: json
      iterator: "item"
    loop_control:
      collect_results: true
      result_key: "results"
      continue_condition:
        type: state_equals
        key: "skip_failed_item"
        value: true
```

---

### Pattern 14: Circuit Breaker

**Use Case:** Stop processing after too many failures.

```yaml
name: "Circuit Breaker"
version: "1.0.0"

agents:
  processor:
    description: "Process with circuit breaker"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  process_with_breaker:
    description: "Processing {{item}}"
    agent: "processor"
    loop:
      type: for_each
      collection:
        source: http
        url: "https://api.example.com/items"
        format: json
      iterator: "item"
    loop_control:
      break_condition:
        type: state_equals
        key: "failure_count_exceeded"
        value: true
      collect_results: true
      result_key: "successful_results"
```

---

## Data Transformation

### Pattern 15: Map-Reduce Pattern

**Use Case:** Transform and aggregate data.

```yaml
name: "Map-Reduce"
version: "1.0.0"

agents:
  mapper:
    description: "Transform data"
    tools: [Read, Write]
    permissions:
      mode: "default"

  reducer:
    description: "Aggregate results"
    tools: [Read, Write]
    permissions:
      mode: "default"

tasks:
  map_phase:
    description: "Mapping {{item}}"
    agent: "mapper"
    loop:
      type: for_each
      collection:
        source: file
        path: "input_data.json"
        format: json
      iterator: "item"
      parallel: true
      max_parallel: 10
    loop_control:
      collect_results: true
      result_key: "mapped_results"

  reduce_phase:
    description: "Reducing results"
    agent: "reducer"
    depends_on: [map_phase]
```

---

### Pattern 16: Filter and Transform

**Use Case:** Filter items and transform remaining.

```yaml
name: "Filter and Transform"
version: "1.0.0"

agents:
  transformer:
    description: "Filter and transform data"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  filter_and_transform:
    description: "Processing {{item.id}}"
    agent: "transformer"
    loop:
      type: for_each
      collection:
        source: http
        url: "https://api.example.com/data"
        format: json
      iterator: "item"
    loop_control:
      continue_condition:
        type: state_equals
        key: "skip_item"
        value: true
      collect_results: true
      result_key: "transformed_results"
```

---

## Parallel Processing

### Pattern 17: Parallel API Calls

**Use Case:** Fetch from multiple APIs concurrently.

```yaml
name: "Parallel API Fetcher"
version: "1.0.0"

agents:
  fetcher:
    description: "Fetch from APIs"
    tools: [WebFetch]
    permissions:
      mode: "default"

tasks:
  fetch_parallel:
    description: "Fetching from {{api.name}}"
    agent: "fetcher"
    loop:
      type: for_each
      collection:
        source: inline
        items:
          - {name: "users", url: "https://api.example.com/users"}
          - {name: "posts", url: "https://api.example.com/posts"}
          - {name: "comments", url: "https://api.example.com/comments"}
      iterator: "api"
      parallel: true
      max_parallel: 3
    loop_control:
      collect_results: true
      result_key: "api_results"
      timeout_secs: 300
```

---

### Pattern 18: Parallel File Processing

**Use Case:** Process multiple files concurrently.

```yaml
name: "Parallel File Processor"
version: "1.0.0"

agents:
  processor:
    description: "Process files in parallel"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  process_files_parallel:
    description: "Processing {{file}}"
    agent: "processor"
    loop:
      type: for_each
      collection:
        source: file
        path: "file_list.txt"
        format: lines
      iterator: "file"
      parallel: true
      max_parallel: 5
    loop_control:
      collect_results: true
      result_key: "processed_files"
      checkpoint_interval: 10
```

---

## Checkpointing & Resume

### Pattern 19: Resumable Long Job

**Use Case:** Long-running job with resume capability.

```yaml
name: "Resumable Job"
version: "1.0.0"

agents:
  worker:
    description: "Long-running worker"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  long_job:
    description: "Processing item {{item}}/10000"
    agent: "worker"
    loop:
      type: for_each
      collection:
        source: range
        start: 0
        end: 10000
        step: 1
      iterator: "item"
    loop_control:
      checkpoint_interval: 100  # Checkpoint every 100 items
      collect_results: true
      result_key: "all_results"
      timeout_secs: 7200  # 2 hour max
```

**Resume:**
```bash
# First run (may be interrupted)
cargo run --example my_workflow

# Resume from checkpoint
cargo run --example my_workflow
# Automatically skips completed iterations
```

---

### Pattern 20: Multi-Stage Processing with Checkpoints

**Use Case:** Multiple stages with checkpointing.

```yaml
name: "Multi-Stage Pipeline"
version: "1.0.0"

agents:
  stage1:
    description: "First stage processor"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

  stage2:
    description: "Second stage processor"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  stage1_process:
    description: "Stage 1: Processing {{item}}"
    agent: "stage1"
    loop:
      type: for_each
      collection:
        source: file
        path: "input.json"
        format: json
      iterator: "item"
    loop_control:
      checkpoint_interval: 50
      collect_results: true
      result_key: "stage1_results"

  stage2_process:
    description: "Stage 2: Processing {{item}}"
    agent: "stage2"
    depends_on: [stage1_process]
    loop:
      type: for_each
      collection:
        source: state
        key: "stage1_results"
      iterator: "item"
    loop_control:
      checkpoint_interval: 50
      collect_results: true
      result_key: "stage2_results"
```

---

## Database Operations

### Pattern 21: Batch Database Updates

**Use Case:** Update database records in batches.

```yaml
name: "Batch DB Updater"
version: "1.0.0"

agents:
  updater:
    description: "Update database records"
    tools: [Bash]
    permissions:
      mode: "default"

tasks:
  update_records:
    description: "Updating batch {{batch}}/100"
    agent: "updater"
    loop:
      type: repeat
      count: 100
      iterator: "batch"
    loop_control:
      checkpoint_interval: 10
      collect_results: true
      result_key: "update_results"
```

---

### Pattern 22: Database Migration

**Use Case:** Migrate data from old to new schema.

```yaml
name: "Data Migration"
version: "1.0.0"

agents:
  migrator:
    description: "Migrate database records"
    tools: [Bash, Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  migrate_records:
    description: "Migrating record {{record.id}}"
    agent: "migrator"
    loop:
      type: for_each
      collection:
        source: file
        path: "records_to_migrate.jsonl"
        format: json_lines
      iterator: "record"
      parallel: true
      max_parallel: 5
    loop_control:
      checkpoint_interval: 100
      collect_results: true
      result_key: "migration_results"
      timeout_secs: 3600
```

---

## Complex Workflows

### Pattern 23: ETL Pipeline

**Use Case:** Extract, Transform, Load data pipeline.

```yaml
name: "ETL Pipeline"
version: "1.0.0"

agents:
  extractor:
    description: "Extract data"
    tools: [WebFetch]
    permissions:
      mode: "default"

  transformer:
    description: "Transform data"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

  loader:
    description: "Load data"
    tools: [Bash]
    permissions:
      mode: "default"

tasks:
  extract:
    description: "Extracting data from source {{source}}"
    agent: "extractor"
    loop:
      type: for_each
      collection:
        source: inline
        items:
          - {name: "api1", url: "https://api1.example.com/data"}
          - {name: "api2", url: "https://api2.example.com/data"}
      iterator: "source"
      parallel: true
      max_parallel: 2
    loop_control:
      collect_results: true
      result_key: "extracted_data"

  transform:
    description: "Transforming record {{record.id}}"
    agent: "transformer"
    depends_on: [extract]
    loop:
      type: for_each
      collection:
        source: state
        key: "extracted_data"
      iterator: "record"
      parallel: true
      max_parallel: 10
    loop_control:
      collect_results: true
      result_key: "transformed_data"
      checkpoint_interval: 100

  load:
    description: "Loading batch {{batch}}"
    agent: "loader"
    depends_on: [transform]
    loop:
      type: for_each
      collection:
        source: state
        key: "transformed_data"
      iterator: "batch"
    loop_control:
      checkpoint_interval: 10
```

---

### Pattern 24: Multi-Source Aggregation

**Use Case:** Aggregate data from multiple sources.

```yaml
name: "Multi-Source Aggregator"
version: "1.0.0"

agents:
  fetcher:
    description: "Fetch from sources"
    tools: [WebFetch]
    permissions:
      mode: "default"

  aggregator:
    description: "Aggregate results"
    tools: [Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  fetch_from_sources:
    description: "Fetching from {{source.name}}"
    agent: "fetcher"
    loop:
      type: for_each
      collection:
        source: file
        path: "data_sources.json"
        format: json
      iterator: "source"
      parallel: true
      max_parallel: 5
    loop_control:
      collect_results: true
      result_key: "source_results"
      timeout_secs: 600

  aggregate:
    description: "Aggregating results"
    agent: "aggregator"
    depends_on: [fetch_from_sources]
```

---

### Pattern 25: Workflow Orchestration

**Use Case:** Orchestrate complex multi-step workflow.

```yaml
name: "Workflow Orchestrator"
version: "1.0.0"

agents:
  orchestrator:
    description: "Orchestrate workflow steps"
    tools: [Bash, Read, Write]
    permissions:
      mode: "acceptEdits"

tasks:
  setup:
    description: "Setup environment"
    agent: "orchestrator"

  execute_steps:
    description: "Executing step {{step.name}}"
    agent: "orchestrator"
    depends_on: [setup]
    loop:
      type: for_each
      collection:
        source: file
        path: "workflow_steps.json"
        format: json
      iterator: "step"
    loop_control:
      break_condition:
        type: state_equals
        key: "step_failed"
        value: true
      collect_results: true
      result_key: "step_results"
      checkpoint_interval: 1

  cleanup:
    description: "Cleanup resources"
    agent: "orchestrator"
    depends_on: [execute_steps]
```

---

## Summary

This cookbook provides **25 production-ready patterns** covering:

✅ File processing (3 patterns)
✅ API integration (3 patterns)
✅ Monitoring & polling (3 patterns)
✅ Batch processing (2 patterns)
✅ Error handling & retry (3 patterns)
✅ Data transformation (2 patterns)
✅ Parallel processing (2 patterns)
✅ Checkpointing & resume (2 patterns)
✅ Database operations (2 patterns)
✅ Complex workflows (3 patterns)

**Usage:**
1. Find pattern matching your use case
2. Copy example YAML
3. Adapt to your specific needs
4. Test with small dataset first
5. Scale to production

**Best Practices:**
- Always set safety limits (max_iterations, timeout)
- Use checkpoints for long-running jobs
- Limit parallel concurrency appropriately
- Add delays to polling loops
- Collect results only when needed

---

**Last Updated:** 2025-10-19
**Version:** 1.0
**Status:** ✅ Production Ready