@almadar/std 3.13.1 → 3.14.1

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.
Files changed (49) hide show
  1. package/behaviors/exports/atoms/std-agent-activity-log.orb +11 -3
  2. package/behaviors/exports/atoms/std-agent-step-progress.orb +162 -23
  3. package/behaviors/exports/atoms/std-agent-tool-call.orb +0 -499
  4. package/behaviors/exports/molecules/std-agent-fix-loop.orb +173 -25
  5. package/behaviors/exports/molecules/std-agent-learner.orb +15 -550
  6. package/behaviors/exports/molecules/std-agent-planner.orb +10 -530
  7. package/behaviors/exports/molecules/std-agent-rag.orb +4 -1
  8. package/behaviors/exports/molecules/std-agent-tool-loop.orb +169 -573
  9. package/behaviors/exports/organisms/std-agent-builder.orb +905 -1453
  10. package/behaviors/exports/organisms/std-agent-pipeline.orb +806 -1502
  11. package/behaviors/exports/organisms/std-agent-reviewer.orb +4 -1
  12. package/behaviors/exports/validation-report.json +2 -2
  13. package/dist/behaviors/behaviors-registry.json +11173 -5568
  14. package/dist/behaviors/exports/atoms/std-agent-activity-log.orb +11 -3
  15. package/dist/behaviors/exports/atoms/std-agent-step-progress.orb +162 -23
  16. package/dist/behaviors/exports/atoms/std-agent-tool-call.orb +0 -499
  17. package/dist/behaviors/exports/molecules/std-agent-fix-loop.orb +173 -25
  18. package/dist/behaviors/exports/molecules/std-agent-learner.orb +15 -550
  19. package/dist/behaviors/exports/molecules/std-agent-planner.orb +10 -530
  20. package/dist/behaviors/exports/molecules/std-agent-rag.orb +4 -1
  21. package/dist/behaviors/exports/molecules/std-agent-tool-loop.orb +169 -573
  22. package/dist/behaviors/exports/organisms/std-agent-builder.orb +905 -1453
  23. package/dist/behaviors/exports/organisms/std-agent-pipeline.orb +806 -1502
  24. package/dist/behaviors/exports/organisms/std-agent-reviewer.orb +4 -1
  25. package/dist/behaviors/exports/validation-report.json +2 -2
  26. package/dist/behaviors/exports-reader.js +257 -302
  27. package/dist/behaviors/exports-reader.js.map +1 -1
  28. package/dist/behaviors/functions/index.js +257 -302
  29. package/dist/behaviors/functions/index.js.map +1 -1
  30. package/dist/behaviors/index.js +257 -302
  31. package/dist/behaviors/index.js.map +1 -1
  32. package/dist/behaviors/query.js +257 -302
  33. package/dist/behaviors/query.js.map +1 -1
  34. package/dist/behaviors-registry.json +11173 -5568
  35. package/dist/exports/atoms/std-agent-activity-log.orb +11 -3
  36. package/dist/exports/atoms/std-agent-step-progress.orb +162 -23
  37. package/dist/exports/atoms/std-agent-tool-call.orb +0 -499
  38. package/dist/exports/molecules/std-agent-fix-loop.orb +173 -25
  39. package/dist/exports/molecules/std-agent-learner.orb +15 -550
  40. package/dist/exports/molecules/std-agent-planner.orb +10 -530
  41. package/dist/exports/molecules/std-agent-rag.orb +4 -1
  42. package/dist/exports/molecules/std-agent-tool-loop.orb +169 -573
  43. package/dist/exports/organisms/std-agent-builder.orb +905 -1453
  44. package/dist/exports/organisms/std-agent-pipeline.orb +806 -1502
  45. package/dist/exports/organisms/std-agent-reviewer.orb +4 -1
  46. package/dist/exports/validation-report.json +2 -2
  47. package/dist/index.js +257 -302
  48. package/dist/index.js.map +1 -1
  49. package/package.json +1 -1
@@ -53,6 +53,11 @@
53
53
  "name": "duration",
54
54
  "type": "number",
55
55
  "default": 0
56
+ },
57
+ {
58
+ "name": "icon",
59
+ "type": "string",
60
+ "default": "circle"
56
61
  }
57
62
  ]
58
63
  },
@@ -248,7 +253,8 @@
248
253
  "action",
249
254
  "detail",
250
255
  "timestamp",
251
- "duration"
256
+ "duration",
257
+ "icon"
252
258
  ]
253
259
  }
254
260
  ]
@@ -388,7 +394,8 @@
388
394
  "action",
389
395
  "detail",
390
396
  "timestamp",
391
- "duration"
397
+ "duration",
398
+ "icon"
392
399
  ]
393
400
  }
394
401
  ]
@@ -526,7 +533,8 @@
526
533
  "action",
527
534
  "detail",
528
535
  "timestamp",
529
- "duration"
536
+ "duration",
537
+ "icon"
530
538
  ]
531
539
  }
532
540
  ]
@@ -33,11 +33,6 @@
33
33
  "name": "createdAt",
34
34
  "type": "string"
35
35
  },
36
- {
37
- "name": "steps",
38
- "type": "string",
39
- "default": "Initialize,Process,Validate,Complete"
40
- },
41
36
  {
42
37
  "name": "currentStep",
43
38
  "type": "number",
@@ -193,8 +188,24 @@
193
188
  {
194
189
  "type": "wizard-progress",
195
190
  "currentStep": "@entity.currentStep",
196
- "totalSteps": "@entity.totalSteps",
197
- "steps": "@entity.steps"
191
+ "steps": [
192
+ {
193
+ "id": "0",
194
+ "title": "Initialize"
195
+ },
196
+ {
197
+ "id": "1",
198
+ "title": "Process"
199
+ },
200
+ {
201
+ "id": "2",
202
+ "title": "Validate"
203
+ },
204
+ {
205
+ "id": "3",
206
+ "title": "Complete"
207
+ }
208
+ ]
198
209
  },
199
210
  {
200
211
  "type": "button",
@@ -260,8 +271,24 @@
260
271
  {
261
272
  "type": "wizard-progress",
262
273
  "currentStep": "@entity.currentStep",
263
- "totalSteps": "@entity.totalSteps",
264
- "steps": "@entity.steps"
274
+ "steps": [
275
+ {
276
+ "id": "0",
277
+ "title": "Initialize"
278
+ },
279
+ {
280
+ "id": "1",
281
+ "title": "Process"
282
+ },
283
+ {
284
+ "id": "2",
285
+ "title": "Validate"
286
+ },
287
+ {
288
+ "id": "3",
289
+ "title": "Complete"
290
+ }
291
+ ]
265
292
  },
266
293
  {
267
294
  "type": "stack",
@@ -363,8 +390,24 @@
363
390
  {
364
391
  "type": "wizard-progress",
365
392
  "currentStep": "@entity.currentStep",
366
- "totalSteps": "@entity.totalSteps",
367
- "steps": "@entity.steps"
393
+ "steps": [
394
+ {
395
+ "id": "0",
396
+ "title": "Initialize"
397
+ },
398
+ {
399
+ "id": "1",
400
+ "title": "Process"
401
+ },
402
+ {
403
+ "id": "2",
404
+ "title": "Validate"
405
+ },
406
+ {
407
+ "id": "3",
408
+ "title": "Complete"
409
+ }
410
+ ]
368
411
  },
369
412
  {
370
413
  "type": "stack",
@@ -462,8 +505,24 @@
462
505
  {
463
506
  "type": "wizard-progress",
464
507
  "currentStep": "@entity.totalSteps",
465
- "totalSteps": "@entity.totalSteps",
466
- "steps": "@entity.steps"
508
+ "steps": [
509
+ {
510
+ "id": "0",
511
+ "title": "Initialize"
512
+ },
513
+ {
514
+ "id": "1",
515
+ "title": "Process"
516
+ },
517
+ {
518
+ "id": "2",
519
+ "title": "Validate"
520
+ },
521
+ {
522
+ "id": "3",
523
+ "title": "Complete"
524
+ }
525
+ ]
467
526
  },
468
527
  {
469
528
  "type": "alert",
@@ -529,8 +588,24 @@
529
588
  {
530
589
  "type": "wizard-progress",
531
590
  "currentStep": "@entity.currentStep",
532
- "totalSteps": "@entity.totalSteps",
533
- "steps": "@entity.steps"
591
+ "steps": [
592
+ {
593
+ "id": "0",
594
+ "title": "Initialize"
595
+ },
596
+ {
597
+ "id": "1",
598
+ "title": "Process"
599
+ },
600
+ {
601
+ "id": "2",
602
+ "title": "Validate"
603
+ },
604
+ {
605
+ "id": "3",
606
+ "title": "Complete"
607
+ }
608
+ ]
534
609
  },
535
610
  {
536
611
  "type": "alert",
@@ -613,8 +688,24 @@
613
688
  {
614
689
  "type": "wizard-progress",
615
690
  "currentStep": "@entity.currentStep",
616
- "totalSteps": "@entity.totalSteps",
617
- "steps": "@entity.steps"
691
+ "steps": [
692
+ {
693
+ "id": "0",
694
+ "title": "Initialize"
695
+ },
696
+ {
697
+ "id": "1",
698
+ "title": "Process"
699
+ },
700
+ {
701
+ "id": "2",
702
+ "title": "Validate"
703
+ },
704
+ {
705
+ "id": "3",
706
+ "title": "Complete"
707
+ }
708
+ ]
618
709
  },
619
710
  {
620
711
  "type": "button",
@@ -680,8 +771,24 @@
680
771
  {
681
772
  "type": "wizard-progress",
682
773
  "currentStep": "@entity.currentStep",
683
- "totalSteps": "@entity.totalSteps",
684
- "steps": "@entity.steps"
774
+ "steps": [
775
+ {
776
+ "id": "0",
777
+ "title": "Initialize"
778
+ },
779
+ {
780
+ "id": "1",
781
+ "title": "Process"
782
+ },
783
+ {
784
+ "id": "2",
785
+ "title": "Validate"
786
+ },
787
+ {
788
+ "id": "3",
789
+ "title": "Complete"
790
+ }
791
+ ]
685
792
  },
686
793
  {
687
794
  "type": "button",
@@ -747,8 +854,24 @@
747
854
  {
748
855
  "type": "wizard-progress",
749
856
  "currentStep": "@entity.currentStep",
750
- "totalSteps": "@entity.totalSteps",
751
- "steps": "@entity.steps"
857
+ "steps": [
858
+ {
859
+ "id": "0",
860
+ "title": "Initialize"
861
+ },
862
+ {
863
+ "id": "1",
864
+ "title": "Process"
865
+ },
866
+ {
867
+ "id": "2",
868
+ "title": "Validate"
869
+ },
870
+ {
871
+ "id": "3",
872
+ "title": "Complete"
873
+ }
874
+ ]
752
875
  },
753
876
  {
754
877
  "type": "button",
@@ -814,8 +937,24 @@
814
937
  {
815
938
  "type": "wizard-progress",
816
939
  "currentStep": "@entity.currentStep",
817
- "totalSteps": "@entity.totalSteps",
818
- "steps": "@entity.steps"
940
+ "steps": [
941
+ {
942
+ "id": "0",
943
+ "title": "Initialize"
944
+ },
945
+ {
946
+ "id": "1",
947
+ "title": "Process"
948
+ },
949
+ {
950
+ "id": "2",
951
+ "title": "Validate"
952
+ },
953
+ {
954
+ "id": "3",
955
+ "title": "Complete"
956
+ }
957
+ ]
819
958
  },
820
959
  {
821
960
  "type": "button",