@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.
- package/behaviors/exports/atoms/std-agent-activity-log.orb +11 -3
- package/behaviors/exports/atoms/std-agent-step-progress.orb +162 -23
- package/behaviors/exports/atoms/std-agent-tool-call.orb +0 -499
- package/behaviors/exports/molecules/std-agent-fix-loop.orb +173 -25
- package/behaviors/exports/molecules/std-agent-learner.orb +15 -550
- package/behaviors/exports/molecules/std-agent-planner.orb +10 -530
- package/behaviors/exports/molecules/std-agent-rag.orb +4 -1
- package/behaviors/exports/molecules/std-agent-tool-loop.orb +169 -573
- package/behaviors/exports/organisms/std-agent-builder.orb +905 -1453
- package/behaviors/exports/organisms/std-agent-pipeline.orb +806 -1502
- package/behaviors/exports/organisms/std-agent-reviewer.orb +4 -1
- package/behaviors/exports/validation-report.json +2 -2
- package/dist/behaviors/behaviors-registry.json +11173 -5568
- package/dist/behaviors/exports/atoms/std-agent-activity-log.orb +11 -3
- package/dist/behaviors/exports/atoms/std-agent-step-progress.orb +162 -23
- package/dist/behaviors/exports/atoms/std-agent-tool-call.orb +0 -499
- package/dist/behaviors/exports/molecules/std-agent-fix-loop.orb +173 -25
- package/dist/behaviors/exports/molecules/std-agent-learner.orb +15 -550
- package/dist/behaviors/exports/molecules/std-agent-planner.orb +10 -530
- package/dist/behaviors/exports/molecules/std-agent-rag.orb +4 -1
- package/dist/behaviors/exports/molecules/std-agent-tool-loop.orb +169 -573
- package/dist/behaviors/exports/organisms/std-agent-builder.orb +905 -1453
- package/dist/behaviors/exports/organisms/std-agent-pipeline.orb +806 -1502
- package/dist/behaviors/exports/organisms/std-agent-reviewer.orb +4 -1
- package/dist/behaviors/exports/validation-report.json +2 -2
- package/dist/behaviors/exports-reader.js +257 -302
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.js +257 -302
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.js +257 -302
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +257 -302
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors-registry.json +11173 -5568
- package/dist/exports/atoms/std-agent-activity-log.orb +11 -3
- package/dist/exports/atoms/std-agent-step-progress.orb +162 -23
- package/dist/exports/atoms/std-agent-tool-call.orb +0 -499
- package/dist/exports/molecules/std-agent-fix-loop.orb +173 -25
- package/dist/exports/molecules/std-agent-learner.orb +15 -550
- package/dist/exports/molecules/std-agent-planner.orb +10 -530
- package/dist/exports/molecules/std-agent-rag.orb +4 -1
- package/dist/exports/molecules/std-agent-tool-loop.orb +169 -573
- package/dist/exports/organisms/std-agent-builder.orb +905 -1453
- package/dist/exports/organisms/std-agent-pipeline.orb +806 -1502
- package/dist/exports/organisms/std-agent-reviewer.orb +4 -1
- package/dist/exports/validation-report.json +2 -2
- package/dist/index.js +257 -302
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -117,6 +117,11 @@
|
|
|
117
117
|
"name": "duration",
|
|
118
118
|
"type": "number",
|
|
119
119
|
"default": 0
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "icon",
|
|
123
|
+
"type": "string",
|
|
124
|
+
"default": "circle"
|
|
120
125
|
}
|
|
121
126
|
]
|
|
122
127
|
},
|
|
@@ -1296,34 +1301,23 @@
|
|
|
1296
1301
|
}
|
|
1297
1302
|
},
|
|
1298
1303
|
{
|
|
1299
|
-
"name": "
|
|
1304
|
+
"name": "PlannerClassifierFlow",
|
|
1300
1305
|
"linkedEntity": "PipelinePlan",
|
|
1301
1306
|
"category": "interaction",
|
|
1302
1307
|
"emits": [
|
|
1303
1308
|
{
|
|
1304
|
-
"event": "
|
|
1305
|
-
"scope": "internal"
|
|
1306
|
-
"payload": [
|
|
1307
|
-
{
|
|
1308
|
-
"name": "action",
|
|
1309
|
-
"type": "string"
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"name": "detail",
|
|
1313
|
-
"type": "string"
|
|
1314
|
-
},
|
|
1315
|
-
{
|
|
1316
|
-
"name": "status",
|
|
1317
|
-
"type": "string"
|
|
1318
|
-
}
|
|
1319
|
-
]
|
|
1309
|
+
"event": "CLASSIFIED",
|
|
1310
|
+
"scope": "internal"
|
|
1320
1311
|
}
|
|
1321
1312
|
],
|
|
1322
1313
|
"stateMachine": {
|
|
1323
1314
|
"states": [
|
|
1324
1315
|
{
|
|
1325
|
-
"name": "
|
|
1316
|
+
"name": "closed",
|
|
1326
1317
|
"isInitial": true
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"name": "open"
|
|
1327
1321
|
}
|
|
1328
1322
|
],
|
|
1329
1323
|
"events": [
|
|
@@ -1332,39 +1326,33 @@
|
|
|
1332
1326
|
"name": "Initialize"
|
|
1333
1327
|
},
|
|
1334
1328
|
{
|
|
1335
|
-
"key": "
|
|
1336
|
-
"name": "
|
|
1329
|
+
"key": "CLASSIFY",
|
|
1330
|
+
"name": "Open"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"key": "CLOSE",
|
|
1334
|
+
"name": "Close"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"key": "SAVE",
|
|
1338
|
+
"name": "Save",
|
|
1337
1339
|
"payload": [
|
|
1338
1340
|
{
|
|
1339
|
-
"name": "
|
|
1340
|
-
"type": "
|
|
1341
|
-
"required": true
|
|
1342
|
-
},
|
|
1343
|
-
{
|
|
1344
|
-
"name": "detail",
|
|
1345
|
-
"type": "string",
|
|
1346
|
-
"required": true
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
"name": "status",
|
|
1350
|
-
"type": "string",
|
|
1341
|
+
"name": "data",
|
|
1342
|
+
"type": "object",
|
|
1351
1343
|
"required": true
|
|
1352
1344
|
}
|
|
1353
1345
|
]
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
"key": "CLEAR",
|
|
1357
|
-
"name": "Clear Log"
|
|
1358
1346
|
}
|
|
1359
1347
|
],
|
|
1360
1348
|
"transitions": [
|
|
1361
1349
|
{
|
|
1362
|
-
"from": "
|
|
1363
|
-
"to": "
|
|
1350
|
+
"from": "closed",
|
|
1351
|
+
"to": "closed",
|
|
1364
1352
|
"event": "INIT",
|
|
1365
1353
|
"effects": [
|
|
1366
1354
|
[
|
|
1367
|
-
"
|
|
1355
|
+
"ref",
|
|
1368
1356
|
"PipelinePlan"
|
|
1369
1357
|
],
|
|
1370
1358
|
[
|
|
@@ -1399,34 +1387,32 @@
|
|
|
1399
1387
|
{
|
|
1400
1388
|
"type": "stack",
|
|
1401
1389
|
"direction": "horizontal",
|
|
1402
|
-
"gap": "
|
|
1390
|
+
"gap": "md",
|
|
1403
1391
|
"justify": "space-between",
|
|
1404
|
-
"align": "center",
|
|
1405
1392
|
"children": [
|
|
1406
1393
|
{
|
|
1407
1394
|
"type": "stack",
|
|
1408
1395
|
"direction": "horizontal",
|
|
1409
|
-
"gap": "
|
|
1410
|
-
"align": "center",
|
|
1396
|
+
"gap": "md",
|
|
1411
1397
|
"children": [
|
|
1412
1398
|
{
|
|
1413
1399
|
"type": "icon",
|
|
1414
|
-
"name": "
|
|
1400
|
+
"name": "tag",
|
|
1415
1401
|
"size": "lg"
|
|
1416
1402
|
},
|
|
1417
1403
|
{
|
|
1418
1404
|
"type": "typography",
|
|
1419
|
-
"content": "
|
|
1405
|
+
"content": "PipelinePlan",
|
|
1420
1406
|
"variant": "h2"
|
|
1421
1407
|
}
|
|
1422
1408
|
]
|
|
1423
1409
|
},
|
|
1424
1410
|
{
|
|
1425
1411
|
"type": "button",
|
|
1426
|
-
"label": "
|
|
1427
|
-
"event": "
|
|
1428
|
-
"variant": "
|
|
1429
|
-
"icon": "
|
|
1412
|
+
"label": "Open",
|
|
1413
|
+
"event": "CLASSIFY",
|
|
1414
|
+
"variant": "primary",
|
|
1415
|
+
"icon": "tag"
|
|
1430
1416
|
}
|
|
1431
1417
|
]
|
|
1432
1418
|
},
|
|
@@ -1434,64 +1420,10 @@
|
|
|
1434
1420
|
"type": "divider"
|
|
1435
1421
|
},
|
|
1436
1422
|
{
|
|
1437
|
-
"type": "
|
|
1438
|
-
"
|
|
1439
|
-
"
|
|
1440
|
-
"
|
|
1441
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1442
|
-
"renderItem": [
|
|
1443
|
-
"fn",
|
|
1444
|
-
"item",
|
|
1445
|
-
{
|
|
1446
|
-
"type": "stack",
|
|
1447
|
-
"direction": "vertical",
|
|
1448
|
-
"gap": "xs",
|
|
1449
|
-
"children": [
|
|
1450
|
-
{
|
|
1451
|
-
"type": "stack",
|
|
1452
|
-
"direction": "horizontal",
|
|
1453
|
-
"gap": "sm",
|
|
1454
|
-
"align": "center",
|
|
1455
|
-
"children": [
|
|
1456
|
-
{
|
|
1457
|
-
"type": "badge",
|
|
1458
|
-
"label": "@item.status"
|
|
1459
|
-
},
|
|
1460
|
-
{
|
|
1461
|
-
"type": "typography",
|
|
1462
|
-
"variant": "h4",
|
|
1463
|
-
"content": "@item.action"
|
|
1464
|
-
}
|
|
1465
|
-
]
|
|
1466
|
-
},
|
|
1467
|
-
{
|
|
1468
|
-
"type": "typography",
|
|
1469
|
-
"variant": "body",
|
|
1470
|
-
"color": "muted",
|
|
1471
|
-
"content": "@item.detail"
|
|
1472
|
-
},
|
|
1473
|
-
{
|
|
1474
|
-
"type": "stack",
|
|
1475
|
-
"direction": "horizontal",
|
|
1476
|
-
"gap": "sm",
|
|
1477
|
-
"align": "center",
|
|
1478
|
-
"children": [
|
|
1479
|
-
{
|
|
1480
|
-
"type": "typography",
|
|
1481
|
-
"variant": "caption",
|
|
1482
|
-
"color": "muted",
|
|
1483
|
-
"content": "@item.timestamp"
|
|
1484
|
-
},
|
|
1485
|
-
{
|
|
1486
|
-
"type": "badge",
|
|
1487
|
-
"label": "@item.duration",
|
|
1488
|
-
"variant": "outline"
|
|
1489
|
-
}
|
|
1490
|
-
]
|
|
1491
|
-
}
|
|
1492
|
-
]
|
|
1493
|
-
}
|
|
1494
|
-
]
|
|
1423
|
+
"type": "empty-state",
|
|
1424
|
+
"icon": "tag",
|
|
1425
|
+
"title": "Nothing open",
|
|
1426
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1495
1427
|
}
|
|
1496
1428
|
]
|
|
1497
1429
|
}
|
|
@@ -1501,23 +1433,107 @@
|
|
|
1501
1433
|
]
|
|
1502
1434
|
},
|
|
1503
1435
|
{
|
|
1504
|
-
"from": "
|
|
1505
|
-
"to": "
|
|
1506
|
-
"event": "
|
|
1436
|
+
"from": "closed",
|
|
1437
|
+
"to": "open",
|
|
1438
|
+
"event": "CLASSIFY",
|
|
1507
1439
|
"effects": [
|
|
1508
1440
|
[
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1511
|
-
"PipelinePlan",
|
|
1441
|
+
"render-ui",
|
|
1442
|
+
"modal",
|
|
1512
1443
|
{
|
|
1513
|
-
"
|
|
1514
|
-
"
|
|
1515
|
-
"
|
|
1516
|
-
"
|
|
1444
|
+
"type": "stack",
|
|
1445
|
+
"direction": "vertical",
|
|
1446
|
+
"gap": "md",
|
|
1447
|
+
"children": [
|
|
1448
|
+
{
|
|
1449
|
+
"type": "stack",
|
|
1450
|
+
"direction": "horizontal",
|
|
1451
|
+
"gap": "sm",
|
|
1452
|
+
"children": [
|
|
1453
|
+
{
|
|
1454
|
+
"type": "icon",
|
|
1455
|
+
"name": "tag",
|
|
1456
|
+
"size": "md"
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"type": "typography",
|
|
1460
|
+
"content": "PipelinePlan",
|
|
1461
|
+
"variant": "h3"
|
|
1462
|
+
}
|
|
1463
|
+
]
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"type": "divider"
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
"type": "stack",
|
|
1470
|
+
"direction": "horizontal",
|
|
1471
|
+
"gap": "sm",
|
|
1472
|
+
"children": [
|
|
1473
|
+
{
|
|
1474
|
+
"type": "typography",
|
|
1475
|
+
"variant": "caption",
|
|
1476
|
+
"content": "Categories:"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"type": "badge",
|
|
1480
|
+
"label": "data",
|
|
1481
|
+
"variant": "secondary"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"type": "badge",
|
|
1485
|
+
"label": "transform",
|
|
1486
|
+
"variant": "secondary"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"type": "badge",
|
|
1490
|
+
"label": "validate",
|
|
1491
|
+
"variant": "secondary"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"type": "badge",
|
|
1495
|
+
"label": "deploy",
|
|
1496
|
+
"variant": "secondary"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"type": "badge",
|
|
1500
|
+
"label": "test",
|
|
1501
|
+
"variant": "secondary"
|
|
1502
|
+
}
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"type": "form-section",
|
|
1507
|
+
"entity": "PipelinePlan",
|
|
1508
|
+
"mode": "create",
|
|
1509
|
+
"submitEvent": "SAVE",
|
|
1510
|
+
"cancelEvent": "CLOSE",
|
|
1511
|
+
"fields": [
|
|
1512
|
+
"input"
|
|
1513
|
+
]
|
|
1514
|
+
}
|
|
1515
|
+
]
|
|
1517
1516
|
}
|
|
1517
|
+
]
|
|
1518
|
+
]
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
"from": "open",
|
|
1522
|
+
"to": "closed",
|
|
1523
|
+
"event": "CLOSE",
|
|
1524
|
+
"effects": [
|
|
1525
|
+
[
|
|
1526
|
+
"render-ui",
|
|
1527
|
+
"modal",
|
|
1528
|
+
null
|
|
1518
1529
|
],
|
|
1519
1530
|
[
|
|
1520
|
-
"
|
|
1531
|
+
"notify",
|
|
1532
|
+
"Cancelled",
|
|
1533
|
+
"info"
|
|
1534
|
+
],
|
|
1535
|
+
[
|
|
1536
|
+
"ref",
|
|
1521
1537
|
"PipelinePlan"
|
|
1522
1538
|
],
|
|
1523
1539
|
[
|
|
@@ -1552,34 +1568,32 @@
|
|
|
1552
1568
|
{
|
|
1553
1569
|
"type": "stack",
|
|
1554
1570
|
"direction": "horizontal",
|
|
1555
|
-
"gap": "
|
|
1571
|
+
"gap": "md",
|
|
1556
1572
|
"justify": "space-between",
|
|
1557
|
-
"align": "center",
|
|
1558
1573
|
"children": [
|
|
1559
1574
|
{
|
|
1560
1575
|
"type": "stack",
|
|
1561
1576
|
"direction": "horizontal",
|
|
1562
|
-
"gap": "
|
|
1563
|
-
"align": "center",
|
|
1577
|
+
"gap": "md",
|
|
1564
1578
|
"children": [
|
|
1565
1579
|
{
|
|
1566
1580
|
"type": "icon",
|
|
1567
|
-
"name": "
|
|
1581
|
+
"name": "tag",
|
|
1568
1582
|
"size": "lg"
|
|
1569
1583
|
},
|
|
1570
1584
|
{
|
|
1571
1585
|
"type": "typography",
|
|
1572
|
-
"content": "
|
|
1586
|
+
"content": "PipelinePlan",
|
|
1573
1587
|
"variant": "h2"
|
|
1574
1588
|
}
|
|
1575
1589
|
]
|
|
1576
1590
|
},
|
|
1577
1591
|
{
|
|
1578
1592
|
"type": "button",
|
|
1579
|
-
"label": "
|
|
1580
|
-
"event": "
|
|
1581
|
-
"variant": "
|
|
1582
|
-
"icon": "
|
|
1593
|
+
"label": "Open",
|
|
1594
|
+
"event": "CLASSIFY",
|
|
1595
|
+
"variant": "primary",
|
|
1596
|
+
"icon": "tag"
|
|
1583
1597
|
}
|
|
1584
1598
|
]
|
|
1585
1599
|
},
|
|
@@ -1587,88 +1601,40 @@
|
|
|
1587
1601
|
"type": "divider"
|
|
1588
1602
|
},
|
|
1589
1603
|
{
|
|
1590
|
-
"type": "
|
|
1591
|
-
"
|
|
1592
|
-
"
|
|
1593
|
-
"
|
|
1594
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1595
|
-
"renderItem": [
|
|
1596
|
-
"fn",
|
|
1597
|
-
"item",
|
|
1598
|
-
{
|
|
1599
|
-
"type": "stack",
|
|
1600
|
-
"direction": "vertical",
|
|
1601
|
-
"gap": "xs",
|
|
1602
|
-
"children": [
|
|
1603
|
-
{
|
|
1604
|
-
"type": "stack",
|
|
1605
|
-
"direction": "horizontal",
|
|
1606
|
-
"gap": "sm",
|
|
1607
|
-
"align": "center",
|
|
1608
|
-
"children": [
|
|
1609
|
-
{
|
|
1610
|
-
"type": "badge",
|
|
1611
|
-
"label": "@item.status"
|
|
1612
|
-
},
|
|
1613
|
-
{
|
|
1614
|
-
"type": "typography",
|
|
1615
|
-
"variant": "h4",
|
|
1616
|
-
"content": "@item.action"
|
|
1617
|
-
}
|
|
1618
|
-
]
|
|
1619
|
-
},
|
|
1620
|
-
{
|
|
1621
|
-
"type": "typography",
|
|
1622
|
-
"variant": "body",
|
|
1623
|
-
"color": "muted",
|
|
1624
|
-
"content": "@item.detail"
|
|
1625
|
-
},
|
|
1626
|
-
{
|
|
1627
|
-
"type": "stack",
|
|
1628
|
-
"direction": "horizontal",
|
|
1629
|
-
"gap": "sm",
|
|
1630
|
-
"align": "center",
|
|
1631
|
-
"children": [
|
|
1632
|
-
{
|
|
1633
|
-
"type": "typography",
|
|
1634
|
-
"variant": "caption",
|
|
1635
|
-
"color": "muted",
|
|
1636
|
-
"content": "@item.timestamp"
|
|
1637
|
-
},
|
|
1638
|
-
{
|
|
1639
|
-
"type": "badge",
|
|
1640
|
-
"label": "@item.duration",
|
|
1641
|
-
"variant": "outline"
|
|
1642
|
-
}
|
|
1643
|
-
]
|
|
1644
|
-
}
|
|
1645
|
-
]
|
|
1646
|
-
}
|
|
1647
|
-
]
|
|
1604
|
+
"type": "empty-state",
|
|
1605
|
+
"icon": "tag",
|
|
1606
|
+
"title": "Nothing open",
|
|
1607
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1648
1608
|
}
|
|
1649
1609
|
]
|
|
1650
1610
|
}
|
|
1651
1611
|
]
|
|
1652
1612
|
}
|
|
1653
|
-
],
|
|
1654
|
-
[
|
|
1655
|
-
"notify",
|
|
1656
|
-
"PipelinePlan created successfully"
|
|
1657
1613
|
]
|
|
1658
1614
|
]
|
|
1659
1615
|
},
|
|
1660
1616
|
{
|
|
1661
|
-
"from": "
|
|
1662
|
-
"to": "
|
|
1663
|
-
"event": "
|
|
1617
|
+
"from": "open",
|
|
1618
|
+
"to": "closed",
|
|
1619
|
+
"event": "SAVE",
|
|
1664
1620
|
"effects": [
|
|
1665
1621
|
[
|
|
1666
1622
|
"persist",
|
|
1667
|
-
"
|
|
1668
|
-
"PipelinePlan"
|
|
1623
|
+
"create",
|
|
1624
|
+
"PipelinePlan",
|
|
1625
|
+
"@payload.data"
|
|
1669
1626
|
],
|
|
1670
1627
|
[
|
|
1671
|
-
"
|
|
1628
|
+
"render-ui",
|
|
1629
|
+
"modal",
|
|
1630
|
+
null
|
|
1631
|
+
],
|
|
1632
|
+
[
|
|
1633
|
+
"emit",
|
|
1634
|
+
"CLASSIFIED"
|
|
1635
|
+
],
|
|
1636
|
+
[
|
|
1637
|
+
"ref",
|
|
1672
1638
|
"PipelinePlan"
|
|
1673
1639
|
],
|
|
1674
1640
|
[
|
|
@@ -1703,34 +1669,32 @@
|
|
|
1703
1669
|
{
|
|
1704
1670
|
"type": "stack",
|
|
1705
1671
|
"direction": "horizontal",
|
|
1706
|
-
"gap": "
|
|
1672
|
+
"gap": "md",
|
|
1707
1673
|
"justify": "space-between",
|
|
1708
|
-
"align": "center",
|
|
1709
1674
|
"children": [
|
|
1710
1675
|
{
|
|
1711
1676
|
"type": "stack",
|
|
1712
1677
|
"direction": "horizontal",
|
|
1713
|
-
"gap": "
|
|
1714
|
-
"align": "center",
|
|
1678
|
+
"gap": "md",
|
|
1715
1679
|
"children": [
|
|
1716
1680
|
{
|
|
1717
1681
|
"type": "icon",
|
|
1718
|
-
"name": "
|
|
1682
|
+
"name": "tag",
|
|
1719
1683
|
"size": "lg"
|
|
1720
1684
|
},
|
|
1721
1685
|
{
|
|
1722
1686
|
"type": "typography",
|
|
1723
|
-
"content": "
|
|
1687
|
+
"content": "PipelinePlan",
|
|
1724
1688
|
"variant": "h2"
|
|
1725
1689
|
}
|
|
1726
1690
|
]
|
|
1727
1691
|
},
|
|
1728
1692
|
{
|
|
1729
1693
|
"type": "button",
|
|
1730
|
-
"label": "
|
|
1731
|
-
"event": "
|
|
1732
|
-
"variant": "
|
|
1733
|
-
"icon": "
|
|
1694
|
+
"label": "Open",
|
|
1695
|
+
"event": "CLASSIFY",
|
|
1696
|
+
"variant": "primary",
|
|
1697
|
+
"icon": "tag"
|
|
1734
1698
|
}
|
|
1735
1699
|
]
|
|
1736
1700
|
},
|
|
@@ -1738,64 +1702,10 @@
|
|
|
1738
1702
|
"type": "divider"
|
|
1739
1703
|
},
|
|
1740
1704
|
{
|
|
1741
|
-
"type": "
|
|
1742
|
-
"
|
|
1743
|
-
"
|
|
1744
|
-
"
|
|
1745
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1746
|
-
"renderItem": [
|
|
1747
|
-
"fn",
|
|
1748
|
-
"item",
|
|
1749
|
-
{
|
|
1750
|
-
"type": "stack",
|
|
1751
|
-
"direction": "vertical",
|
|
1752
|
-
"gap": "xs",
|
|
1753
|
-
"children": [
|
|
1754
|
-
{
|
|
1755
|
-
"type": "stack",
|
|
1756
|
-
"direction": "horizontal",
|
|
1757
|
-
"gap": "sm",
|
|
1758
|
-
"align": "center",
|
|
1759
|
-
"children": [
|
|
1760
|
-
{
|
|
1761
|
-
"type": "badge",
|
|
1762
|
-
"label": "@item.status"
|
|
1763
|
-
},
|
|
1764
|
-
{
|
|
1765
|
-
"type": "typography",
|
|
1766
|
-
"variant": "h4",
|
|
1767
|
-
"content": "@item.action"
|
|
1768
|
-
}
|
|
1769
|
-
]
|
|
1770
|
-
},
|
|
1771
|
-
{
|
|
1772
|
-
"type": "typography",
|
|
1773
|
-
"variant": "body",
|
|
1774
|
-
"color": "muted",
|
|
1775
|
-
"content": "@item.detail"
|
|
1776
|
-
},
|
|
1777
|
-
{
|
|
1778
|
-
"type": "stack",
|
|
1779
|
-
"direction": "horizontal",
|
|
1780
|
-
"gap": "sm",
|
|
1781
|
-
"align": "center",
|
|
1782
|
-
"children": [
|
|
1783
|
-
{
|
|
1784
|
-
"type": "typography",
|
|
1785
|
-
"variant": "caption",
|
|
1786
|
-
"color": "muted",
|
|
1787
|
-
"content": "@item.timestamp"
|
|
1788
|
-
},
|
|
1789
|
-
{
|
|
1790
|
-
"type": "badge",
|
|
1791
|
-
"label": "@item.duration",
|
|
1792
|
-
"variant": "outline"
|
|
1793
|
-
}
|
|
1794
|
-
]
|
|
1795
|
-
}
|
|
1796
|
-
]
|
|
1797
|
-
}
|
|
1798
|
-
]
|
|
1705
|
+
"type": "empty-state",
|
|
1706
|
+
"icon": "tag",
|
|
1707
|
+
"title": "Nothing open",
|
|
1708
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1799
1709
|
}
|
|
1800
1710
|
]
|
|
1801
1711
|
}
|
|
@@ -1804,20 +1714,21 @@
|
|
|
1804
1714
|
],
|
|
1805
1715
|
[
|
|
1806
1716
|
"notify",
|
|
1807
|
-
"PipelinePlan
|
|
1717
|
+
"PipelinePlan created successfully"
|
|
1808
1718
|
]
|
|
1809
1719
|
]
|
|
1810
1720
|
}
|
|
1811
1721
|
]
|
|
1812
|
-
}
|
|
1722
|
+
},
|
|
1723
|
+
"listens": []
|
|
1813
1724
|
},
|
|
1814
1725
|
{
|
|
1815
|
-
"name": "
|
|
1726
|
+
"name": "PlannerCompletionFlow",
|
|
1816
1727
|
"linkedEntity": "PipelinePlan",
|
|
1817
1728
|
"category": "interaction",
|
|
1818
1729
|
"emits": [
|
|
1819
1730
|
{
|
|
1820
|
-
"event": "
|
|
1731
|
+
"event": "GENERATED",
|
|
1821
1732
|
"scope": "internal"
|
|
1822
1733
|
}
|
|
1823
1734
|
],
|
|
@@ -1837,7 +1748,7 @@
|
|
|
1837
1748
|
"name": "Initialize"
|
|
1838
1749
|
},
|
|
1839
1750
|
{
|
|
1840
|
-
"key": "
|
|
1751
|
+
"key": "GENERATE",
|
|
1841
1752
|
"name": "Open"
|
|
1842
1753
|
},
|
|
1843
1754
|
{
|
|
@@ -1908,7 +1819,7 @@
|
|
|
1908
1819
|
"children": [
|
|
1909
1820
|
{
|
|
1910
1821
|
"type": "icon",
|
|
1911
|
-
"name": "
|
|
1822
|
+
"name": "sparkles",
|
|
1912
1823
|
"size": "lg"
|
|
1913
1824
|
},
|
|
1914
1825
|
{
|
|
@@ -1921,9 +1832,9 @@
|
|
|
1921
1832
|
{
|
|
1922
1833
|
"type": "button",
|
|
1923
1834
|
"label": "Open",
|
|
1924
|
-
"event": "
|
|
1835
|
+
"event": "GENERATE",
|
|
1925
1836
|
"variant": "primary",
|
|
1926
|
-
"icon": "
|
|
1837
|
+
"icon": "sparkles"
|
|
1927
1838
|
}
|
|
1928
1839
|
]
|
|
1929
1840
|
},
|
|
@@ -1932,7 +1843,7 @@
|
|
|
1932
1843
|
},
|
|
1933
1844
|
{
|
|
1934
1845
|
"type": "empty-state",
|
|
1935
|
-
"icon": "
|
|
1846
|
+
"icon": "sparkles",
|
|
1936
1847
|
"title": "Nothing open",
|
|
1937
1848
|
"description": "Click Open to view details in a modal overlay."
|
|
1938
1849
|
}
|
|
@@ -1946,7 +1857,7 @@
|
|
|
1946
1857
|
{
|
|
1947
1858
|
"from": "closed",
|
|
1948
1859
|
"to": "open",
|
|
1949
|
-
"event": "
|
|
1860
|
+
"event": "GENERATE",
|
|
1950
1861
|
"effects": [
|
|
1951
1862
|
[
|
|
1952
1863
|
"render-ui",
|
|
@@ -1963,7 +1874,7 @@
|
|
|
1963
1874
|
"children": [
|
|
1964
1875
|
{
|
|
1965
1876
|
"type": "icon",
|
|
1966
|
-
"name": "
|
|
1877
|
+
"name": "sparkles",
|
|
1967
1878
|
"size": "md"
|
|
1968
1879
|
},
|
|
1969
1880
|
{
|
|
@@ -1981,35 +1892,13 @@
|
|
|
1981
1892
|
"direction": "horizontal",
|
|
1982
1893
|
"gap": "sm",
|
|
1983
1894
|
"children": [
|
|
1984
|
-
{
|
|
1985
|
-
"type": "typography",
|
|
1986
|
-
"variant": "caption",
|
|
1987
|
-
"content": "Categories:"
|
|
1988
|
-
},
|
|
1989
|
-
{
|
|
1990
|
-
"type": "badge",
|
|
1991
|
-
"label": "data",
|
|
1992
|
-
"variant": "secondary"
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"type": "badge",
|
|
1996
|
-
"label": "transform",
|
|
1997
|
-
"variant": "secondary"
|
|
1998
|
-
},
|
|
1999
|
-
{
|
|
2000
|
-
"type": "badge",
|
|
2001
|
-
"label": "validate",
|
|
2002
|
-
"variant": "secondary"
|
|
2003
|
-
},
|
|
2004
1895
|
{
|
|
2005
1896
|
"type": "badge",
|
|
2006
|
-
"label": "
|
|
2007
|
-
"variant": "secondary"
|
|
1897
|
+
"label": "@entity.provider"
|
|
2008
1898
|
},
|
|
2009
1899
|
{
|
|
2010
1900
|
"type": "badge",
|
|
2011
|
-
"label": "
|
|
2012
|
-
"variant": "secondary"
|
|
1901
|
+
"label": "@entity.model"
|
|
2013
1902
|
}
|
|
2014
1903
|
]
|
|
2015
1904
|
},
|
|
@@ -2020,7 +1909,7 @@
|
|
|
2020
1909
|
"submitEvent": "SAVE",
|
|
2021
1910
|
"cancelEvent": "CLOSE",
|
|
2022
1911
|
"fields": [
|
|
2023
|
-
"
|
|
1912
|
+
"prompt"
|
|
2024
1913
|
]
|
|
2025
1914
|
}
|
|
2026
1915
|
]
|
|
@@ -2089,7 +1978,7 @@
|
|
|
2089
1978
|
"children": [
|
|
2090
1979
|
{
|
|
2091
1980
|
"type": "icon",
|
|
2092
|
-
"name": "
|
|
1981
|
+
"name": "sparkles",
|
|
2093
1982
|
"size": "lg"
|
|
2094
1983
|
},
|
|
2095
1984
|
{
|
|
@@ -2102,9 +1991,9 @@
|
|
|
2102
1991
|
{
|
|
2103
1992
|
"type": "button",
|
|
2104
1993
|
"label": "Open",
|
|
2105
|
-
"event": "
|
|
1994
|
+
"event": "GENERATE",
|
|
2106
1995
|
"variant": "primary",
|
|
2107
|
-
"icon": "
|
|
1996
|
+
"icon": "sparkles"
|
|
2108
1997
|
}
|
|
2109
1998
|
]
|
|
2110
1999
|
},
|
|
@@ -2113,7 +2002,7 @@
|
|
|
2113
2002
|
},
|
|
2114
2003
|
{
|
|
2115
2004
|
"type": "empty-state",
|
|
2116
|
-
"icon": "
|
|
2005
|
+
"icon": "sparkles",
|
|
2117
2006
|
"title": "Nothing open",
|
|
2118
2007
|
"description": "Click Open to view details in a modal overlay."
|
|
2119
2008
|
}
|
|
@@ -2142,7 +2031,7 @@
|
|
|
2142
2031
|
],
|
|
2143
2032
|
[
|
|
2144
2033
|
"emit",
|
|
2145
|
-
"
|
|
2034
|
+
"GENERATED"
|
|
2146
2035
|
],
|
|
2147
2036
|
[
|
|
2148
2037
|
"ref",
|
|
@@ -2190,7 +2079,7 @@
|
|
|
2190
2079
|
"children": [
|
|
2191
2080
|
{
|
|
2192
2081
|
"type": "icon",
|
|
2193
|
-
"name": "
|
|
2082
|
+
"name": "sparkles",
|
|
2194
2083
|
"size": "lg"
|
|
2195
2084
|
},
|
|
2196
2085
|
{
|
|
@@ -2203,9 +2092,9 @@
|
|
|
2203
2092
|
{
|
|
2204
2093
|
"type": "button",
|
|
2205
2094
|
"label": "Open",
|
|
2206
|
-
"event": "
|
|
2095
|
+
"event": "GENERATE",
|
|
2207
2096
|
"variant": "primary",
|
|
2208
|
-
"icon": "
|
|
2097
|
+
"icon": "sparkles"
|
|
2209
2098
|
}
|
|
2210
2099
|
]
|
|
2211
2100
|
},
|
|
@@ -2214,7 +2103,7 @@
|
|
|
2214
2103
|
},
|
|
2215
2104
|
{
|
|
2216
2105
|
"type": "empty-state",
|
|
2217
|
-
"icon": "
|
|
2106
|
+
"icon": "sparkles",
|
|
2218
2107
|
"title": "Nothing open",
|
|
2219
2108
|
"description": "Click Open to view details in a modal overlay."
|
|
2220
2109
|
}
|
|
@@ -2230,26 +2119,19 @@
|
|
|
2230
2119
|
]
|
|
2231
2120
|
}
|
|
2232
2121
|
]
|
|
2233
|
-
}
|
|
2122
|
+
},
|
|
2123
|
+
"listens": []
|
|
2234
2124
|
},
|
|
2235
2125
|
{
|
|
2236
|
-
"name": "
|
|
2126
|
+
"name": "PlannerMemoryLifecycle",
|
|
2237
2127
|
"linkedEntity": "PipelinePlan",
|
|
2238
2128
|
"category": "interaction",
|
|
2239
|
-
"
|
|
2240
|
-
{
|
|
2241
|
-
"event": "GENERATED",
|
|
2242
|
-
"scope": "internal"
|
|
2243
|
-
}
|
|
2244
|
-
],
|
|
2129
|
+
"listens": [],
|
|
2245
2130
|
"stateMachine": {
|
|
2246
2131
|
"states": [
|
|
2247
2132
|
{
|
|
2248
|
-
"name": "
|
|
2133
|
+
"name": "browsing",
|
|
2249
2134
|
"isInitial": true
|
|
2250
|
-
},
|
|
2251
|
-
{
|
|
2252
|
-
"name": "open"
|
|
2253
2135
|
}
|
|
2254
2136
|
],
|
|
2255
2137
|
"events": [
|
|
@@ -2258,16 +2140,109 @@
|
|
|
2258
2140
|
"name": "Initialize"
|
|
2259
2141
|
},
|
|
2260
2142
|
{
|
|
2261
|
-
"key": "
|
|
2262
|
-
"name": "
|
|
2143
|
+
"key": "MEMORIZE",
|
|
2144
|
+
"name": "MEMORIZE"
|
|
2263
2145
|
},
|
|
2264
2146
|
{
|
|
2265
|
-
"key": "
|
|
2266
|
-
"name": "
|
|
2147
|
+
"key": "RECALL",
|
|
2148
|
+
"name": "RECALL"
|
|
2267
2149
|
},
|
|
2268
2150
|
{
|
|
2269
|
-
"key": "
|
|
2270
|
-
"name": "
|
|
2151
|
+
"key": "DECAY",
|
|
2152
|
+
"name": "DECAY"
|
|
2153
|
+
},
|
|
2154
|
+
{
|
|
2155
|
+
"key": "PIN",
|
|
2156
|
+
"name": "PIN",
|
|
2157
|
+
"payload": [
|
|
2158
|
+
{
|
|
2159
|
+
"name": "id",
|
|
2160
|
+
"type": "string",
|
|
2161
|
+
"required": true
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"name": "row",
|
|
2165
|
+
"type": "object"
|
|
2166
|
+
}
|
|
2167
|
+
]
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"key": "REINFORCE",
|
|
2171
|
+
"name": "REINFORCE",
|
|
2172
|
+
"payload": [
|
|
2173
|
+
{
|
|
2174
|
+
"name": "id",
|
|
2175
|
+
"type": "string",
|
|
2176
|
+
"required": true
|
|
2177
|
+
},
|
|
2178
|
+
{
|
|
2179
|
+
"name": "row",
|
|
2180
|
+
"type": "object"
|
|
2181
|
+
}
|
|
2182
|
+
]
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
"key": "FORGET",
|
|
2186
|
+
"name": "FORGET",
|
|
2187
|
+
"payload": [
|
|
2188
|
+
{
|
|
2189
|
+
"name": "id",
|
|
2190
|
+
"type": "string",
|
|
2191
|
+
"required": true
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"name": "row",
|
|
2195
|
+
"type": "object"
|
|
2196
|
+
}
|
|
2197
|
+
]
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"key": "MEMORIZED",
|
|
2201
|
+
"name": "MEMORIZED",
|
|
2202
|
+
"payload": [
|
|
2203
|
+
{
|
|
2204
|
+
"name": "data",
|
|
2205
|
+
"type": "object",
|
|
2206
|
+
"required": true
|
|
2207
|
+
}
|
|
2208
|
+
]
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"key": "PINNED",
|
|
2212
|
+
"name": "PINNED",
|
|
2213
|
+
"payload": [
|
|
2214
|
+
{
|
|
2215
|
+
"name": "data",
|
|
2216
|
+
"type": "object",
|
|
2217
|
+
"required": true
|
|
2218
|
+
}
|
|
2219
|
+
]
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
"key": "FORGOT",
|
|
2223
|
+
"name": "FORGOT",
|
|
2224
|
+
"payload": [
|
|
2225
|
+
{
|
|
2226
|
+
"name": "data",
|
|
2227
|
+
"type": "object",
|
|
2228
|
+
"required": true
|
|
2229
|
+
}
|
|
2230
|
+
]
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
"key": "REINFORCED",
|
|
2234
|
+
"name": "REINFORCED",
|
|
2235
|
+
"payload": [
|
|
2236
|
+
{
|
|
2237
|
+
"name": "data",
|
|
2238
|
+
"type": "object",
|
|
2239
|
+
"required": true
|
|
2240
|
+
}
|
|
2241
|
+
]
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"key": "DECAYED",
|
|
2245
|
+
"name": "DECAYED",
|
|
2271
2246
|
"payload": [
|
|
2272
2247
|
{
|
|
2273
2248
|
"name": "data",
|
|
@@ -2279,8 +2254,8 @@
|
|
|
2279
2254
|
],
|
|
2280
2255
|
"transitions": [
|
|
2281
2256
|
{
|
|
2282
|
-
"from": "
|
|
2283
|
-
"to": "
|
|
2257
|
+
"from": "browsing",
|
|
2258
|
+
"to": "browsing",
|
|
2284
2259
|
"event": "INIT",
|
|
2285
2260
|
"effects": [
|
|
2286
2261
|
[
|
|
@@ -2315,543 +2290,60 @@
|
|
|
2315
2290
|
"type": "stack",
|
|
2316
2291
|
"direction": "vertical",
|
|
2317
2292
|
"gap": "lg",
|
|
2293
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
2318
2294
|
"children": [
|
|
2319
2295
|
{
|
|
2320
2296
|
"type": "stack",
|
|
2321
2297
|
"direction": "horizontal",
|
|
2322
2298
|
"gap": "md",
|
|
2323
2299
|
"justify": "space-between",
|
|
2300
|
+
"align": "center",
|
|
2324
2301
|
"children": [
|
|
2325
2302
|
{
|
|
2326
2303
|
"type": "stack",
|
|
2327
2304
|
"direction": "horizontal",
|
|
2328
|
-
"gap": "
|
|
2305
|
+
"gap": "sm",
|
|
2306
|
+
"align": "center",
|
|
2329
2307
|
"children": [
|
|
2330
2308
|
{
|
|
2331
2309
|
"type": "icon",
|
|
2332
|
-
"name": "
|
|
2310
|
+
"name": "brain",
|
|
2333
2311
|
"size": "lg"
|
|
2334
2312
|
},
|
|
2335
2313
|
{
|
|
2336
2314
|
"type": "typography",
|
|
2337
|
-
"content": "PipelinePlan",
|
|
2315
|
+
"content": "PipelinePlan Manager",
|
|
2338
2316
|
"variant": "h2"
|
|
2339
2317
|
}
|
|
2340
2318
|
]
|
|
2341
2319
|
},
|
|
2342
2320
|
{
|
|
2343
|
-
"type": "
|
|
2344
|
-
"
|
|
2345
|
-
"
|
|
2346
|
-
"
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
"to": "open",
|
|
2370
|
-
"event": "GENERATE",
|
|
2371
|
-
"effects": [
|
|
2372
|
-
[
|
|
2373
|
-
"render-ui",
|
|
2374
|
-
"modal",
|
|
2375
|
-
{
|
|
2376
|
-
"type": "stack",
|
|
2377
|
-
"direction": "vertical",
|
|
2378
|
-
"gap": "md",
|
|
2379
|
-
"children": [
|
|
2380
|
-
{
|
|
2381
|
-
"type": "stack",
|
|
2382
|
-
"direction": "horizontal",
|
|
2383
|
-
"gap": "sm",
|
|
2384
|
-
"children": [
|
|
2385
|
-
{
|
|
2386
|
-
"type": "icon",
|
|
2387
|
-
"name": "sparkles",
|
|
2388
|
-
"size": "md"
|
|
2389
|
-
},
|
|
2390
|
-
{
|
|
2391
|
-
"type": "typography",
|
|
2392
|
-
"content": "PipelinePlan",
|
|
2393
|
-
"variant": "h3"
|
|
2394
|
-
}
|
|
2395
|
-
]
|
|
2396
|
-
},
|
|
2397
|
-
{
|
|
2398
|
-
"type": "divider"
|
|
2399
|
-
},
|
|
2400
|
-
{
|
|
2401
|
-
"type": "stack",
|
|
2402
|
-
"direction": "horizontal",
|
|
2403
|
-
"gap": "sm",
|
|
2404
|
-
"children": [
|
|
2405
|
-
{
|
|
2406
|
-
"type": "badge",
|
|
2407
|
-
"label": "@entity.provider"
|
|
2408
|
-
},
|
|
2409
|
-
{
|
|
2410
|
-
"type": "badge",
|
|
2411
|
-
"label": "@entity.model"
|
|
2412
|
-
}
|
|
2413
|
-
]
|
|
2414
|
-
},
|
|
2415
|
-
{
|
|
2416
|
-
"type": "form-section",
|
|
2417
|
-
"entity": "PipelinePlan",
|
|
2418
|
-
"mode": "create",
|
|
2419
|
-
"submitEvent": "SAVE",
|
|
2420
|
-
"cancelEvent": "CLOSE",
|
|
2421
|
-
"fields": [
|
|
2422
|
-
"prompt"
|
|
2423
|
-
]
|
|
2424
|
-
}
|
|
2425
|
-
]
|
|
2426
|
-
}
|
|
2427
|
-
]
|
|
2428
|
-
]
|
|
2429
|
-
},
|
|
2430
|
-
{
|
|
2431
|
-
"from": "open",
|
|
2432
|
-
"to": "closed",
|
|
2433
|
-
"event": "CLOSE",
|
|
2434
|
-
"effects": [
|
|
2435
|
-
[
|
|
2436
|
-
"render-ui",
|
|
2437
|
-
"modal",
|
|
2438
|
-
null
|
|
2439
|
-
],
|
|
2440
|
-
[
|
|
2441
|
-
"notify",
|
|
2442
|
-
"Cancelled",
|
|
2443
|
-
"info"
|
|
2444
|
-
],
|
|
2445
|
-
[
|
|
2446
|
-
"ref",
|
|
2447
|
-
"PipelinePlan"
|
|
2448
|
-
],
|
|
2449
|
-
[
|
|
2450
|
-
"render-ui",
|
|
2451
|
-
"main",
|
|
2452
|
-
{
|
|
2453
|
-
"type": "dashboard-layout",
|
|
2454
|
-
"appName": "Agent Pipeline",
|
|
2455
|
-
"navItems": [
|
|
2456
|
-
{
|
|
2457
|
-
"label": "Pipeline",
|
|
2458
|
-
"href": "/pipeline",
|
|
2459
|
-
"icon": "git-branch"
|
|
2460
|
-
},
|
|
2461
|
-
{
|
|
2462
|
-
"label": "Execution",
|
|
2463
|
-
"href": "/execution",
|
|
2464
|
-
"icon": "play"
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"label": "Logs",
|
|
2468
|
-
"href": "/logs",
|
|
2469
|
-
"icon": "terminal"
|
|
2470
|
-
}
|
|
2471
|
-
],
|
|
2472
|
-
"children": [
|
|
2473
|
-
{
|
|
2474
|
-
"type": "stack",
|
|
2475
|
-
"direction": "vertical",
|
|
2476
|
-
"gap": "lg",
|
|
2477
|
-
"children": [
|
|
2478
|
-
{
|
|
2479
|
-
"type": "stack",
|
|
2480
|
-
"direction": "horizontal",
|
|
2481
|
-
"gap": "md",
|
|
2482
|
-
"justify": "space-between",
|
|
2483
|
-
"children": [
|
|
2484
|
-
{
|
|
2485
|
-
"type": "stack",
|
|
2486
|
-
"direction": "horizontal",
|
|
2487
|
-
"gap": "md",
|
|
2488
|
-
"children": [
|
|
2489
|
-
{
|
|
2490
|
-
"type": "icon",
|
|
2491
|
-
"name": "sparkles",
|
|
2492
|
-
"size": "lg"
|
|
2493
|
-
},
|
|
2494
|
-
{
|
|
2495
|
-
"type": "typography",
|
|
2496
|
-
"content": "PipelinePlan",
|
|
2497
|
-
"variant": "h2"
|
|
2498
|
-
}
|
|
2499
|
-
]
|
|
2500
|
-
},
|
|
2501
|
-
{
|
|
2502
|
-
"type": "button",
|
|
2503
|
-
"label": "Open",
|
|
2504
|
-
"event": "GENERATE",
|
|
2505
|
-
"variant": "primary",
|
|
2506
|
-
"icon": "sparkles"
|
|
2507
|
-
}
|
|
2508
|
-
]
|
|
2509
|
-
},
|
|
2510
|
-
{
|
|
2511
|
-
"type": "divider"
|
|
2512
|
-
},
|
|
2513
|
-
{
|
|
2514
|
-
"type": "empty-state",
|
|
2515
|
-
"icon": "sparkles",
|
|
2516
|
-
"title": "Nothing open",
|
|
2517
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2518
|
-
}
|
|
2519
|
-
]
|
|
2520
|
-
}
|
|
2521
|
-
]
|
|
2522
|
-
}
|
|
2523
|
-
]
|
|
2524
|
-
]
|
|
2525
|
-
},
|
|
2526
|
-
{
|
|
2527
|
-
"from": "open",
|
|
2528
|
-
"to": "closed",
|
|
2529
|
-
"event": "SAVE",
|
|
2530
|
-
"effects": [
|
|
2531
|
-
[
|
|
2532
|
-
"persist",
|
|
2533
|
-
"create",
|
|
2534
|
-
"PipelinePlan",
|
|
2535
|
-
"@payload.data"
|
|
2536
|
-
],
|
|
2537
|
-
[
|
|
2538
|
-
"render-ui",
|
|
2539
|
-
"modal",
|
|
2540
|
-
null
|
|
2541
|
-
],
|
|
2542
|
-
[
|
|
2543
|
-
"emit",
|
|
2544
|
-
"GENERATED"
|
|
2545
|
-
],
|
|
2546
|
-
[
|
|
2547
|
-
"ref",
|
|
2548
|
-
"PipelinePlan"
|
|
2549
|
-
],
|
|
2550
|
-
[
|
|
2551
|
-
"render-ui",
|
|
2552
|
-
"main",
|
|
2553
|
-
{
|
|
2554
|
-
"type": "dashboard-layout",
|
|
2555
|
-
"appName": "Agent Pipeline",
|
|
2556
|
-
"navItems": [
|
|
2557
|
-
{
|
|
2558
|
-
"label": "Pipeline",
|
|
2559
|
-
"href": "/pipeline",
|
|
2560
|
-
"icon": "git-branch"
|
|
2561
|
-
},
|
|
2562
|
-
{
|
|
2563
|
-
"label": "Execution",
|
|
2564
|
-
"href": "/execution",
|
|
2565
|
-
"icon": "play"
|
|
2566
|
-
},
|
|
2567
|
-
{
|
|
2568
|
-
"label": "Logs",
|
|
2569
|
-
"href": "/logs",
|
|
2570
|
-
"icon": "terminal"
|
|
2571
|
-
}
|
|
2572
|
-
],
|
|
2573
|
-
"children": [
|
|
2574
|
-
{
|
|
2575
|
-
"type": "stack",
|
|
2576
|
-
"direction": "vertical",
|
|
2577
|
-
"gap": "lg",
|
|
2578
|
-
"children": [
|
|
2579
|
-
{
|
|
2580
|
-
"type": "stack",
|
|
2581
|
-
"direction": "horizontal",
|
|
2582
|
-
"gap": "md",
|
|
2583
|
-
"justify": "space-between",
|
|
2584
|
-
"children": [
|
|
2585
|
-
{
|
|
2586
|
-
"type": "stack",
|
|
2587
|
-
"direction": "horizontal",
|
|
2588
|
-
"gap": "md",
|
|
2589
|
-
"children": [
|
|
2590
|
-
{
|
|
2591
|
-
"type": "icon",
|
|
2592
|
-
"name": "sparkles",
|
|
2593
|
-
"size": "lg"
|
|
2594
|
-
},
|
|
2595
|
-
{
|
|
2596
|
-
"type": "typography",
|
|
2597
|
-
"content": "PipelinePlan",
|
|
2598
|
-
"variant": "h2"
|
|
2599
|
-
}
|
|
2600
|
-
]
|
|
2601
|
-
},
|
|
2602
|
-
{
|
|
2603
|
-
"type": "button",
|
|
2604
|
-
"label": "Open",
|
|
2605
|
-
"event": "GENERATE",
|
|
2606
|
-
"variant": "primary",
|
|
2607
|
-
"icon": "sparkles"
|
|
2608
|
-
}
|
|
2609
|
-
]
|
|
2610
|
-
},
|
|
2611
|
-
{
|
|
2612
|
-
"type": "divider"
|
|
2613
|
-
},
|
|
2614
|
-
{
|
|
2615
|
-
"type": "empty-state",
|
|
2616
|
-
"icon": "sparkles",
|
|
2617
|
-
"title": "Nothing open",
|
|
2618
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2619
|
-
}
|
|
2620
|
-
]
|
|
2621
|
-
}
|
|
2622
|
-
]
|
|
2623
|
-
}
|
|
2624
|
-
],
|
|
2625
|
-
[
|
|
2626
|
-
"notify",
|
|
2627
|
-
"PipelinePlan created successfully"
|
|
2628
|
-
]
|
|
2629
|
-
]
|
|
2630
|
-
}
|
|
2631
|
-
]
|
|
2632
|
-
}
|
|
2633
|
-
},
|
|
2634
|
-
{
|
|
2635
|
-
"name": "PlannerMemoryLifecycle",
|
|
2636
|
-
"linkedEntity": "PipelinePlan",
|
|
2637
|
-
"category": "interaction",
|
|
2638
|
-
"stateMachine": {
|
|
2639
|
-
"states": [
|
|
2640
|
-
{
|
|
2641
|
-
"name": "browsing",
|
|
2642
|
-
"isInitial": true
|
|
2643
|
-
}
|
|
2644
|
-
],
|
|
2645
|
-
"events": [
|
|
2646
|
-
{
|
|
2647
|
-
"key": "INIT",
|
|
2648
|
-
"name": "Initialize"
|
|
2649
|
-
},
|
|
2650
|
-
{
|
|
2651
|
-
"key": "MEMORIZE",
|
|
2652
|
-
"name": "MEMORIZE"
|
|
2653
|
-
},
|
|
2654
|
-
{
|
|
2655
|
-
"key": "RECALL",
|
|
2656
|
-
"name": "RECALL"
|
|
2657
|
-
},
|
|
2658
|
-
{
|
|
2659
|
-
"key": "DECAY",
|
|
2660
|
-
"name": "DECAY"
|
|
2661
|
-
},
|
|
2662
|
-
{
|
|
2663
|
-
"key": "PIN",
|
|
2664
|
-
"name": "PIN",
|
|
2665
|
-
"payload": [
|
|
2666
|
-
{
|
|
2667
|
-
"name": "id",
|
|
2668
|
-
"type": "string",
|
|
2669
|
-
"required": true
|
|
2670
|
-
},
|
|
2671
|
-
{
|
|
2672
|
-
"name": "row",
|
|
2673
|
-
"type": "object"
|
|
2674
|
-
}
|
|
2675
|
-
]
|
|
2676
|
-
},
|
|
2677
|
-
{
|
|
2678
|
-
"key": "REINFORCE",
|
|
2679
|
-
"name": "REINFORCE",
|
|
2680
|
-
"payload": [
|
|
2681
|
-
{
|
|
2682
|
-
"name": "id",
|
|
2683
|
-
"type": "string",
|
|
2684
|
-
"required": true
|
|
2685
|
-
},
|
|
2686
|
-
{
|
|
2687
|
-
"name": "row",
|
|
2688
|
-
"type": "object"
|
|
2689
|
-
}
|
|
2690
|
-
]
|
|
2691
|
-
},
|
|
2692
|
-
{
|
|
2693
|
-
"key": "FORGET",
|
|
2694
|
-
"name": "FORGET",
|
|
2695
|
-
"payload": [
|
|
2696
|
-
{
|
|
2697
|
-
"name": "id",
|
|
2698
|
-
"type": "string",
|
|
2699
|
-
"required": true
|
|
2700
|
-
},
|
|
2701
|
-
{
|
|
2702
|
-
"name": "row",
|
|
2703
|
-
"type": "object"
|
|
2704
|
-
}
|
|
2705
|
-
]
|
|
2706
|
-
},
|
|
2707
|
-
{
|
|
2708
|
-
"key": "MEMORIZED",
|
|
2709
|
-
"name": "MEMORIZED",
|
|
2710
|
-
"payload": [
|
|
2711
|
-
{
|
|
2712
|
-
"name": "data",
|
|
2713
|
-
"type": "object",
|
|
2714
|
-
"required": true
|
|
2715
|
-
}
|
|
2716
|
-
]
|
|
2717
|
-
},
|
|
2718
|
-
{
|
|
2719
|
-
"key": "PINNED",
|
|
2720
|
-
"name": "PINNED",
|
|
2721
|
-
"payload": [
|
|
2722
|
-
{
|
|
2723
|
-
"name": "data",
|
|
2724
|
-
"type": "object",
|
|
2725
|
-
"required": true
|
|
2726
|
-
}
|
|
2727
|
-
]
|
|
2728
|
-
},
|
|
2729
|
-
{
|
|
2730
|
-
"key": "FORGOT",
|
|
2731
|
-
"name": "FORGOT",
|
|
2732
|
-
"payload": [
|
|
2733
|
-
{
|
|
2734
|
-
"name": "data",
|
|
2735
|
-
"type": "object",
|
|
2736
|
-
"required": true
|
|
2737
|
-
}
|
|
2738
|
-
]
|
|
2739
|
-
},
|
|
2740
|
-
{
|
|
2741
|
-
"key": "REINFORCED",
|
|
2742
|
-
"name": "REINFORCED",
|
|
2743
|
-
"payload": [
|
|
2744
|
-
{
|
|
2745
|
-
"name": "data",
|
|
2746
|
-
"type": "object",
|
|
2747
|
-
"required": true
|
|
2748
|
-
}
|
|
2749
|
-
]
|
|
2750
|
-
},
|
|
2751
|
-
{
|
|
2752
|
-
"key": "DECAYED",
|
|
2753
|
-
"name": "DECAYED",
|
|
2754
|
-
"payload": [
|
|
2755
|
-
{
|
|
2756
|
-
"name": "data",
|
|
2757
|
-
"type": "object",
|
|
2758
|
-
"required": true
|
|
2759
|
-
}
|
|
2760
|
-
]
|
|
2761
|
-
}
|
|
2762
|
-
],
|
|
2763
|
-
"transitions": [
|
|
2764
|
-
{
|
|
2765
|
-
"from": "browsing",
|
|
2766
|
-
"to": "browsing",
|
|
2767
|
-
"event": "INIT",
|
|
2768
|
-
"effects": [
|
|
2769
|
-
[
|
|
2770
|
-
"ref",
|
|
2771
|
-
"PipelinePlan"
|
|
2772
|
-
],
|
|
2773
|
-
[
|
|
2774
|
-
"render-ui",
|
|
2775
|
-
"main",
|
|
2776
|
-
{
|
|
2777
|
-
"type": "dashboard-layout",
|
|
2778
|
-
"appName": "Agent Pipeline",
|
|
2779
|
-
"navItems": [
|
|
2780
|
-
{
|
|
2781
|
-
"label": "Pipeline",
|
|
2782
|
-
"href": "/pipeline",
|
|
2783
|
-
"icon": "git-branch"
|
|
2784
|
-
},
|
|
2785
|
-
{
|
|
2786
|
-
"label": "Execution",
|
|
2787
|
-
"href": "/execution",
|
|
2788
|
-
"icon": "play"
|
|
2789
|
-
},
|
|
2790
|
-
{
|
|
2791
|
-
"label": "Logs",
|
|
2792
|
-
"href": "/logs",
|
|
2793
|
-
"icon": "terminal"
|
|
2794
|
-
}
|
|
2795
|
-
],
|
|
2796
|
-
"children": [
|
|
2797
|
-
{
|
|
2798
|
-
"type": "stack",
|
|
2799
|
-
"direction": "vertical",
|
|
2800
|
-
"gap": "lg",
|
|
2801
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
2802
|
-
"children": [
|
|
2803
|
-
{
|
|
2804
|
-
"type": "stack",
|
|
2805
|
-
"direction": "horizontal",
|
|
2806
|
-
"gap": "md",
|
|
2807
|
-
"justify": "space-between",
|
|
2808
|
-
"align": "center",
|
|
2809
|
-
"children": [
|
|
2810
|
-
{
|
|
2811
|
-
"type": "stack",
|
|
2812
|
-
"direction": "horizontal",
|
|
2813
|
-
"gap": "sm",
|
|
2814
|
-
"align": "center",
|
|
2815
|
-
"children": [
|
|
2816
|
-
{
|
|
2817
|
-
"type": "icon",
|
|
2818
|
-
"name": "brain",
|
|
2819
|
-
"size": "lg"
|
|
2820
|
-
},
|
|
2821
|
-
{
|
|
2822
|
-
"type": "typography",
|
|
2823
|
-
"content": "PipelinePlan Manager",
|
|
2824
|
-
"variant": "h2"
|
|
2825
|
-
}
|
|
2826
|
-
]
|
|
2827
|
-
},
|
|
2828
|
-
{
|
|
2829
|
-
"type": "stack",
|
|
2830
|
-
"direction": "horizontal",
|
|
2831
|
-
"gap": "sm",
|
|
2832
|
-
"children": [
|
|
2833
|
-
{
|
|
2834
|
-
"type": "button",
|
|
2835
|
-
"label": "Memorize",
|
|
2836
|
-
"event": "MEMORIZE",
|
|
2837
|
-
"variant": "primary",
|
|
2838
|
-
"icon": "plus"
|
|
2839
|
-
},
|
|
2840
|
-
{
|
|
2841
|
-
"type": "button",
|
|
2842
|
-
"label": "Recall",
|
|
2843
|
-
"event": "RECALL",
|
|
2844
|
-
"variant": "secondary",
|
|
2845
|
-
"icon": "search"
|
|
2846
|
-
},
|
|
2847
|
-
{
|
|
2848
|
-
"type": "button",
|
|
2849
|
-
"label": "Decay All",
|
|
2850
|
-
"event": "DECAY",
|
|
2851
|
-
"variant": "ghost",
|
|
2852
|
-
"icon": "clock"
|
|
2853
|
-
}
|
|
2854
|
-
]
|
|
2321
|
+
"type": "stack",
|
|
2322
|
+
"direction": "horizontal",
|
|
2323
|
+
"gap": "sm",
|
|
2324
|
+
"children": [
|
|
2325
|
+
{
|
|
2326
|
+
"type": "button",
|
|
2327
|
+
"label": "Memorize",
|
|
2328
|
+
"event": "MEMORIZE",
|
|
2329
|
+
"variant": "primary",
|
|
2330
|
+
"icon": "plus"
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
"type": "button",
|
|
2334
|
+
"label": "Recall",
|
|
2335
|
+
"event": "RECALL",
|
|
2336
|
+
"variant": "secondary",
|
|
2337
|
+
"icon": "search"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"type": "button",
|
|
2341
|
+
"label": "Decay All",
|
|
2342
|
+
"event": "DECAY",
|
|
2343
|
+
"variant": "ghost",
|
|
2344
|
+
"icon": "clock"
|
|
2345
|
+
}
|
|
2346
|
+
]
|
|
2855
2347
|
}
|
|
2856
2348
|
]
|
|
2857
2349
|
},
|
|
@@ -3780,7 +3272,7 @@
|
|
|
3780
3272
|
},
|
|
3781
3273
|
{
|
|
3782
3274
|
"type": "simple-grid",
|
|
3783
|
-
"
|
|
3275
|
+
"cols": 2,
|
|
3784
3276
|
"children": [
|
|
3785
3277
|
{
|
|
3786
3278
|
"type": "stat-display",
|
|
@@ -4082,7 +3574,7 @@
|
|
|
4082
3574
|
},
|
|
4083
3575
|
{
|
|
4084
3576
|
"type": "simple-grid",
|
|
4085
|
-
"
|
|
3577
|
+
"cols": 2,
|
|
4086
3578
|
"children": [
|
|
4087
3579
|
{
|
|
4088
3580
|
"type": "stat-display",
|
|
@@ -4174,7 +3666,7 @@
|
|
|
4174
3666
|
},
|
|
4175
3667
|
{
|
|
4176
3668
|
"type": "simple-grid",
|
|
4177
|
-
"
|
|
3669
|
+
"cols": 2,
|
|
4178
3670
|
"children": [
|
|
4179
3671
|
{
|
|
4180
3672
|
"type": "stat-display",
|
|
@@ -4266,7 +3758,7 @@
|
|
|
4266
3758
|
},
|
|
4267
3759
|
{
|
|
4268
3760
|
"type": "simple-grid",
|
|
4269
|
-
"
|
|
3761
|
+
"cols": 2,
|
|
4270
3762
|
"children": [
|
|
4271
3763
|
{
|
|
4272
3764
|
"type": "stat-display",
|
|
@@ -4638,6 +4130,7 @@
|
|
|
4638
4130
|
]
|
|
4639
4131
|
}
|
|
4640
4132
|
],
|
|
4133
|
+
"listens": [],
|
|
4641
4134
|
"stateMachine": {
|
|
4642
4135
|
"states": [
|
|
4643
4136
|
{
|
|
@@ -4748,8 +4241,24 @@
|
|
|
4748
4241
|
{
|
|
4749
4242
|
"type": "wizard-progress",
|
|
4750
4243
|
"currentStep": "@entity.currentStep",
|
|
4751
|
-
"
|
|
4752
|
-
|
|
4244
|
+
"steps": [
|
|
4245
|
+
{
|
|
4246
|
+
"id": "0",
|
|
4247
|
+
"title": "Plan"
|
|
4248
|
+
},
|
|
4249
|
+
{
|
|
4250
|
+
"id": "1",
|
|
4251
|
+
"title": "Execute"
|
|
4252
|
+
},
|
|
4253
|
+
{
|
|
4254
|
+
"id": "2",
|
|
4255
|
+
"title": "Check"
|
|
4256
|
+
},
|
|
4257
|
+
{
|
|
4258
|
+
"id": "3",
|
|
4259
|
+
"title": "Complete"
|
|
4260
|
+
}
|
|
4261
|
+
]
|
|
4753
4262
|
},
|
|
4754
4263
|
{
|
|
4755
4264
|
"type": "button",
|
|
@@ -4838,8 +4347,24 @@
|
|
|
4838
4347
|
{
|
|
4839
4348
|
"type": "wizard-progress",
|
|
4840
4349
|
"currentStep": "@entity.currentStep",
|
|
4841
|
-
"
|
|
4842
|
-
|
|
4350
|
+
"steps": [
|
|
4351
|
+
{
|
|
4352
|
+
"id": "0",
|
|
4353
|
+
"title": "Plan"
|
|
4354
|
+
},
|
|
4355
|
+
{
|
|
4356
|
+
"id": "1",
|
|
4357
|
+
"title": "Execute"
|
|
4358
|
+
},
|
|
4359
|
+
{
|
|
4360
|
+
"id": "2",
|
|
4361
|
+
"title": "Check"
|
|
4362
|
+
},
|
|
4363
|
+
{
|
|
4364
|
+
"id": "3",
|
|
4365
|
+
"title": "Complete"
|
|
4366
|
+
}
|
|
4367
|
+
]
|
|
4843
4368
|
},
|
|
4844
4369
|
{
|
|
4845
4370
|
"type": "stack",
|
|
@@ -4964,8 +4489,24 @@
|
|
|
4964
4489
|
{
|
|
4965
4490
|
"type": "wizard-progress",
|
|
4966
4491
|
"currentStep": "@entity.currentStep",
|
|
4967
|
-
"
|
|
4968
|
-
|
|
4492
|
+
"steps": [
|
|
4493
|
+
{
|
|
4494
|
+
"id": "0",
|
|
4495
|
+
"title": "Plan"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"id": "1",
|
|
4499
|
+
"title": "Execute"
|
|
4500
|
+
},
|
|
4501
|
+
{
|
|
4502
|
+
"id": "2",
|
|
4503
|
+
"title": "Check"
|
|
4504
|
+
},
|
|
4505
|
+
{
|
|
4506
|
+
"id": "3",
|
|
4507
|
+
"title": "Complete"
|
|
4508
|
+
}
|
|
4509
|
+
]
|
|
4969
4510
|
},
|
|
4970
4511
|
{
|
|
4971
4512
|
"type": "stack",
|
|
@@ -5014,216 +4555,19 @@
|
|
|
5014
4555
|
]
|
|
5015
4556
|
},
|
|
5016
4557
|
{
|
|
5017
|
-
"from": "in_progress",
|
|
5018
|
-
"to": "completed",
|
|
5019
|
-
"event": "COMPLETE",
|
|
5020
|
-
"effects": [
|
|
5021
|
-
[
|
|
5022
|
-
"set",
|
|
5023
|
-
"@entity.status",
|
|
5024
|
-
"completed"
|
|
5025
|
-
],
|
|
5026
|
-
[
|
|
5027
|
-
"set",
|
|
5028
|
-
"@entity.currentStep",
|
|
5029
|
-
"@entity.totalSteps"
|
|
5030
|
-
],
|
|
5031
|
-
[
|
|
5032
|
-
"render-ui",
|
|
5033
|
-
"main",
|
|
5034
|
-
{
|
|
5035
|
-
"type": "dashboard-layout",
|
|
5036
|
-
"appName": "Agent Pipeline",
|
|
5037
|
-
"navItems": [
|
|
5038
|
-
{
|
|
5039
|
-
"label": "Pipeline",
|
|
5040
|
-
"href": "/pipeline",
|
|
5041
|
-
"icon": "git-branch"
|
|
5042
|
-
},
|
|
5043
|
-
{
|
|
5044
|
-
"label": "Execution",
|
|
5045
|
-
"href": "/execution",
|
|
5046
|
-
"icon": "play"
|
|
5047
|
-
},
|
|
5048
|
-
{
|
|
5049
|
-
"label": "Logs",
|
|
5050
|
-
"href": "/logs",
|
|
5051
|
-
"icon": "terminal"
|
|
5052
|
-
}
|
|
5053
|
-
],
|
|
5054
|
-
"children": [
|
|
5055
|
-
{
|
|
5056
|
-
"type": "stack",
|
|
5057
|
-
"direction": "vertical",
|
|
5058
|
-
"gap": "lg",
|
|
5059
|
-
"children": [
|
|
5060
|
-
{
|
|
5061
|
-
"type": "stack",
|
|
5062
|
-
"direction": "horizontal",
|
|
5063
|
-
"gap": "sm",
|
|
5064
|
-
"align": "center",
|
|
5065
|
-
"children": [
|
|
5066
|
-
{
|
|
5067
|
-
"type": "icon",
|
|
5068
|
-
"name": "check-circle",
|
|
5069
|
-
"size": "lg"
|
|
5070
|
-
},
|
|
5071
|
-
{
|
|
5072
|
-
"type": "typography",
|
|
5073
|
-
"content": "PipelineExec",
|
|
5074
|
-
"variant": "h2"
|
|
5075
|
-
},
|
|
5076
|
-
{
|
|
5077
|
-
"type": "badge",
|
|
5078
|
-
"label": "Completed",
|
|
5079
|
-
"variant": "success"
|
|
5080
|
-
}
|
|
5081
|
-
]
|
|
5082
|
-
},
|
|
5083
|
-
{
|
|
5084
|
-
"type": "divider"
|
|
5085
|
-
},
|
|
5086
|
-
{
|
|
5087
|
-
"type": "wizard-progress",
|
|
5088
|
-
"currentStep": "@entity.totalSteps",
|
|
5089
|
-
"totalSteps": "@entity.totalSteps",
|
|
5090
|
-
"steps": "@entity.steps"
|
|
5091
|
-
},
|
|
5092
|
-
{
|
|
5093
|
-
"type": "alert",
|
|
5094
|
-
"variant": "success",
|
|
5095
|
-
"message": "All steps completed successfully."
|
|
5096
|
-
},
|
|
5097
|
-
{
|
|
5098
|
-
"type": "button",
|
|
5099
|
-
"label": "Reset",
|
|
5100
|
-
"event": "RESET",
|
|
5101
|
-
"variant": "ghost",
|
|
5102
|
-
"icon": "rotate-ccw"
|
|
5103
|
-
}
|
|
5104
|
-
]
|
|
5105
|
-
}
|
|
5106
|
-
]
|
|
5107
|
-
}
|
|
5108
|
-
]
|
|
5109
|
-
]
|
|
5110
|
-
},
|
|
5111
|
-
{
|
|
5112
|
-
"from": "in_progress",
|
|
5113
|
-
"to": "failed",
|
|
5114
|
-
"event": "FAIL",
|
|
5115
|
-
"effects": [
|
|
5116
|
-
[
|
|
5117
|
-
"set",
|
|
5118
|
-
"@entity.status",
|
|
5119
|
-
"failed"
|
|
5120
|
-
],
|
|
5121
|
-
[
|
|
5122
|
-
"render-ui",
|
|
5123
|
-
"main",
|
|
5124
|
-
{
|
|
5125
|
-
"type": "dashboard-layout",
|
|
5126
|
-
"appName": "Agent Pipeline",
|
|
5127
|
-
"navItems": [
|
|
5128
|
-
{
|
|
5129
|
-
"label": "Pipeline",
|
|
5130
|
-
"href": "/pipeline",
|
|
5131
|
-
"icon": "git-branch"
|
|
5132
|
-
},
|
|
5133
|
-
{
|
|
5134
|
-
"label": "Execution",
|
|
5135
|
-
"href": "/execution",
|
|
5136
|
-
"icon": "play"
|
|
5137
|
-
},
|
|
5138
|
-
{
|
|
5139
|
-
"label": "Logs",
|
|
5140
|
-
"href": "/logs",
|
|
5141
|
-
"icon": "terminal"
|
|
5142
|
-
}
|
|
5143
|
-
],
|
|
5144
|
-
"children": [
|
|
5145
|
-
{
|
|
5146
|
-
"type": "stack",
|
|
5147
|
-
"direction": "vertical",
|
|
5148
|
-
"gap": "lg",
|
|
5149
|
-
"children": [
|
|
5150
|
-
{
|
|
5151
|
-
"type": "stack",
|
|
5152
|
-
"direction": "horizontal",
|
|
5153
|
-
"gap": "sm",
|
|
5154
|
-
"align": "center",
|
|
5155
|
-
"children": [
|
|
5156
|
-
{
|
|
5157
|
-
"type": "icon",
|
|
5158
|
-
"name": "x-circle",
|
|
5159
|
-
"size": "lg"
|
|
5160
|
-
},
|
|
5161
|
-
{
|
|
5162
|
-
"type": "typography",
|
|
5163
|
-
"content": "PipelineExec",
|
|
5164
|
-
"variant": "h2"
|
|
5165
|
-
},
|
|
5166
|
-
{
|
|
5167
|
-
"type": "badge",
|
|
5168
|
-
"label": "Failed",
|
|
5169
|
-
"variant": "destructive"
|
|
5170
|
-
}
|
|
5171
|
-
]
|
|
5172
|
-
},
|
|
5173
|
-
{
|
|
5174
|
-
"type": "divider"
|
|
5175
|
-
},
|
|
5176
|
-
{
|
|
5177
|
-
"type": "wizard-progress",
|
|
5178
|
-
"currentStep": "@entity.currentStep",
|
|
5179
|
-
"totalSteps": "@entity.totalSteps",
|
|
5180
|
-
"steps": "@entity.steps"
|
|
5181
|
-
},
|
|
5182
|
-
{
|
|
5183
|
-
"type": "alert",
|
|
5184
|
-
"variant": "error",
|
|
5185
|
-
"message": "Pipeline failed at the current step."
|
|
5186
|
-
},
|
|
5187
|
-
{
|
|
5188
|
-
"type": "stack",
|
|
5189
|
-
"direction": "horizontal",
|
|
5190
|
-
"gap": "sm",
|
|
5191
|
-
"children": [
|
|
5192
|
-
{
|
|
5193
|
-
"type": "stat-display",
|
|
5194
|
-
"label": "Failed At Step",
|
|
5195
|
-
"value": "@entity.currentStep"
|
|
5196
|
-
}
|
|
5197
|
-
]
|
|
5198
|
-
},
|
|
5199
|
-
{
|
|
5200
|
-
"type": "button",
|
|
5201
|
-
"label": "Reset",
|
|
5202
|
-
"event": "RESET",
|
|
5203
|
-
"variant": "ghost",
|
|
5204
|
-
"icon": "rotate-ccw"
|
|
5205
|
-
}
|
|
5206
|
-
]
|
|
5207
|
-
}
|
|
5208
|
-
]
|
|
5209
|
-
}
|
|
5210
|
-
]
|
|
5211
|
-
]
|
|
5212
|
-
},
|
|
5213
|
-
{
|
|
5214
|
-
"from": "idle",
|
|
5215
|
-
"to": "idle",
|
|
5216
|
-
"event": "RESET",
|
|
4558
|
+
"from": "in_progress",
|
|
4559
|
+
"to": "completed",
|
|
4560
|
+
"event": "COMPLETE",
|
|
5217
4561
|
"effects": [
|
|
5218
4562
|
[
|
|
5219
4563
|
"set",
|
|
5220
4564
|
"@entity.status",
|
|
5221
|
-
"
|
|
4565
|
+
"completed"
|
|
5222
4566
|
],
|
|
5223
4567
|
[
|
|
5224
4568
|
"set",
|
|
5225
4569
|
"@entity.currentStep",
|
|
5226
|
-
|
|
4570
|
+
"@entity.totalSteps"
|
|
5227
4571
|
],
|
|
5228
4572
|
[
|
|
5229
4573
|
"render-ui",
|
|
@@ -5262,7 +4606,7 @@
|
|
|
5262
4606
|
"children": [
|
|
5263
4607
|
{
|
|
5264
4608
|
"type": "icon",
|
|
5265
|
-
"name": "
|
|
4609
|
+
"name": "check-circle",
|
|
5266
4610
|
"size": "lg"
|
|
5267
4611
|
},
|
|
5268
4612
|
{
|
|
@@ -5272,8 +4616,8 @@
|
|
|
5272
4616
|
},
|
|
5273
4617
|
{
|
|
5274
4618
|
"type": "badge",
|
|
5275
|
-
"label": "
|
|
5276
|
-
"variant": "
|
|
4619
|
+
"label": "Completed",
|
|
4620
|
+
"variant": "success"
|
|
5277
4621
|
}
|
|
5278
4622
|
]
|
|
5279
4623
|
},
|
|
@@ -5282,16 +4626,37 @@
|
|
|
5282
4626
|
},
|
|
5283
4627
|
{
|
|
5284
4628
|
"type": "wizard-progress",
|
|
5285
|
-
"currentStep": "@entity.
|
|
5286
|
-
"
|
|
5287
|
-
|
|
4629
|
+
"currentStep": "@entity.totalSteps",
|
|
4630
|
+
"steps": [
|
|
4631
|
+
{
|
|
4632
|
+
"id": "0",
|
|
4633
|
+
"title": "Plan"
|
|
4634
|
+
},
|
|
4635
|
+
{
|
|
4636
|
+
"id": "1",
|
|
4637
|
+
"title": "Execute"
|
|
4638
|
+
},
|
|
4639
|
+
{
|
|
4640
|
+
"id": "2",
|
|
4641
|
+
"title": "Check"
|
|
4642
|
+
},
|
|
4643
|
+
{
|
|
4644
|
+
"id": "3",
|
|
4645
|
+
"title": "Complete"
|
|
4646
|
+
}
|
|
4647
|
+
]
|
|
4648
|
+
},
|
|
4649
|
+
{
|
|
4650
|
+
"type": "alert",
|
|
4651
|
+
"variant": "success",
|
|
4652
|
+
"message": "All steps completed successfully."
|
|
5288
4653
|
},
|
|
5289
4654
|
{
|
|
5290
4655
|
"type": "button",
|
|
5291
|
-
"label": "
|
|
5292
|
-
"event": "
|
|
5293
|
-
"variant": "
|
|
5294
|
-
"icon": "
|
|
4656
|
+
"label": "Reset",
|
|
4657
|
+
"event": "RESET",
|
|
4658
|
+
"variant": "ghost",
|
|
4659
|
+
"icon": "rotate-ccw"
|
|
5295
4660
|
}
|
|
5296
4661
|
]
|
|
5297
4662
|
}
|
|
@@ -5302,18 +4667,13 @@
|
|
|
5302
4667
|
},
|
|
5303
4668
|
{
|
|
5304
4669
|
"from": "in_progress",
|
|
5305
|
-
"to": "
|
|
5306
|
-
"event": "
|
|
4670
|
+
"to": "failed",
|
|
4671
|
+
"event": "FAIL",
|
|
5307
4672
|
"effects": [
|
|
5308
4673
|
[
|
|
5309
4674
|
"set",
|
|
5310
4675
|
"@entity.status",
|
|
5311
|
-
"
|
|
5312
|
-
],
|
|
5313
|
-
[
|
|
5314
|
-
"set",
|
|
5315
|
-
"@entity.currentStep",
|
|
5316
|
-
0
|
|
4676
|
+
"failed"
|
|
5317
4677
|
],
|
|
5318
4678
|
[
|
|
5319
4679
|
"render-ui",
|
|
@@ -5352,7 +4712,7 @@
|
|
|
5352
4712
|
"children": [
|
|
5353
4713
|
{
|
|
5354
4714
|
"type": "icon",
|
|
5355
|
-
"name": "
|
|
4715
|
+
"name": "x-circle",
|
|
5356
4716
|
"size": "lg"
|
|
5357
4717
|
},
|
|
5358
4718
|
{
|
|
@@ -5362,8 +4722,8 @@
|
|
|
5362
4722
|
},
|
|
5363
4723
|
{
|
|
5364
4724
|
"type": "badge",
|
|
5365
|
-
"label": "
|
|
5366
|
-
"variant": "
|
|
4725
|
+
"label": "Failed",
|
|
4726
|
+
"variant": "destructive"
|
|
5367
4727
|
}
|
|
5368
4728
|
]
|
|
5369
4729
|
},
|
|
@@ -5373,15 +4733,48 @@
|
|
|
5373
4733
|
{
|
|
5374
4734
|
"type": "wizard-progress",
|
|
5375
4735
|
"currentStep": "@entity.currentStep",
|
|
5376
|
-
"
|
|
5377
|
-
|
|
4736
|
+
"steps": [
|
|
4737
|
+
{
|
|
4738
|
+
"id": "0",
|
|
4739
|
+
"title": "Plan"
|
|
4740
|
+
},
|
|
4741
|
+
{
|
|
4742
|
+
"id": "1",
|
|
4743
|
+
"title": "Execute"
|
|
4744
|
+
},
|
|
4745
|
+
{
|
|
4746
|
+
"id": "2",
|
|
4747
|
+
"title": "Check"
|
|
4748
|
+
},
|
|
4749
|
+
{
|
|
4750
|
+
"id": "3",
|
|
4751
|
+
"title": "Complete"
|
|
4752
|
+
}
|
|
4753
|
+
]
|
|
4754
|
+
},
|
|
4755
|
+
{
|
|
4756
|
+
"type": "alert",
|
|
4757
|
+
"variant": "error",
|
|
4758
|
+
"message": "Pipeline failed at the current step."
|
|
4759
|
+
},
|
|
4760
|
+
{
|
|
4761
|
+
"type": "stack",
|
|
4762
|
+
"direction": "horizontal",
|
|
4763
|
+
"gap": "sm",
|
|
4764
|
+
"children": [
|
|
4765
|
+
{
|
|
4766
|
+
"type": "stat-display",
|
|
4767
|
+
"label": "Failed At Step",
|
|
4768
|
+
"value": "@entity.currentStep"
|
|
4769
|
+
}
|
|
4770
|
+
]
|
|
5378
4771
|
},
|
|
5379
4772
|
{
|
|
5380
4773
|
"type": "button",
|
|
5381
|
-
"label": "
|
|
5382
|
-
"event": "
|
|
5383
|
-
"variant": "
|
|
5384
|
-
"icon": "
|
|
4774
|
+
"label": "Reset",
|
|
4775
|
+
"event": "RESET",
|
|
4776
|
+
"variant": "ghost",
|
|
4777
|
+
"icon": "rotate-ccw"
|
|
5385
4778
|
}
|
|
5386
4779
|
]
|
|
5387
4780
|
}
|
|
@@ -5391,7 +4784,7 @@
|
|
|
5391
4784
|
]
|
|
5392
4785
|
},
|
|
5393
4786
|
{
|
|
5394
|
-
"from": "
|
|
4787
|
+
"from": "idle",
|
|
5395
4788
|
"to": "idle",
|
|
5396
4789
|
"event": "RESET",
|
|
5397
4790
|
"effects": [
|
|
@@ -5463,8 +4856,24 @@
|
|
|
5463
4856
|
{
|
|
5464
4857
|
"type": "wizard-progress",
|
|
5465
4858
|
"currentStep": "@entity.currentStep",
|
|
5466
|
-
"
|
|
5467
|
-
|
|
4859
|
+
"steps": [
|
|
4860
|
+
{
|
|
4861
|
+
"id": "0",
|
|
4862
|
+
"title": "Plan"
|
|
4863
|
+
},
|
|
4864
|
+
{
|
|
4865
|
+
"id": "1",
|
|
4866
|
+
"title": "Execute"
|
|
4867
|
+
},
|
|
4868
|
+
{
|
|
4869
|
+
"id": "2",
|
|
4870
|
+
"title": "Check"
|
|
4871
|
+
},
|
|
4872
|
+
{
|
|
4873
|
+
"id": "3",
|
|
4874
|
+
"title": "Complete"
|
|
4875
|
+
}
|
|
4876
|
+
]
|
|
5468
4877
|
},
|
|
5469
4878
|
{
|
|
5470
4879
|
"type": "button",
|
|
@@ -5481,7 +4890,7 @@
|
|
|
5481
4890
|
]
|
|
5482
4891
|
},
|
|
5483
4892
|
{
|
|
5484
|
-
"from": "
|
|
4893
|
+
"from": "in_progress",
|
|
5485
4894
|
"to": "idle",
|
|
5486
4895
|
"event": "RESET",
|
|
5487
4896
|
"effects": [
|
|
@@ -5553,223 +4962,31 @@
|
|
|
5553
4962
|
{
|
|
5554
4963
|
"type": "wizard-progress",
|
|
5555
4964
|
"currentStep": "@entity.currentStep",
|
|
5556
|
-
"
|
|
5557
|
-
"steps": "@entity.steps"
|
|
5558
|
-
},
|
|
5559
|
-
{
|
|
5560
|
-
"type": "button",
|
|
5561
|
-
"label": "Start",
|
|
5562
|
-
"event": "START",
|
|
5563
|
-
"variant": "primary",
|
|
5564
|
-
"icon": "play"
|
|
5565
|
-
}
|
|
5566
|
-
]
|
|
5567
|
-
}
|
|
5568
|
-
]
|
|
5569
|
-
}
|
|
5570
|
-
]
|
|
5571
|
-
]
|
|
5572
|
-
}
|
|
5573
|
-
]
|
|
5574
|
-
}
|
|
5575
|
-
},
|
|
5576
|
-
{
|
|
5577
|
-
"name": "ToolLoopActivityLog",
|
|
5578
|
-
"linkedEntity": "PipelineExec",
|
|
5579
|
-
"category": "interaction",
|
|
5580
|
-
"emits": [
|
|
5581
|
-
{
|
|
5582
|
-
"event": "LOG_ENTRY",
|
|
5583
|
-
"scope": "internal",
|
|
5584
|
-
"payload": [
|
|
5585
|
-
{
|
|
5586
|
-
"name": "action",
|
|
5587
|
-
"type": "string"
|
|
5588
|
-
},
|
|
5589
|
-
{
|
|
5590
|
-
"name": "detail",
|
|
5591
|
-
"type": "string"
|
|
5592
|
-
},
|
|
5593
|
-
{
|
|
5594
|
-
"name": "status",
|
|
5595
|
-
"type": "string"
|
|
5596
|
-
}
|
|
5597
|
-
]
|
|
5598
|
-
}
|
|
5599
|
-
],
|
|
5600
|
-
"stateMachine": {
|
|
5601
|
-
"states": [
|
|
5602
|
-
{
|
|
5603
|
-
"name": "logging",
|
|
5604
|
-
"isInitial": true
|
|
5605
|
-
}
|
|
5606
|
-
],
|
|
5607
|
-
"events": [
|
|
5608
|
-
{
|
|
5609
|
-
"key": "INIT",
|
|
5610
|
-
"name": "Initialize"
|
|
5611
|
-
},
|
|
5612
|
-
{
|
|
5613
|
-
"key": "LOG_ENTRY",
|
|
5614
|
-
"name": "Log Entry",
|
|
5615
|
-
"payload": [
|
|
5616
|
-
{
|
|
5617
|
-
"name": "action",
|
|
5618
|
-
"type": "string",
|
|
5619
|
-
"required": true
|
|
5620
|
-
},
|
|
5621
|
-
{
|
|
5622
|
-
"name": "detail",
|
|
5623
|
-
"type": "string",
|
|
5624
|
-
"required": true
|
|
5625
|
-
},
|
|
5626
|
-
{
|
|
5627
|
-
"name": "status",
|
|
5628
|
-
"type": "string",
|
|
5629
|
-
"required": true
|
|
5630
|
-
}
|
|
5631
|
-
]
|
|
5632
|
-
},
|
|
5633
|
-
{
|
|
5634
|
-
"key": "CLEAR",
|
|
5635
|
-
"name": "Clear Log"
|
|
5636
|
-
}
|
|
5637
|
-
],
|
|
5638
|
-
"transitions": [
|
|
5639
|
-
{
|
|
5640
|
-
"from": "logging",
|
|
5641
|
-
"to": "logging",
|
|
5642
|
-
"event": "INIT",
|
|
5643
|
-
"effects": [
|
|
5644
|
-
[
|
|
5645
|
-
"fetch",
|
|
5646
|
-
"PipelineExec"
|
|
5647
|
-
],
|
|
5648
|
-
[
|
|
5649
|
-
"render-ui",
|
|
5650
|
-
"main",
|
|
5651
|
-
{
|
|
5652
|
-
"type": "dashboard-layout",
|
|
5653
|
-
"appName": "Agent Pipeline",
|
|
5654
|
-
"navItems": [
|
|
5655
|
-
{
|
|
5656
|
-
"label": "Pipeline",
|
|
5657
|
-
"href": "/pipeline",
|
|
5658
|
-
"icon": "git-branch"
|
|
5659
|
-
},
|
|
5660
|
-
{
|
|
5661
|
-
"label": "Execution",
|
|
5662
|
-
"href": "/execution",
|
|
5663
|
-
"icon": "play"
|
|
5664
|
-
},
|
|
5665
|
-
{
|
|
5666
|
-
"label": "Logs",
|
|
5667
|
-
"href": "/logs",
|
|
5668
|
-
"icon": "terminal"
|
|
5669
|
-
}
|
|
5670
|
-
],
|
|
5671
|
-
"children": [
|
|
5672
|
-
{
|
|
5673
|
-
"type": "stack",
|
|
5674
|
-
"direction": "vertical",
|
|
5675
|
-
"gap": "lg",
|
|
5676
|
-
"children": [
|
|
5677
|
-
{
|
|
5678
|
-
"type": "stack",
|
|
5679
|
-
"direction": "horizontal",
|
|
5680
|
-
"gap": "sm",
|
|
5681
|
-
"justify": "space-between",
|
|
5682
|
-
"align": "center",
|
|
5683
|
-
"children": [
|
|
4965
|
+
"steps": [
|
|
5684
4966
|
{
|
|
5685
|
-
"
|
|
5686
|
-
"
|
|
5687
|
-
"gap": "sm",
|
|
5688
|
-
"align": "center",
|
|
5689
|
-
"children": [
|
|
5690
|
-
{
|
|
5691
|
-
"type": "icon",
|
|
5692
|
-
"name": "activity",
|
|
5693
|
-
"size": "lg"
|
|
5694
|
-
},
|
|
5695
|
-
{
|
|
5696
|
-
"type": "typography",
|
|
5697
|
-
"content": "Activity Log",
|
|
5698
|
-
"variant": "h2"
|
|
5699
|
-
}
|
|
5700
|
-
]
|
|
4967
|
+
"id": "0",
|
|
4968
|
+
"title": "Plan"
|
|
5701
4969
|
},
|
|
5702
4970
|
{
|
|
5703
|
-
"
|
|
5704
|
-
"
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
"
|
|
4971
|
+
"id": "1",
|
|
4972
|
+
"title": "Execute"
|
|
4973
|
+
},
|
|
4974
|
+
{
|
|
4975
|
+
"id": "2",
|
|
4976
|
+
"title": "Check"
|
|
4977
|
+
},
|
|
4978
|
+
{
|
|
4979
|
+
"id": "3",
|
|
4980
|
+
"title": "Complete"
|
|
5708
4981
|
}
|
|
5709
4982
|
]
|
|
5710
4983
|
},
|
|
5711
4984
|
{
|
|
5712
|
-
"type": "
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
"
|
|
5716
|
-
"
|
|
5717
|
-
"emptyIcon": "activity",
|
|
5718
|
-
"emptyTitle": "No activity yet",
|
|
5719
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
5720
|
-
"renderItem": [
|
|
5721
|
-
"fn",
|
|
5722
|
-
"item",
|
|
5723
|
-
{
|
|
5724
|
-
"type": "stack",
|
|
5725
|
-
"direction": "vertical",
|
|
5726
|
-
"gap": "xs",
|
|
5727
|
-
"children": [
|
|
5728
|
-
{
|
|
5729
|
-
"type": "stack",
|
|
5730
|
-
"direction": "horizontal",
|
|
5731
|
-
"gap": "sm",
|
|
5732
|
-
"align": "center",
|
|
5733
|
-
"children": [
|
|
5734
|
-
{
|
|
5735
|
-
"type": "badge",
|
|
5736
|
-
"label": "@item.status"
|
|
5737
|
-
},
|
|
5738
|
-
{
|
|
5739
|
-
"type": "typography",
|
|
5740
|
-
"variant": "h4",
|
|
5741
|
-
"content": "@item.action"
|
|
5742
|
-
}
|
|
5743
|
-
]
|
|
5744
|
-
},
|
|
5745
|
-
{
|
|
5746
|
-
"type": "typography",
|
|
5747
|
-
"variant": "body",
|
|
5748
|
-
"color": "muted",
|
|
5749
|
-
"content": "@item.detail"
|
|
5750
|
-
},
|
|
5751
|
-
{
|
|
5752
|
-
"type": "stack",
|
|
5753
|
-
"direction": "horizontal",
|
|
5754
|
-
"gap": "sm",
|
|
5755
|
-
"align": "center",
|
|
5756
|
-
"children": [
|
|
5757
|
-
{
|
|
5758
|
-
"type": "typography",
|
|
5759
|
-
"variant": "caption",
|
|
5760
|
-
"color": "muted",
|
|
5761
|
-
"content": "@item.timestamp"
|
|
5762
|
-
},
|
|
5763
|
-
{
|
|
5764
|
-
"type": "badge",
|
|
5765
|
-
"label": "@item.duration",
|
|
5766
|
-
"variant": "outline"
|
|
5767
|
-
}
|
|
5768
|
-
]
|
|
5769
|
-
}
|
|
5770
|
-
]
|
|
5771
|
-
}
|
|
5772
|
-
]
|
|
4985
|
+
"type": "button",
|
|
4986
|
+
"label": "Start",
|
|
4987
|
+
"event": "START",
|
|
4988
|
+
"variant": "primary",
|
|
4989
|
+
"icon": "play"
|
|
5773
4990
|
}
|
|
5774
4991
|
]
|
|
5775
4992
|
}
|
|
@@ -5779,24 +4996,19 @@
|
|
|
5779
4996
|
]
|
|
5780
4997
|
},
|
|
5781
4998
|
{
|
|
5782
|
-
"from": "
|
|
5783
|
-
"to": "
|
|
5784
|
-
"event": "
|
|
4999
|
+
"from": "completed",
|
|
5000
|
+
"to": "idle",
|
|
5001
|
+
"event": "RESET",
|
|
5785
5002
|
"effects": [
|
|
5786
5003
|
[
|
|
5787
|
-
"
|
|
5788
|
-
"
|
|
5789
|
-
"
|
|
5790
|
-
{
|
|
5791
|
-
"action": "@payload.action",
|
|
5792
|
-
"detail": "@payload.detail",
|
|
5793
|
-
"status": "@payload.status",
|
|
5794
|
-
"timestamp": "@now"
|
|
5795
|
-
}
|
|
5004
|
+
"set",
|
|
5005
|
+
"@entity.status",
|
|
5006
|
+
"idle"
|
|
5796
5007
|
],
|
|
5797
5008
|
[
|
|
5798
|
-
"
|
|
5799
|
-
"
|
|
5009
|
+
"set",
|
|
5010
|
+
"@entity.currentStep",
|
|
5011
|
+
0
|
|
5800
5012
|
],
|
|
5801
5013
|
[
|
|
5802
5014
|
"render-ui",
|
|
@@ -5831,33 +5043,22 @@
|
|
|
5831
5043
|
"type": "stack",
|
|
5832
5044
|
"direction": "horizontal",
|
|
5833
5045
|
"gap": "sm",
|
|
5834
|
-
"justify": "space-between",
|
|
5835
5046
|
"align": "center",
|
|
5836
5047
|
"children": [
|
|
5837
5048
|
{
|
|
5838
|
-
"type": "
|
|
5839
|
-
"
|
|
5840
|
-
"
|
|
5841
|
-
"align": "center",
|
|
5842
|
-
"children": [
|
|
5843
|
-
{
|
|
5844
|
-
"type": "icon",
|
|
5845
|
-
"name": "activity",
|
|
5846
|
-
"size": "lg"
|
|
5847
|
-
},
|
|
5848
|
-
{
|
|
5849
|
-
"type": "typography",
|
|
5850
|
-
"content": "Activity Log",
|
|
5851
|
-
"variant": "h2"
|
|
5852
|
-
}
|
|
5853
|
-
]
|
|
5049
|
+
"type": "icon",
|
|
5050
|
+
"name": "list-ordered",
|
|
5051
|
+
"size": "lg"
|
|
5854
5052
|
},
|
|
5855
5053
|
{
|
|
5856
|
-
"type": "
|
|
5857
|
-
"
|
|
5858
|
-
"
|
|
5859
|
-
|
|
5860
|
-
|
|
5054
|
+
"type": "typography",
|
|
5055
|
+
"content": "PipelineExec",
|
|
5056
|
+
"variant": "h2"
|
|
5057
|
+
},
|
|
5058
|
+
{
|
|
5059
|
+
"type": "badge",
|
|
5060
|
+
"label": "Idle",
|
|
5061
|
+
"variant": "default"
|
|
5861
5062
|
}
|
|
5862
5063
|
]
|
|
5863
5064
|
},
|
|
@@ -5865,89 +5066,55 @@
|
|
|
5865
5066
|
"type": "divider"
|
|
5866
5067
|
},
|
|
5867
5068
|
{
|
|
5868
|
-
"type": "
|
|
5869
|
-
"
|
|
5870
|
-
"
|
|
5871
|
-
"emptyTitle": "No activity yet",
|
|
5872
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
5873
|
-
"renderItem": [
|
|
5874
|
-
"fn",
|
|
5875
|
-
"item",
|
|
5069
|
+
"type": "wizard-progress",
|
|
5070
|
+
"currentStep": "@entity.currentStep",
|
|
5071
|
+
"steps": [
|
|
5876
5072
|
{
|
|
5877
|
-
"
|
|
5878
|
-
"
|
|
5879
|
-
|
|
5880
|
-
|
|
5881
|
-
|
|
5882
|
-
|
|
5883
|
-
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
{
|
|
5892
|
-
"type": "typography",
|
|
5893
|
-
"variant": "h4",
|
|
5894
|
-
"content": "@item.action"
|
|
5895
|
-
}
|
|
5896
|
-
]
|
|
5897
|
-
},
|
|
5898
|
-
{
|
|
5899
|
-
"type": "typography",
|
|
5900
|
-
"variant": "body",
|
|
5901
|
-
"color": "muted",
|
|
5902
|
-
"content": "@item.detail"
|
|
5903
|
-
},
|
|
5904
|
-
{
|
|
5905
|
-
"type": "stack",
|
|
5906
|
-
"direction": "horizontal",
|
|
5907
|
-
"gap": "sm",
|
|
5908
|
-
"align": "center",
|
|
5909
|
-
"children": [
|
|
5910
|
-
{
|
|
5911
|
-
"type": "typography",
|
|
5912
|
-
"variant": "caption",
|
|
5913
|
-
"color": "muted",
|
|
5914
|
-
"content": "@item.timestamp"
|
|
5915
|
-
},
|
|
5916
|
-
{
|
|
5917
|
-
"type": "badge",
|
|
5918
|
-
"label": "@item.duration",
|
|
5919
|
-
"variant": "outline"
|
|
5920
|
-
}
|
|
5921
|
-
]
|
|
5922
|
-
}
|
|
5923
|
-
]
|
|
5073
|
+
"id": "0",
|
|
5074
|
+
"title": "Plan"
|
|
5075
|
+
},
|
|
5076
|
+
{
|
|
5077
|
+
"id": "1",
|
|
5078
|
+
"title": "Execute"
|
|
5079
|
+
},
|
|
5080
|
+
{
|
|
5081
|
+
"id": "2",
|
|
5082
|
+
"title": "Check"
|
|
5083
|
+
},
|
|
5084
|
+
{
|
|
5085
|
+
"id": "3",
|
|
5086
|
+
"title": "Complete"
|
|
5924
5087
|
}
|
|
5925
5088
|
]
|
|
5089
|
+
},
|
|
5090
|
+
{
|
|
5091
|
+
"type": "button",
|
|
5092
|
+
"label": "Start",
|
|
5093
|
+
"event": "START",
|
|
5094
|
+
"variant": "primary",
|
|
5095
|
+
"icon": "play"
|
|
5926
5096
|
}
|
|
5927
5097
|
]
|
|
5928
5098
|
}
|
|
5929
5099
|
]
|
|
5930
5100
|
}
|
|
5931
|
-
],
|
|
5932
|
-
[
|
|
5933
|
-
"notify",
|
|
5934
|
-
"PipelineExec created successfully"
|
|
5935
5101
|
]
|
|
5936
5102
|
]
|
|
5937
5103
|
},
|
|
5938
5104
|
{
|
|
5939
|
-
"from": "
|
|
5940
|
-
"to": "
|
|
5941
|
-
"event": "
|
|
5105
|
+
"from": "failed",
|
|
5106
|
+
"to": "idle",
|
|
5107
|
+
"event": "RESET",
|
|
5942
5108
|
"effects": [
|
|
5943
5109
|
[
|
|
5944
|
-
"
|
|
5945
|
-
"
|
|
5946
|
-
"
|
|
5110
|
+
"set",
|
|
5111
|
+
"@entity.status",
|
|
5112
|
+
"idle"
|
|
5947
5113
|
],
|
|
5948
5114
|
[
|
|
5949
|
-
"
|
|
5950
|
-
"
|
|
5115
|
+
"set",
|
|
5116
|
+
"@entity.currentStep",
|
|
5117
|
+
0
|
|
5951
5118
|
],
|
|
5952
5119
|
[
|
|
5953
5120
|
"render-ui",
|
|
@@ -5982,33 +5149,22 @@
|
|
|
5982
5149
|
"type": "stack",
|
|
5983
5150
|
"direction": "horizontal",
|
|
5984
5151
|
"gap": "sm",
|
|
5985
|
-
"justify": "space-between",
|
|
5986
5152
|
"align": "center",
|
|
5987
5153
|
"children": [
|
|
5988
5154
|
{
|
|
5989
|
-
"type": "
|
|
5990
|
-
"
|
|
5991
|
-
"
|
|
5992
|
-
"align": "center",
|
|
5993
|
-
"children": [
|
|
5994
|
-
{
|
|
5995
|
-
"type": "icon",
|
|
5996
|
-
"name": "activity",
|
|
5997
|
-
"size": "lg"
|
|
5998
|
-
},
|
|
5999
|
-
{
|
|
6000
|
-
"type": "typography",
|
|
6001
|
-
"content": "Activity Log",
|
|
6002
|
-
"variant": "h2"
|
|
6003
|
-
}
|
|
6004
|
-
]
|
|
5155
|
+
"type": "icon",
|
|
5156
|
+
"name": "list-ordered",
|
|
5157
|
+
"size": "lg"
|
|
6005
5158
|
},
|
|
6006
5159
|
{
|
|
6007
|
-
"type": "
|
|
6008
|
-
"
|
|
6009
|
-
"
|
|
6010
|
-
|
|
6011
|
-
|
|
5160
|
+
"type": "typography",
|
|
5161
|
+
"content": "PipelineExec",
|
|
5162
|
+
"variant": "h2"
|
|
5163
|
+
},
|
|
5164
|
+
{
|
|
5165
|
+
"type": "badge",
|
|
5166
|
+
"label": "Idle",
|
|
5167
|
+
"variant": "default"
|
|
6012
5168
|
}
|
|
6013
5169
|
]
|
|
6014
5170
|
},
|
|
@@ -6016,73 +5172,38 @@
|
|
|
6016
5172
|
"type": "divider"
|
|
6017
5173
|
},
|
|
6018
5174
|
{
|
|
6019
|
-
"type": "
|
|
6020
|
-
"
|
|
6021
|
-
"
|
|
6022
|
-
"emptyTitle": "No activity yet",
|
|
6023
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
6024
|
-
"renderItem": [
|
|
6025
|
-
"fn",
|
|
6026
|
-
"item",
|
|
5175
|
+
"type": "wizard-progress",
|
|
5176
|
+
"currentStep": "@entity.currentStep",
|
|
5177
|
+
"steps": [
|
|
6027
5178
|
{
|
|
6028
|
-
"
|
|
6029
|
-
"
|
|
6030
|
-
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
{
|
|
6043
|
-
"type": "typography",
|
|
6044
|
-
"variant": "h4",
|
|
6045
|
-
"content": "@item.action"
|
|
6046
|
-
}
|
|
6047
|
-
]
|
|
6048
|
-
},
|
|
6049
|
-
{
|
|
6050
|
-
"type": "typography",
|
|
6051
|
-
"variant": "body",
|
|
6052
|
-
"color": "muted",
|
|
6053
|
-
"content": "@item.detail"
|
|
6054
|
-
},
|
|
6055
|
-
{
|
|
6056
|
-
"type": "stack",
|
|
6057
|
-
"direction": "horizontal",
|
|
6058
|
-
"gap": "sm",
|
|
6059
|
-
"align": "center",
|
|
6060
|
-
"children": [
|
|
6061
|
-
{
|
|
6062
|
-
"type": "typography",
|
|
6063
|
-
"variant": "caption",
|
|
6064
|
-
"color": "muted",
|
|
6065
|
-
"content": "@item.timestamp"
|
|
6066
|
-
},
|
|
6067
|
-
{
|
|
6068
|
-
"type": "badge",
|
|
6069
|
-
"label": "@item.duration",
|
|
6070
|
-
"variant": "outline"
|
|
6071
|
-
}
|
|
6072
|
-
]
|
|
6073
|
-
}
|
|
6074
|
-
]
|
|
5179
|
+
"id": "0",
|
|
5180
|
+
"title": "Plan"
|
|
5181
|
+
},
|
|
5182
|
+
{
|
|
5183
|
+
"id": "1",
|
|
5184
|
+
"title": "Execute"
|
|
5185
|
+
},
|
|
5186
|
+
{
|
|
5187
|
+
"id": "2",
|
|
5188
|
+
"title": "Check"
|
|
5189
|
+
},
|
|
5190
|
+
{
|
|
5191
|
+
"id": "3",
|
|
5192
|
+
"title": "Complete"
|
|
6075
5193
|
}
|
|
6076
5194
|
]
|
|
5195
|
+
},
|
|
5196
|
+
{
|
|
5197
|
+
"type": "button",
|
|
5198
|
+
"label": "Start",
|
|
5199
|
+
"event": "START",
|
|
5200
|
+
"variant": "primary",
|
|
5201
|
+
"icon": "play"
|
|
6077
5202
|
}
|
|
6078
5203
|
]
|
|
6079
5204
|
}
|
|
6080
5205
|
]
|
|
6081
5206
|
}
|
|
6082
|
-
],
|
|
6083
|
-
[
|
|
6084
|
-
"notify",
|
|
6085
|
-
"PipelineExec deleted successfully"
|
|
6086
5207
|
]
|
|
6087
5208
|
]
|
|
6088
5209
|
}
|
|
@@ -6486,7 +5607,8 @@
|
|
|
6486
5607
|
]
|
|
6487
5608
|
}
|
|
6488
5609
|
]
|
|
6489
|
-
}
|
|
5610
|
+
},
|
|
5611
|
+
"listens": []
|
|
6490
5612
|
},
|
|
6491
5613
|
{
|
|
6492
5614
|
"name": "ToolLoopToolCallFlow",
|
|
@@ -6871,7 +5993,8 @@
|
|
|
6871
5993
|
]
|
|
6872
5994
|
}
|
|
6873
5995
|
]
|
|
6874
|
-
}
|
|
5996
|
+
},
|
|
5997
|
+
"listens": []
|
|
6875
5998
|
},
|
|
6876
5999
|
{
|
|
6877
6000
|
"name": "ToolLoopContextMonitor",
|
|
@@ -8781,7 +7904,8 @@
|
|
|
8781
7904
|
]
|
|
8782
7905
|
}
|
|
8783
7906
|
]
|
|
8784
|
-
}
|
|
7907
|
+
},
|
|
7908
|
+
"listens": []
|
|
8785
7909
|
}
|
|
8786
7910
|
],
|
|
8787
7911
|
"pages": [
|
|
@@ -10788,8 +9912,28 @@
|
|
|
10788
9912
|
{
|
|
10789
9913
|
"type": "wizard-progress",
|
|
10790
9914
|
"currentStep": "@entity.currentStep",
|
|
10791
|
-
"
|
|
10792
|
-
|
|
9915
|
+
"steps": [
|
|
9916
|
+
{
|
|
9917
|
+
"id": "0",
|
|
9918
|
+
"title": "Plan"
|
|
9919
|
+
},
|
|
9920
|
+
{
|
|
9921
|
+
"id": "1",
|
|
9922
|
+
"title": "Execute"
|
|
9923
|
+
},
|
|
9924
|
+
{
|
|
9925
|
+
"id": "2",
|
|
9926
|
+
"title": "Checkpoint"
|
|
9927
|
+
},
|
|
9928
|
+
{
|
|
9929
|
+
"id": "3",
|
|
9930
|
+
"title": "Verify"
|
|
9931
|
+
},
|
|
9932
|
+
{
|
|
9933
|
+
"id": "4",
|
|
9934
|
+
"title": "Done"
|
|
9935
|
+
}
|
|
9936
|
+
]
|
|
10793
9937
|
},
|
|
10794
9938
|
{
|
|
10795
9939
|
"type": "button",
|
|
@@ -10878,8 +10022,28 @@
|
|
|
10878
10022
|
{
|
|
10879
10023
|
"type": "wizard-progress",
|
|
10880
10024
|
"currentStep": "@entity.currentStep",
|
|
10881
|
-
"
|
|
10882
|
-
|
|
10025
|
+
"steps": [
|
|
10026
|
+
{
|
|
10027
|
+
"id": "0",
|
|
10028
|
+
"title": "Plan"
|
|
10029
|
+
},
|
|
10030
|
+
{
|
|
10031
|
+
"id": "1",
|
|
10032
|
+
"title": "Execute"
|
|
10033
|
+
},
|
|
10034
|
+
{
|
|
10035
|
+
"id": "2",
|
|
10036
|
+
"title": "Checkpoint"
|
|
10037
|
+
},
|
|
10038
|
+
{
|
|
10039
|
+
"id": "3",
|
|
10040
|
+
"title": "Verify"
|
|
10041
|
+
},
|
|
10042
|
+
{
|
|
10043
|
+
"id": "4",
|
|
10044
|
+
"title": "Done"
|
|
10045
|
+
}
|
|
10046
|
+
]
|
|
10883
10047
|
},
|
|
10884
10048
|
{
|
|
10885
10049
|
"type": "stack",
|
|
@@ -11004,8 +10168,28 @@
|
|
|
11004
10168
|
{
|
|
11005
10169
|
"type": "wizard-progress",
|
|
11006
10170
|
"currentStep": "@entity.currentStep",
|
|
11007
|
-
"
|
|
11008
|
-
|
|
10171
|
+
"steps": [
|
|
10172
|
+
{
|
|
10173
|
+
"id": "0",
|
|
10174
|
+
"title": "Plan"
|
|
10175
|
+
},
|
|
10176
|
+
{
|
|
10177
|
+
"id": "1",
|
|
10178
|
+
"title": "Execute"
|
|
10179
|
+
},
|
|
10180
|
+
{
|
|
10181
|
+
"id": "2",
|
|
10182
|
+
"title": "Checkpoint"
|
|
10183
|
+
},
|
|
10184
|
+
{
|
|
10185
|
+
"id": "3",
|
|
10186
|
+
"title": "Verify"
|
|
10187
|
+
},
|
|
10188
|
+
{
|
|
10189
|
+
"id": "4",
|
|
10190
|
+
"title": "Done"
|
|
10191
|
+
}
|
|
10192
|
+
]
|
|
11009
10193
|
},
|
|
11010
10194
|
{
|
|
11011
10195
|
"type": "stack",
|
|
@@ -11126,8 +10310,28 @@
|
|
|
11126
10310
|
{
|
|
11127
10311
|
"type": "wizard-progress",
|
|
11128
10312
|
"currentStep": "@entity.totalSteps",
|
|
11129
|
-
"
|
|
11130
|
-
|
|
10313
|
+
"steps": [
|
|
10314
|
+
{
|
|
10315
|
+
"id": "0",
|
|
10316
|
+
"title": "Plan"
|
|
10317
|
+
},
|
|
10318
|
+
{
|
|
10319
|
+
"id": "1",
|
|
10320
|
+
"title": "Execute"
|
|
10321
|
+
},
|
|
10322
|
+
{
|
|
10323
|
+
"id": "2",
|
|
10324
|
+
"title": "Checkpoint"
|
|
10325
|
+
},
|
|
10326
|
+
{
|
|
10327
|
+
"id": "3",
|
|
10328
|
+
"title": "Verify"
|
|
10329
|
+
},
|
|
10330
|
+
{
|
|
10331
|
+
"id": "4",
|
|
10332
|
+
"title": "Done"
|
|
10333
|
+
}
|
|
10334
|
+
]
|
|
11131
10335
|
},
|
|
11132
10336
|
{
|
|
11133
10337
|
"type": "alert",
|
|
@@ -11216,8 +10420,28 @@
|
|
|
11216
10420
|
{
|
|
11217
10421
|
"type": "wizard-progress",
|
|
11218
10422
|
"currentStep": "@entity.currentStep",
|
|
11219
|
-
"
|
|
11220
|
-
|
|
10423
|
+
"steps": [
|
|
10424
|
+
{
|
|
10425
|
+
"id": "0",
|
|
10426
|
+
"title": "Plan"
|
|
10427
|
+
},
|
|
10428
|
+
{
|
|
10429
|
+
"id": "1",
|
|
10430
|
+
"title": "Execute"
|
|
10431
|
+
},
|
|
10432
|
+
{
|
|
10433
|
+
"id": "2",
|
|
10434
|
+
"title": "Checkpoint"
|
|
10435
|
+
},
|
|
10436
|
+
{
|
|
10437
|
+
"id": "3",
|
|
10438
|
+
"title": "Verify"
|
|
10439
|
+
},
|
|
10440
|
+
{
|
|
10441
|
+
"id": "4",
|
|
10442
|
+
"title": "Done"
|
|
10443
|
+
}
|
|
10444
|
+
]
|
|
11221
10445
|
},
|
|
11222
10446
|
{
|
|
11223
10447
|
"type": "alert",
|
|
@@ -11323,8 +10547,28 @@
|
|
|
11323
10547
|
{
|
|
11324
10548
|
"type": "wizard-progress",
|
|
11325
10549
|
"currentStep": "@entity.currentStep",
|
|
11326
|
-
"
|
|
11327
|
-
|
|
10550
|
+
"steps": [
|
|
10551
|
+
{
|
|
10552
|
+
"id": "0",
|
|
10553
|
+
"title": "Plan"
|
|
10554
|
+
},
|
|
10555
|
+
{
|
|
10556
|
+
"id": "1",
|
|
10557
|
+
"title": "Execute"
|
|
10558
|
+
},
|
|
10559
|
+
{
|
|
10560
|
+
"id": "2",
|
|
10561
|
+
"title": "Checkpoint"
|
|
10562
|
+
},
|
|
10563
|
+
{
|
|
10564
|
+
"id": "3",
|
|
10565
|
+
"title": "Verify"
|
|
10566
|
+
},
|
|
10567
|
+
{
|
|
10568
|
+
"id": "4",
|
|
10569
|
+
"title": "Done"
|
|
10570
|
+
}
|
|
10571
|
+
]
|
|
11328
10572
|
},
|
|
11329
10573
|
{
|
|
11330
10574
|
"type": "button",
|
|
@@ -11413,8 +10657,28 @@
|
|
|
11413
10657
|
{
|
|
11414
10658
|
"type": "wizard-progress",
|
|
11415
10659
|
"currentStep": "@entity.currentStep",
|
|
11416
|
-
"
|
|
11417
|
-
|
|
10660
|
+
"steps": [
|
|
10661
|
+
{
|
|
10662
|
+
"id": "0",
|
|
10663
|
+
"title": "Plan"
|
|
10664
|
+
},
|
|
10665
|
+
{
|
|
10666
|
+
"id": "1",
|
|
10667
|
+
"title": "Execute"
|
|
10668
|
+
},
|
|
10669
|
+
{
|
|
10670
|
+
"id": "2",
|
|
10671
|
+
"title": "Checkpoint"
|
|
10672
|
+
},
|
|
10673
|
+
{
|
|
10674
|
+
"id": "3",
|
|
10675
|
+
"title": "Verify"
|
|
10676
|
+
},
|
|
10677
|
+
{
|
|
10678
|
+
"id": "4",
|
|
10679
|
+
"title": "Done"
|
|
10680
|
+
}
|
|
10681
|
+
]
|
|
11418
10682
|
},
|
|
11419
10683
|
{
|
|
11420
10684
|
"type": "button",
|
|
@@ -11503,8 +10767,28 @@
|
|
|
11503
10767
|
{
|
|
11504
10768
|
"type": "wizard-progress",
|
|
11505
10769
|
"currentStep": "@entity.currentStep",
|
|
11506
|
-
"
|
|
11507
|
-
|
|
10770
|
+
"steps": [
|
|
10771
|
+
{
|
|
10772
|
+
"id": "0",
|
|
10773
|
+
"title": "Plan"
|
|
10774
|
+
},
|
|
10775
|
+
{
|
|
10776
|
+
"id": "1",
|
|
10777
|
+
"title": "Execute"
|
|
10778
|
+
},
|
|
10779
|
+
{
|
|
10780
|
+
"id": "2",
|
|
10781
|
+
"title": "Checkpoint"
|
|
10782
|
+
},
|
|
10783
|
+
{
|
|
10784
|
+
"id": "3",
|
|
10785
|
+
"title": "Verify"
|
|
10786
|
+
},
|
|
10787
|
+
{
|
|
10788
|
+
"id": "4",
|
|
10789
|
+
"title": "Done"
|
|
10790
|
+
}
|
|
10791
|
+
]
|
|
11508
10792
|
},
|
|
11509
10793
|
{
|
|
11510
10794
|
"type": "button",
|
|
@@ -11593,8 +10877,28 @@
|
|
|
11593
10877
|
{
|
|
11594
10878
|
"type": "wizard-progress",
|
|
11595
10879
|
"currentStep": "@entity.currentStep",
|
|
11596
|
-
"
|
|
11597
|
-
|
|
10880
|
+
"steps": [
|
|
10881
|
+
{
|
|
10882
|
+
"id": "0",
|
|
10883
|
+
"title": "Plan"
|
|
10884
|
+
},
|
|
10885
|
+
{
|
|
10886
|
+
"id": "1",
|
|
10887
|
+
"title": "Execute"
|
|
10888
|
+
},
|
|
10889
|
+
{
|
|
10890
|
+
"id": "2",
|
|
10891
|
+
"title": "Checkpoint"
|
|
10892
|
+
},
|
|
10893
|
+
{
|
|
10894
|
+
"id": "3",
|
|
10895
|
+
"title": "Verify"
|
|
10896
|
+
},
|
|
10897
|
+
{
|
|
10898
|
+
"id": "4",
|
|
10899
|
+
"title": "Done"
|
|
10900
|
+
}
|
|
10901
|
+
]
|
|
11598
10902
|
},
|
|
11599
10903
|
{
|
|
11600
10904
|
"type": "button",
|