@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
@@ -688,7 +688,7 @@
688
688
  },
689
689
  {
690
690
  "type": "simple-grid",
691
- "columns": 2,
691
+ "cols": 2,
692
692
  "children": [
693
693
  {
694
694
  "type": "stat-display",
@@ -944,7 +944,7 @@
944
944
  },
945
945
  {
946
946
  "type": "simple-grid",
947
- "columns": 2,
947
+ "cols": 2,
948
948
  "children": [
949
949
  {
950
950
  "type": "stat-display",
@@ -1013,7 +1013,7 @@
1013
1013
  },
1014
1014
  {
1015
1015
  "type": "simple-grid",
1016
- "columns": 2,
1016
+ "cols": 2,
1017
1017
  "children": [
1018
1018
  {
1019
1019
  "type": "stat-display",
@@ -1082,7 +1082,7 @@
1082
1082
  },
1083
1083
  {
1084
1084
  "type": "simple-grid",
1085
- "columns": 2,
1085
+ "cols": 2,
1086
1086
  "children": [
1087
1087
  {
1088
1088
  "type": "stat-display",
@@ -1359,6 +1359,7 @@
1359
1359
  ]
1360
1360
  }
1361
1361
  ],
1362
+ "listens": [],
1362
1363
  "stateMachine": {
1363
1364
  "states": [
1364
1365
  {
@@ -1448,8 +1449,24 @@
1448
1449
  {
1449
1450
  "type": "wizard-progress",
1450
1451
  "currentStep": "@entity.currentStep",
1451
- "totalSteps": "@entity.totalSteps",
1452
- "steps": "@entity.steps"
1452
+ "steps": [
1453
+ {
1454
+ "id": "0",
1455
+ "title": "Plan"
1456
+ },
1457
+ {
1458
+ "id": "1",
1459
+ "title": "Execute"
1460
+ },
1461
+ {
1462
+ "id": "2",
1463
+ "title": "Check"
1464
+ },
1465
+ {
1466
+ "id": "3",
1467
+ "title": "Complete"
1468
+ }
1469
+ ]
1453
1470
  },
1454
1471
  {
1455
1472
  "type": "button",
@@ -1515,8 +1532,24 @@
1515
1532
  {
1516
1533
  "type": "wizard-progress",
1517
1534
  "currentStep": "@entity.currentStep",
1518
- "totalSteps": "@entity.totalSteps",
1519
- "steps": "@entity.steps"
1535
+ "steps": [
1536
+ {
1537
+ "id": "0",
1538
+ "title": "Plan"
1539
+ },
1540
+ {
1541
+ "id": "1",
1542
+ "title": "Execute"
1543
+ },
1544
+ {
1545
+ "id": "2",
1546
+ "title": "Check"
1547
+ },
1548
+ {
1549
+ "id": "3",
1550
+ "title": "Complete"
1551
+ }
1552
+ ]
1520
1553
  },
1521
1554
  {
1522
1555
  "type": "stack",
@@ -1618,8 +1651,24 @@
1618
1651
  {
1619
1652
  "type": "wizard-progress",
1620
1653
  "currentStep": "@entity.currentStep",
1621
- "totalSteps": "@entity.totalSteps",
1622
- "steps": "@entity.steps"
1654
+ "steps": [
1655
+ {
1656
+ "id": "0",
1657
+ "title": "Plan"
1658
+ },
1659
+ {
1660
+ "id": "1",
1661
+ "title": "Execute"
1662
+ },
1663
+ {
1664
+ "id": "2",
1665
+ "title": "Check"
1666
+ },
1667
+ {
1668
+ "id": "3",
1669
+ "title": "Complete"
1670
+ }
1671
+ ]
1623
1672
  },
1624
1673
  {
1625
1674
  "type": "stack",
@@ -1717,8 +1766,24 @@
1717
1766
  {
1718
1767
  "type": "wizard-progress",
1719
1768
  "currentStep": "@entity.totalSteps",
1720
- "totalSteps": "@entity.totalSteps",
1721
- "steps": "@entity.steps"
1769
+ "steps": [
1770
+ {
1771
+ "id": "0",
1772
+ "title": "Plan"
1773
+ },
1774
+ {
1775
+ "id": "1",
1776
+ "title": "Execute"
1777
+ },
1778
+ {
1779
+ "id": "2",
1780
+ "title": "Check"
1781
+ },
1782
+ {
1783
+ "id": "3",
1784
+ "title": "Complete"
1785
+ }
1786
+ ]
1722
1787
  },
1723
1788
  {
1724
1789
  "type": "alert",
@@ -1784,8 +1849,24 @@
1784
1849
  {
1785
1850
  "type": "wizard-progress",
1786
1851
  "currentStep": "@entity.currentStep",
1787
- "totalSteps": "@entity.totalSteps",
1788
- "steps": "@entity.steps"
1852
+ "steps": [
1853
+ {
1854
+ "id": "0",
1855
+ "title": "Plan"
1856
+ },
1857
+ {
1858
+ "id": "1",
1859
+ "title": "Execute"
1860
+ },
1861
+ {
1862
+ "id": "2",
1863
+ "title": "Check"
1864
+ },
1865
+ {
1866
+ "id": "3",
1867
+ "title": "Complete"
1868
+ }
1869
+ ]
1789
1870
  },
1790
1871
  {
1791
1872
  "type": "alert",
@@ -1868,8 +1949,24 @@
1868
1949
  {
1869
1950
  "type": "wizard-progress",
1870
1951
  "currentStep": "@entity.currentStep",
1871
- "totalSteps": "@entity.totalSteps",
1872
- "steps": "@entity.steps"
1952
+ "steps": [
1953
+ {
1954
+ "id": "0",
1955
+ "title": "Plan"
1956
+ },
1957
+ {
1958
+ "id": "1",
1959
+ "title": "Execute"
1960
+ },
1961
+ {
1962
+ "id": "2",
1963
+ "title": "Check"
1964
+ },
1965
+ {
1966
+ "id": "3",
1967
+ "title": "Complete"
1968
+ }
1969
+ ]
1873
1970
  },
1874
1971
  {
1875
1972
  "type": "button",
@@ -1935,8 +2032,24 @@
1935
2032
  {
1936
2033
  "type": "wizard-progress",
1937
2034
  "currentStep": "@entity.currentStep",
1938
- "totalSteps": "@entity.totalSteps",
1939
- "steps": "@entity.steps"
2035
+ "steps": [
2036
+ {
2037
+ "id": "0",
2038
+ "title": "Plan"
2039
+ },
2040
+ {
2041
+ "id": "1",
2042
+ "title": "Execute"
2043
+ },
2044
+ {
2045
+ "id": "2",
2046
+ "title": "Check"
2047
+ },
2048
+ {
2049
+ "id": "3",
2050
+ "title": "Complete"
2051
+ }
2052
+ ]
1940
2053
  },
1941
2054
  {
1942
2055
  "type": "button",
@@ -2002,8 +2115,24 @@
2002
2115
  {
2003
2116
  "type": "wizard-progress",
2004
2117
  "currentStep": "@entity.currentStep",
2005
- "totalSteps": "@entity.totalSteps",
2006
- "steps": "@entity.steps"
2118
+ "steps": [
2119
+ {
2120
+ "id": "0",
2121
+ "title": "Plan"
2122
+ },
2123
+ {
2124
+ "id": "1",
2125
+ "title": "Execute"
2126
+ },
2127
+ {
2128
+ "id": "2",
2129
+ "title": "Check"
2130
+ },
2131
+ {
2132
+ "id": "3",
2133
+ "title": "Complete"
2134
+ }
2135
+ ]
2007
2136
  },
2008
2137
  {
2009
2138
  "type": "button",
@@ -2069,567 +2198,34 @@
2069
2198
  {
2070
2199
  "type": "wizard-progress",
2071
2200
  "currentStep": "@entity.currentStep",
2072
- "totalSteps": "@entity.totalSteps",
2073
- "steps": "@entity.steps"
2074
- },
2075
- {
2076
- "type": "button",
2077
- "label": "Start",
2078
- "event": "START",
2079
- "variant": "primary",
2080
- "icon": "play"
2081
- }
2082
- ]
2083
- }
2084
- ]
2085
- ]
2086
- }
2087
- ]
2088
- }
2089
- },
2090
- {
2091
- "name": "ToolLoopActivityLog",
2092
- "linkedEntity": "AgentToolLoop",
2093
- "category": "interaction",
2094
- "emits": [
2095
- {
2096
- "event": "LOG_ENTRY",
2097
- "scope": "internal",
2098
- "payload": [
2099
- {
2100
- "name": "action",
2101
- "type": "string"
2102
- },
2103
- {
2104
- "name": "detail",
2105
- "type": "string"
2106
- },
2107
- {
2108
- "name": "status",
2109
- "type": "string"
2110
- }
2111
- ]
2112
- }
2113
- ],
2114
- "stateMachine": {
2115
- "states": [
2116
- {
2117
- "name": "logging",
2118
- "isInitial": true
2119
- }
2120
- ],
2121
- "events": [
2122
- {
2123
- "key": "INIT",
2124
- "name": "Initialize"
2125
- },
2126
- {
2127
- "key": "LOG_ENTRY",
2128
- "name": "Log Entry",
2129
- "payload": [
2130
- {
2131
- "name": "action",
2132
- "type": "string",
2133
- "required": true
2134
- },
2135
- {
2136
- "name": "detail",
2137
- "type": "string",
2138
- "required": true
2139
- },
2140
- {
2141
- "name": "status",
2142
- "type": "string",
2143
- "required": true
2144
- }
2145
- ]
2146
- },
2147
- {
2148
- "key": "CLEAR",
2149
- "name": "Clear Log"
2150
- }
2151
- ],
2152
- "transitions": [
2153
- {
2154
- "from": "logging",
2155
- "to": "logging",
2156
- "event": "INIT",
2157
- "effects": [
2158
- [
2159
- "fetch",
2160
- "AgentToolLoop"
2161
- ],
2162
- [
2163
- "render-ui",
2164
- "main",
2165
- {
2166
- "type": "stack",
2167
- "direction": "vertical",
2168
- "gap": "lg",
2169
- "children": [
2170
- {
2171
- "type": "stack",
2172
- "direction": "horizontal",
2173
- "gap": "sm",
2174
- "justify": "space-between",
2175
- "align": "center",
2176
- "children": [
2201
+ "steps": [
2177
2202
  {
2178
- "type": "stack",
2179
- "direction": "horizontal",
2180
- "gap": "sm",
2181
- "align": "center",
2182
- "children": [
2183
- {
2184
- "type": "icon",
2185
- "name": "activity",
2186
- "size": "lg"
2187
- },
2188
- {
2189
- "type": "typography",
2190
- "content": "Activity Log",
2191
- "variant": "h2"
2192
- }
2193
- ]
2203
+ "id": "0",
2204
+ "title": "Plan"
2194
2205
  },
2195
2206
  {
2196
- "type": "button",
2197
- "label": "Clear",
2198
- "event": "CLEAR",
2199
- "variant": "ghost",
2200
- "icon": "trash"
2201
- }
2202
- ]
2203
- },
2204
- {
2205
- "type": "divider"
2206
- },
2207
- {
2208
- "type": "timeline",
2209
- "entity": "AgentToolLoop",
2210
- "emptyIcon": "activity",
2211
- "emptyTitle": "No activity yet",
2212
- "emptyDescription": "Agent actions will appear here as they occur.",
2213
- "renderItem": [
2214
- "fn",
2215
- "item",
2216
- {
2217
- "type": "stack",
2218
- "direction": "vertical",
2219
- "gap": "xs",
2220
- "children": [
2221
- {
2222
- "type": "stack",
2223
- "direction": "horizontal",
2224
- "gap": "sm",
2225
- "align": "center",
2226
- "children": [
2227
- {
2228
- "type": "badge",
2229
- "label": "@item.status"
2230
- },
2231
- {
2232
- "type": "typography",
2233
- "variant": "h4",
2234
- "content": "@item.action"
2235
- }
2236
- ]
2237
- },
2238
- {
2239
- "type": "typography",
2240
- "variant": "body",
2241
- "color": "muted",
2242
- "content": "@item.detail"
2243
- },
2244
- {
2245
- "type": "stack",
2246
- "direction": "horizontal",
2247
- "gap": "sm",
2248
- "align": "center",
2249
- "children": [
2250
- {
2251
- "type": "typography",
2252
- "variant": "caption",
2253
- "color": "muted",
2254
- "content": "@item.timestamp"
2255
- },
2256
- {
2257
- "type": "badge",
2258
- "label": "@item.duration",
2259
- "variant": "outline"
2260
- }
2261
- ]
2262
- }
2263
- ]
2264
- }
2265
- ],
2266
- "fields": [
2267
- "name",
2268
- "description",
2269
- "status",
2270
- "createdAt",
2271
- "task",
2272
- "plan",
2273
- "iterations",
2274
- "maxIterations",
2275
- "result",
2276
- "currentTool",
2277
- "lastToolResult",
2278
- "error",
2279
- "currentStep",
2280
- "totalSteps",
2281
- "steps",
2282
- "toolName",
2283
- "args",
2284
- "prompt",
2285
- "response",
2286
- "provider",
2287
- "model",
2288
- "tokenCount",
2289
- "maxTokens",
2290
- "usage",
2291
- "current",
2292
- "max",
2293
- "threshold",
2294
- "lastCompactedAt",
2295
- "action",
2296
- "detail",
2297
- "timestamp",
2298
- "duration"
2299
- ]
2300
- }
2301
- ]
2302
- }
2303
- ]
2304
- ]
2305
- },
2306
- {
2307
- "from": "logging",
2308
- "to": "logging",
2309
- "event": "LOG_ENTRY",
2310
- "effects": [
2311
- [
2312
- "persist",
2313
- "create",
2314
- "AgentToolLoop",
2315
- {
2316
- "action": "@payload.action",
2317
- "detail": "@payload.detail",
2318
- "status": "@payload.status",
2319
- "timestamp": "@now"
2320
- }
2321
- ],
2322
- [
2323
- "fetch",
2324
- "AgentToolLoop"
2325
- ],
2326
- [
2327
- "render-ui",
2328
- "main",
2329
- {
2330
- "type": "stack",
2331
- "direction": "vertical",
2332
- "gap": "lg",
2333
- "children": [
2334
- {
2335
- "type": "stack",
2336
- "direction": "horizontal",
2337
- "gap": "sm",
2338
- "justify": "space-between",
2339
- "align": "center",
2340
- "children": [
2341
- {
2342
- "type": "stack",
2343
- "direction": "horizontal",
2344
- "gap": "sm",
2345
- "align": "center",
2346
- "children": [
2347
- {
2348
- "type": "icon",
2349
- "name": "activity",
2350
- "size": "lg"
2351
- },
2352
- {
2353
- "type": "typography",
2354
- "content": "Activity Log",
2355
- "variant": "h2"
2356
- }
2357
- ]
2207
+ "id": "1",
2208
+ "title": "Execute"
2358
2209
  },
2359
2210
  {
2360
- "type": "button",
2361
- "label": "Clear",
2362
- "event": "CLEAR",
2363
- "variant": "ghost",
2364
- "icon": "trash"
2365
- }
2366
- ]
2367
- },
2368
- {
2369
- "type": "divider"
2370
- },
2371
- {
2372
- "type": "timeline",
2373
- "entity": "AgentToolLoop",
2374
- "emptyIcon": "activity",
2375
- "emptyTitle": "No activity yet",
2376
- "emptyDescription": "Agent actions will appear here as they occur.",
2377
- "renderItem": [
2378
- "fn",
2379
- "item",
2380
- {
2381
- "type": "stack",
2382
- "direction": "vertical",
2383
- "gap": "xs",
2384
- "children": [
2385
- {
2386
- "type": "stack",
2387
- "direction": "horizontal",
2388
- "gap": "sm",
2389
- "align": "center",
2390
- "children": [
2391
- {
2392
- "type": "badge",
2393
- "label": "@item.status"
2394
- },
2395
- {
2396
- "type": "typography",
2397
- "variant": "h4",
2398
- "content": "@item.action"
2399
- }
2400
- ]
2401
- },
2402
- {
2403
- "type": "typography",
2404
- "variant": "body",
2405
- "color": "muted",
2406
- "content": "@item.detail"
2407
- },
2408
- {
2409
- "type": "stack",
2410
- "direction": "horizontal",
2411
- "gap": "sm",
2412
- "align": "center",
2413
- "children": [
2414
- {
2415
- "type": "typography",
2416
- "variant": "caption",
2417
- "color": "muted",
2418
- "content": "@item.timestamp"
2419
- },
2420
- {
2421
- "type": "badge",
2422
- "label": "@item.duration",
2423
- "variant": "outline"
2424
- }
2425
- ]
2426
- }
2427
- ]
2428
- }
2429
- ],
2430
- "fields": [
2431
- "name",
2432
- "description",
2433
- "status",
2434
- "createdAt",
2435
- "task",
2436
- "plan",
2437
- "iterations",
2438
- "maxIterations",
2439
- "result",
2440
- "currentTool",
2441
- "lastToolResult",
2442
- "error",
2443
- "currentStep",
2444
- "totalSteps",
2445
- "steps",
2446
- "toolName",
2447
- "args",
2448
- "prompt",
2449
- "response",
2450
- "provider",
2451
- "model",
2452
- "tokenCount",
2453
- "maxTokens",
2454
- "usage",
2455
- "current",
2456
- "max",
2457
- "threshold",
2458
- "lastCompactedAt",
2459
- "action",
2460
- "detail",
2461
- "timestamp",
2462
- "duration"
2463
- ]
2464
- }
2465
- ]
2466
- }
2467
- ],
2468
- [
2469
- "notify",
2470
- "AgentToolLoop created successfully"
2471
- ]
2472
- ]
2473
- },
2474
- {
2475
- "from": "logging",
2476
- "to": "logging",
2477
- "event": "CLEAR",
2478
- "effects": [
2479
- [
2480
- "persist",
2481
- "delete",
2482
- "AgentToolLoop"
2483
- ],
2484
- [
2485
- "fetch",
2486
- "AgentToolLoop"
2487
- ],
2488
- [
2489
- "render-ui",
2490
- "main",
2491
- {
2492
- "type": "stack",
2493
- "direction": "vertical",
2494
- "gap": "lg",
2495
- "children": [
2496
- {
2497
- "type": "stack",
2498
- "direction": "horizontal",
2499
- "gap": "sm",
2500
- "justify": "space-between",
2501
- "align": "center",
2502
- "children": [
2503
- {
2504
- "type": "stack",
2505
- "direction": "horizontal",
2506
- "gap": "sm",
2507
- "align": "center",
2508
- "children": [
2509
- {
2510
- "type": "icon",
2511
- "name": "activity",
2512
- "size": "lg"
2513
- },
2514
- {
2515
- "type": "typography",
2516
- "content": "Activity Log",
2517
- "variant": "h2"
2518
- }
2519
- ]
2211
+ "id": "2",
2212
+ "title": "Check"
2520
2213
  },
2521
2214
  {
2522
- "type": "button",
2523
- "label": "Clear",
2524
- "event": "CLEAR",
2525
- "variant": "ghost",
2526
- "icon": "trash"
2215
+ "id": "3",
2216
+ "title": "Complete"
2527
2217
  }
2528
2218
  ]
2529
2219
  },
2530
2220
  {
2531
- "type": "divider"
2532
- },
2533
- {
2534
- "type": "timeline",
2535
- "entity": "AgentToolLoop",
2536
- "emptyIcon": "activity",
2537
- "emptyTitle": "No activity yet",
2538
- "emptyDescription": "Agent actions will appear here as they occur.",
2539
- "renderItem": [
2540
- "fn",
2541
- "item",
2542
- {
2543
- "type": "stack",
2544
- "direction": "vertical",
2545
- "gap": "xs",
2546
- "children": [
2547
- {
2548
- "type": "stack",
2549
- "direction": "horizontal",
2550
- "gap": "sm",
2551
- "align": "center",
2552
- "children": [
2553
- {
2554
- "type": "badge",
2555
- "label": "@item.status"
2556
- },
2557
- {
2558
- "type": "typography",
2559
- "variant": "h4",
2560
- "content": "@item.action"
2561
- }
2562
- ]
2563
- },
2564
- {
2565
- "type": "typography",
2566
- "variant": "body",
2567
- "color": "muted",
2568
- "content": "@item.detail"
2569
- },
2570
- {
2571
- "type": "stack",
2572
- "direction": "horizontal",
2573
- "gap": "sm",
2574
- "align": "center",
2575
- "children": [
2576
- {
2577
- "type": "typography",
2578
- "variant": "caption",
2579
- "color": "muted",
2580
- "content": "@item.timestamp"
2581
- },
2582
- {
2583
- "type": "badge",
2584
- "label": "@item.duration",
2585
- "variant": "outline"
2586
- }
2587
- ]
2588
- }
2589
- ]
2590
- }
2591
- ],
2592
- "fields": [
2593
- "name",
2594
- "description",
2595
- "status",
2596
- "createdAt",
2597
- "task",
2598
- "plan",
2599
- "iterations",
2600
- "maxIterations",
2601
- "result",
2602
- "currentTool",
2603
- "lastToolResult",
2604
- "error",
2605
- "currentStep",
2606
- "totalSteps",
2607
- "steps",
2608
- "toolName",
2609
- "args",
2610
- "prompt",
2611
- "response",
2612
- "provider",
2613
- "model",
2614
- "tokenCount",
2615
- "maxTokens",
2616
- "usage",
2617
- "current",
2618
- "max",
2619
- "threshold",
2620
- "lastCompactedAt",
2621
- "action",
2622
- "detail",
2623
- "timestamp",
2624
- "duration"
2625
- ]
2221
+ "type": "button",
2222
+ "label": "Start",
2223
+ "event": "START",
2224
+ "variant": "primary",
2225
+ "icon": "play"
2626
2226
  }
2627
2227
  ]
2628
2228
  }
2629
- ],
2630
- [
2631
- "notify",
2632
- "AgentToolLoop deleted successfully"
2633
2229
  ]
2634
2230
  ]
2635
2231
  }
@@ -2964,7 +2560,8 @@
2964
2560
  ]
2965
2561
  }
2966
2562
  ]
2967
- }
2563
+ },
2564
+ "listens": []
2968
2565
  },
2969
2566
  {
2970
2567
  "name": "ToolLoopToolCallFlow",
@@ -3280,7 +2877,8 @@
3280
2877
  ]
3281
2878
  }
3282
2879
  ]
3283
- }
2880
+ },
2881
+ "listens": []
3284
2882
  },
3285
2883
  {
3286
2884
  "name": "ToolLoopContextMonitor",
@@ -4822,7 +4420,8 @@
4822
4420
  ]
4823
4421
  }
4824
4422
  ]
4825
- }
4423
+ },
4424
+ "listens": []
4826
4425
  }
4827
4426
  ],
4828
4427
  "pages": [
@@ -4836,9 +4435,6 @@
4836
4435
  {
4837
4436
  "ref": "ToolLoopStepProgress"
4838
4437
  },
4839
- {
4840
- "ref": "ToolLoopActivityLog"
4841
- },
4842
4438
  {
4843
4439
  "ref": "ToolLoopCompletionFlow"
4844
4440
  },