@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
|
},
|
|
@@ -1291,34 +1296,23 @@
|
|
|
1291
1296
|
}
|
|
1292
1297
|
},
|
|
1293
1298
|
{
|
|
1294
|
-
"name": "
|
|
1299
|
+
"name": "PlannerClassifierFlow",
|
|
1295
1300
|
"linkedEntity": "BuildPlan",
|
|
1296
1301
|
"category": "interaction",
|
|
1297
1302
|
"emits": [
|
|
1298
1303
|
{
|
|
1299
|
-
"event": "
|
|
1300
|
-
"scope": "internal"
|
|
1301
|
-
"payload": [
|
|
1302
|
-
{
|
|
1303
|
-
"name": "action",
|
|
1304
|
-
"type": "string"
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
"name": "detail",
|
|
1308
|
-
"type": "string"
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
"name": "status",
|
|
1312
|
-
"type": "string"
|
|
1313
|
-
}
|
|
1314
|
-
]
|
|
1304
|
+
"event": "CLASSIFIED",
|
|
1305
|
+
"scope": "internal"
|
|
1315
1306
|
}
|
|
1316
1307
|
],
|
|
1317
1308
|
"stateMachine": {
|
|
1318
1309
|
"states": [
|
|
1319
1310
|
{
|
|
1320
|
-
"name": "
|
|
1311
|
+
"name": "closed",
|
|
1321
1312
|
"isInitial": true
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"name": "open"
|
|
1322
1316
|
}
|
|
1323
1317
|
],
|
|
1324
1318
|
"events": [
|
|
@@ -1327,39 +1321,33 @@
|
|
|
1327
1321
|
"name": "Initialize"
|
|
1328
1322
|
},
|
|
1329
1323
|
{
|
|
1330
|
-
"key": "
|
|
1331
|
-
"name": "
|
|
1324
|
+
"key": "CLASSIFY",
|
|
1325
|
+
"name": "Open"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"key": "CLOSE",
|
|
1329
|
+
"name": "Close"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"key": "SAVE",
|
|
1333
|
+
"name": "Save",
|
|
1332
1334
|
"payload": [
|
|
1333
1335
|
{
|
|
1334
|
-
"name": "
|
|
1335
|
-
"type": "
|
|
1336
|
-
"required": true
|
|
1337
|
-
},
|
|
1338
|
-
{
|
|
1339
|
-
"name": "detail",
|
|
1340
|
-
"type": "string",
|
|
1341
|
-
"required": true
|
|
1342
|
-
},
|
|
1343
|
-
{
|
|
1344
|
-
"name": "status",
|
|
1345
|
-
"type": "string",
|
|
1336
|
+
"name": "data",
|
|
1337
|
+
"type": "object",
|
|
1346
1338
|
"required": true
|
|
1347
1339
|
}
|
|
1348
1340
|
]
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
"key": "CLEAR",
|
|
1352
|
-
"name": "Clear Log"
|
|
1353
1341
|
}
|
|
1354
1342
|
],
|
|
1355
1343
|
"transitions": [
|
|
1356
1344
|
{
|
|
1357
|
-
"from": "
|
|
1358
|
-
"to": "
|
|
1345
|
+
"from": "closed",
|
|
1346
|
+
"to": "closed",
|
|
1359
1347
|
"event": "INIT",
|
|
1360
1348
|
"effects": [
|
|
1361
1349
|
[
|
|
1362
|
-
"
|
|
1350
|
+
"ref",
|
|
1363
1351
|
"BuildPlan"
|
|
1364
1352
|
],
|
|
1365
1353
|
[
|
|
@@ -1394,34 +1382,32 @@
|
|
|
1394
1382
|
{
|
|
1395
1383
|
"type": "stack",
|
|
1396
1384
|
"direction": "horizontal",
|
|
1397
|
-
"gap": "
|
|
1385
|
+
"gap": "md",
|
|
1398
1386
|
"justify": "space-between",
|
|
1399
|
-
"align": "center",
|
|
1400
1387
|
"children": [
|
|
1401
1388
|
{
|
|
1402
1389
|
"type": "stack",
|
|
1403
1390
|
"direction": "horizontal",
|
|
1404
|
-
"gap": "
|
|
1405
|
-
"align": "center",
|
|
1391
|
+
"gap": "md",
|
|
1406
1392
|
"children": [
|
|
1407
1393
|
{
|
|
1408
1394
|
"type": "icon",
|
|
1409
|
-
"name": "
|
|
1395
|
+
"name": "tag",
|
|
1410
1396
|
"size": "lg"
|
|
1411
1397
|
},
|
|
1412
1398
|
{
|
|
1413
1399
|
"type": "typography",
|
|
1414
|
-
"content": "
|
|
1400
|
+
"content": "BuildPlan",
|
|
1415
1401
|
"variant": "h2"
|
|
1416
1402
|
}
|
|
1417
1403
|
]
|
|
1418
1404
|
},
|
|
1419
1405
|
{
|
|
1420
1406
|
"type": "button",
|
|
1421
|
-
"label": "
|
|
1422
|
-
"event": "
|
|
1423
|
-
"variant": "
|
|
1424
|
-
"icon": "
|
|
1407
|
+
"label": "Open",
|
|
1408
|
+
"event": "CLASSIFY",
|
|
1409
|
+
"variant": "primary",
|
|
1410
|
+
"icon": "tag"
|
|
1425
1411
|
}
|
|
1426
1412
|
]
|
|
1427
1413
|
},
|
|
@@ -1429,64 +1415,10 @@
|
|
|
1429
1415
|
"type": "divider"
|
|
1430
1416
|
},
|
|
1431
1417
|
{
|
|
1432
|
-
"type": "
|
|
1433
|
-
"
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1436
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1437
|
-
"renderItem": [
|
|
1438
|
-
"fn",
|
|
1439
|
-
"item",
|
|
1440
|
-
{
|
|
1441
|
-
"type": "stack",
|
|
1442
|
-
"direction": "vertical",
|
|
1443
|
-
"gap": "xs",
|
|
1444
|
-
"children": [
|
|
1445
|
-
{
|
|
1446
|
-
"type": "stack",
|
|
1447
|
-
"direction": "horizontal",
|
|
1448
|
-
"gap": "sm",
|
|
1449
|
-
"align": "center",
|
|
1450
|
-
"children": [
|
|
1451
|
-
{
|
|
1452
|
-
"type": "badge",
|
|
1453
|
-
"label": "@item.status"
|
|
1454
|
-
},
|
|
1455
|
-
{
|
|
1456
|
-
"type": "typography",
|
|
1457
|
-
"variant": "h4",
|
|
1458
|
-
"content": "@item.action"
|
|
1459
|
-
}
|
|
1460
|
-
]
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
"type": "typography",
|
|
1464
|
-
"variant": "body",
|
|
1465
|
-
"color": "muted",
|
|
1466
|
-
"content": "@item.detail"
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
"type": "stack",
|
|
1470
|
-
"direction": "horizontal",
|
|
1471
|
-
"gap": "sm",
|
|
1472
|
-
"align": "center",
|
|
1473
|
-
"children": [
|
|
1474
|
-
{
|
|
1475
|
-
"type": "typography",
|
|
1476
|
-
"variant": "caption",
|
|
1477
|
-
"color": "muted",
|
|
1478
|
-
"content": "@item.timestamp"
|
|
1479
|
-
},
|
|
1480
|
-
{
|
|
1481
|
-
"type": "badge",
|
|
1482
|
-
"label": "@item.duration",
|
|
1483
|
-
"variant": "outline"
|
|
1484
|
-
}
|
|
1485
|
-
]
|
|
1486
|
-
}
|
|
1487
|
-
]
|
|
1488
|
-
}
|
|
1489
|
-
]
|
|
1418
|
+
"type": "empty-state",
|
|
1419
|
+
"icon": "tag",
|
|
1420
|
+
"title": "Nothing open",
|
|
1421
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1490
1422
|
}
|
|
1491
1423
|
]
|
|
1492
1424
|
}
|
|
@@ -1496,23 +1428,107 @@
|
|
|
1496
1428
|
]
|
|
1497
1429
|
},
|
|
1498
1430
|
{
|
|
1499
|
-
"from": "
|
|
1500
|
-
"to": "
|
|
1501
|
-
"event": "
|
|
1431
|
+
"from": "closed",
|
|
1432
|
+
"to": "open",
|
|
1433
|
+
"event": "CLASSIFY",
|
|
1502
1434
|
"effects": [
|
|
1503
1435
|
[
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1506
|
-
"BuildPlan",
|
|
1436
|
+
"render-ui",
|
|
1437
|
+
"modal",
|
|
1507
1438
|
{
|
|
1508
|
-
"
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1511
|
-
"
|
|
1439
|
+
"type": "stack",
|
|
1440
|
+
"direction": "vertical",
|
|
1441
|
+
"gap": "md",
|
|
1442
|
+
"children": [
|
|
1443
|
+
{
|
|
1444
|
+
"type": "stack",
|
|
1445
|
+
"direction": "horizontal",
|
|
1446
|
+
"gap": "sm",
|
|
1447
|
+
"children": [
|
|
1448
|
+
{
|
|
1449
|
+
"type": "icon",
|
|
1450
|
+
"name": "tag",
|
|
1451
|
+
"size": "md"
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
"type": "typography",
|
|
1455
|
+
"content": "BuildPlan",
|
|
1456
|
+
"variant": "h3"
|
|
1457
|
+
}
|
|
1458
|
+
]
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"type": "divider"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"type": "stack",
|
|
1465
|
+
"direction": "horizontal",
|
|
1466
|
+
"gap": "sm",
|
|
1467
|
+
"children": [
|
|
1468
|
+
{
|
|
1469
|
+
"type": "typography",
|
|
1470
|
+
"variant": "caption",
|
|
1471
|
+
"content": "Categories:"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"type": "badge",
|
|
1475
|
+
"label": "schema",
|
|
1476
|
+
"variant": "secondary"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"type": "badge",
|
|
1480
|
+
"label": "component",
|
|
1481
|
+
"variant": "secondary"
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
"type": "badge",
|
|
1485
|
+
"label": "trait",
|
|
1486
|
+
"variant": "secondary"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"type": "badge",
|
|
1490
|
+
"label": "page",
|
|
1491
|
+
"variant": "secondary"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"type": "badge",
|
|
1495
|
+
"label": "behavior",
|
|
1496
|
+
"variant": "secondary"
|
|
1497
|
+
}
|
|
1498
|
+
]
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"type": "form-section",
|
|
1502
|
+
"entity": "BuildPlan",
|
|
1503
|
+
"mode": "create",
|
|
1504
|
+
"submitEvent": "SAVE",
|
|
1505
|
+
"cancelEvent": "CLOSE",
|
|
1506
|
+
"fields": [
|
|
1507
|
+
"input"
|
|
1508
|
+
]
|
|
1509
|
+
}
|
|
1510
|
+
]
|
|
1512
1511
|
}
|
|
1512
|
+
]
|
|
1513
|
+
]
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
"from": "open",
|
|
1517
|
+
"to": "closed",
|
|
1518
|
+
"event": "CLOSE",
|
|
1519
|
+
"effects": [
|
|
1520
|
+
[
|
|
1521
|
+
"render-ui",
|
|
1522
|
+
"modal",
|
|
1523
|
+
null
|
|
1513
1524
|
],
|
|
1514
1525
|
[
|
|
1515
|
-
"
|
|
1526
|
+
"notify",
|
|
1527
|
+
"Cancelled",
|
|
1528
|
+
"info"
|
|
1529
|
+
],
|
|
1530
|
+
[
|
|
1531
|
+
"ref",
|
|
1516
1532
|
"BuildPlan"
|
|
1517
1533
|
],
|
|
1518
1534
|
[
|
|
@@ -1547,34 +1563,32 @@
|
|
|
1547
1563
|
{
|
|
1548
1564
|
"type": "stack",
|
|
1549
1565
|
"direction": "horizontal",
|
|
1550
|
-
"gap": "
|
|
1566
|
+
"gap": "md",
|
|
1551
1567
|
"justify": "space-between",
|
|
1552
|
-
"align": "center",
|
|
1553
1568
|
"children": [
|
|
1554
1569
|
{
|
|
1555
1570
|
"type": "stack",
|
|
1556
1571
|
"direction": "horizontal",
|
|
1557
|
-
"gap": "
|
|
1558
|
-
"align": "center",
|
|
1572
|
+
"gap": "md",
|
|
1559
1573
|
"children": [
|
|
1560
1574
|
{
|
|
1561
1575
|
"type": "icon",
|
|
1562
|
-
"name": "
|
|
1576
|
+
"name": "tag",
|
|
1563
1577
|
"size": "lg"
|
|
1564
1578
|
},
|
|
1565
1579
|
{
|
|
1566
1580
|
"type": "typography",
|
|
1567
|
-
"content": "
|
|
1581
|
+
"content": "BuildPlan",
|
|
1568
1582
|
"variant": "h2"
|
|
1569
1583
|
}
|
|
1570
1584
|
]
|
|
1571
1585
|
},
|
|
1572
1586
|
{
|
|
1573
1587
|
"type": "button",
|
|
1574
|
-
"label": "
|
|
1575
|
-
"event": "
|
|
1576
|
-
"variant": "
|
|
1577
|
-
"icon": "
|
|
1588
|
+
"label": "Open",
|
|
1589
|
+
"event": "CLASSIFY",
|
|
1590
|
+
"variant": "primary",
|
|
1591
|
+
"icon": "tag"
|
|
1578
1592
|
}
|
|
1579
1593
|
]
|
|
1580
1594
|
},
|
|
@@ -1582,88 +1596,40 @@
|
|
|
1582
1596
|
"type": "divider"
|
|
1583
1597
|
},
|
|
1584
1598
|
{
|
|
1585
|
-
"type": "
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1590
|
-
"renderItem": [
|
|
1591
|
-
"fn",
|
|
1592
|
-
"item",
|
|
1593
|
-
{
|
|
1594
|
-
"type": "stack",
|
|
1595
|
-
"direction": "vertical",
|
|
1596
|
-
"gap": "xs",
|
|
1597
|
-
"children": [
|
|
1598
|
-
{
|
|
1599
|
-
"type": "stack",
|
|
1600
|
-
"direction": "horizontal",
|
|
1601
|
-
"gap": "sm",
|
|
1602
|
-
"align": "center",
|
|
1603
|
-
"children": [
|
|
1604
|
-
{
|
|
1605
|
-
"type": "badge",
|
|
1606
|
-
"label": "@item.status"
|
|
1607
|
-
},
|
|
1608
|
-
{
|
|
1609
|
-
"type": "typography",
|
|
1610
|
-
"variant": "h4",
|
|
1611
|
-
"content": "@item.action"
|
|
1612
|
-
}
|
|
1613
|
-
]
|
|
1614
|
-
},
|
|
1615
|
-
{
|
|
1616
|
-
"type": "typography",
|
|
1617
|
-
"variant": "body",
|
|
1618
|
-
"color": "muted",
|
|
1619
|
-
"content": "@item.detail"
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
"type": "stack",
|
|
1623
|
-
"direction": "horizontal",
|
|
1624
|
-
"gap": "sm",
|
|
1625
|
-
"align": "center",
|
|
1626
|
-
"children": [
|
|
1627
|
-
{
|
|
1628
|
-
"type": "typography",
|
|
1629
|
-
"variant": "caption",
|
|
1630
|
-
"color": "muted",
|
|
1631
|
-
"content": "@item.timestamp"
|
|
1632
|
-
},
|
|
1633
|
-
{
|
|
1634
|
-
"type": "badge",
|
|
1635
|
-
"label": "@item.duration",
|
|
1636
|
-
"variant": "outline"
|
|
1637
|
-
}
|
|
1638
|
-
]
|
|
1639
|
-
}
|
|
1640
|
-
]
|
|
1641
|
-
}
|
|
1642
|
-
]
|
|
1599
|
+
"type": "empty-state",
|
|
1600
|
+
"icon": "tag",
|
|
1601
|
+
"title": "Nothing open",
|
|
1602
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1643
1603
|
}
|
|
1644
1604
|
]
|
|
1645
1605
|
}
|
|
1646
1606
|
]
|
|
1647
1607
|
}
|
|
1648
|
-
],
|
|
1649
|
-
[
|
|
1650
|
-
"notify",
|
|
1651
|
-
"BuildPlan created successfully"
|
|
1652
1608
|
]
|
|
1653
1609
|
]
|
|
1654
1610
|
},
|
|
1655
1611
|
{
|
|
1656
|
-
"from": "
|
|
1657
|
-
"to": "
|
|
1658
|
-
"event": "
|
|
1612
|
+
"from": "open",
|
|
1613
|
+
"to": "closed",
|
|
1614
|
+
"event": "SAVE",
|
|
1659
1615
|
"effects": [
|
|
1660
1616
|
[
|
|
1661
1617
|
"persist",
|
|
1662
|
-
"
|
|
1663
|
-
"BuildPlan"
|
|
1618
|
+
"create",
|
|
1619
|
+
"BuildPlan",
|
|
1620
|
+
"@payload.data"
|
|
1664
1621
|
],
|
|
1665
1622
|
[
|
|
1666
|
-
"
|
|
1623
|
+
"render-ui",
|
|
1624
|
+
"modal",
|
|
1625
|
+
null
|
|
1626
|
+
],
|
|
1627
|
+
[
|
|
1628
|
+
"emit",
|
|
1629
|
+
"CLASSIFIED"
|
|
1630
|
+
],
|
|
1631
|
+
[
|
|
1632
|
+
"ref",
|
|
1667
1633
|
"BuildPlan"
|
|
1668
1634
|
],
|
|
1669
1635
|
[
|
|
@@ -1698,99 +1664,43 @@
|
|
|
1698
1664
|
{
|
|
1699
1665
|
"type": "stack",
|
|
1700
1666
|
"direction": "horizontal",
|
|
1701
|
-
"gap": "
|
|
1667
|
+
"gap": "md",
|
|
1702
1668
|
"justify": "space-between",
|
|
1703
|
-
"align": "center",
|
|
1704
1669
|
"children": [
|
|
1705
1670
|
{
|
|
1706
1671
|
"type": "stack",
|
|
1707
1672
|
"direction": "horizontal",
|
|
1708
|
-
"gap": "
|
|
1709
|
-
"align": "center",
|
|
1673
|
+
"gap": "md",
|
|
1710
1674
|
"children": [
|
|
1711
1675
|
{
|
|
1712
1676
|
"type": "icon",
|
|
1713
|
-
"name": "
|
|
1677
|
+
"name": "tag",
|
|
1714
1678
|
"size": "lg"
|
|
1715
1679
|
},
|
|
1716
1680
|
{
|
|
1717
1681
|
"type": "typography",
|
|
1718
|
-
"content": "
|
|
1682
|
+
"content": "BuildPlan",
|
|
1719
1683
|
"variant": "h2"
|
|
1720
1684
|
}
|
|
1721
1685
|
]
|
|
1722
1686
|
},
|
|
1723
1687
|
{
|
|
1724
1688
|
"type": "button",
|
|
1725
|
-
"label": "
|
|
1726
|
-
"event": "
|
|
1727
|
-
"variant": "
|
|
1728
|
-
"icon": "
|
|
1729
|
-
}
|
|
1689
|
+
"label": "Open",
|
|
1690
|
+
"event": "CLASSIFY",
|
|
1691
|
+
"variant": "primary",
|
|
1692
|
+
"icon": "tag"
|
|
1693
|
+
}
|
|
1730
1694
|
]
|
|
1731
1695
|
},
|
|
1732
1696
|
{
|
|
1733
1697
|
"type": "divider"
|
|
1734
1698
|
},
|
|
1735
1699
|
{
|
|
1736
|
-
"type": "
|
|
1737
|
-
"
|
|
1738
|
-
"
|
|
1739
|
-
"
|
|
1740
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
1741
|
-
"renderItem": [
|
|
1742
|
-
"fn",
|
|
1743
|
-
"item",
|
|
1744
|
-
{
|
|
1745
|
-
"type": "stack",
|
|
1746
|
-
"direction": "vertical",
|
|
1747
|
-
"gap": "xs",
|
|
1748
|
-
"children": [
|
|
1749
|
-
{
|
|
1750
|
-
"type": "stack",
|
|
1751
|
-
"direction": "horizontal",
|
|
1752
|
-
"gap": "sm",
|
|
1753
|
-
"align": "center",
|
|
1754
|
-
"children": [
|
|
1755
|
-
{
|
|
1756
|
-
"type": "badge",
|
|
1757
|
-
"label": "@item.status"
|
|
1758
|
-
},
|
|
1759
|
-
{
|
|
1760
|
-
"type": "typography",
|
|
1761
|
-
"variant": "h4",
|
|
1762
|
-
"content": "@item.action"
|
|
1763
|
-
}
|
|
1764
|
-
]
|
|
1765
|
-
},
|
|
1766
|
-
{
|
|
1767
|
-
"type": "typography",
|
|
1768
|
-
"variant": "body",
|
|
1769
|
-
"color": "muted",
|
|
1770
|
-
"content": "@item.detail"
|
|
1771
|
-
},
|
|
1772
|
-
{
|
|
1773
|
-
"type": "stack",
|
|
1774
|
-
"direction": "horizontal",
|
|
1775
|
-
"gap": "sm",
|
|
1776
|
-
"align": "center",
|
|
1777
|
-
"children": [
|
|
1778
|
-
{
|
|
1779
|
-
"type": "typography",
|
|
1780
|
-
"variant": "caption",
|
|
1781
|
-
"color": "muted",
|
|
1782
|
-
"content": "@item.timestamp"
|
|
1783
|
-
},
|
|
1784
|
-
{
|
|
1785
|
-
"type": "badge",
|
|
1786
|
-
"label": "@item.duration",
|
|
1787
|
-
"variant": "outline"
|
|
1788
|
-
}
|
|
1789
|
-
]
|
|
1790
|
-
}
|
|
1791
|
-
]
|
|
1792
|
-
}
|
|
1793
|
-
]
|
|
1700
|
+
"type": "empty-state",
|
|
1701
|
+
"icon": "tag",
|
|
1702
|
+
"title": "Nothing open",
|
|
1703
|
+
"description": "Click Open to view details in a modal overlay."
|
|
1794
1704
|
}
|
|
1795
1705
|
]
|
|
1796
1706
|
}
|
|
@@ -1799,20 +1709,21 @@
|
|
|
1799
1709
|
],
|
|
1800
1710
|
[
|
|
1801
1711
|
"notify",
|
|
1802
|
-
"BuildPlan
|
|
1712
|
+
"BuildPlan created successfully"
|
|
1803
1713
|
]
|
|
1804
1714
|
]
|
|
1805
1715
|
}
|
|
1806
1716
|
]
|
|
1807
|
-
}
|
|
1717
|
+
},
|
|
1718
|
+
"listens": []
|
|
1808
1719
|
},
|
|
1809
1720
|
{
|
|
1810
|
-
"name": "
|
|
1721
|
+
"name": "PlannerCompletionFlow",
|
|
1811
1722
|
"linkedEntity": "BuildPlan",
|
|
1812
1723
|
"category": "interaction",
|
|
1813
1724
|
"emits": [
|
|
1814
1725
|
{
|
|
1815
|
-
"event": "
|
|
1726
|
+
"event": "GENERATED",
|
|
1816
1727
|
"scope": "internal"
|
|
1817
1728
|
}
|
|
1818
1729
|
],
|
|
@@ -1832,7 +1743,7 @@
|
|
|
1832
1743
|
"name": "Initialize"
|
|
1833
1744
|
},
|
|
1834
1745
|
{
|
|
1835
|
-
"key": "
|
|
1746
|
+
"key": "GENERATE",
|
|
1836
1747
|
"name": "Open"
|
|
1837
1748
|
},
|
|
1838
1749
|
{
|
|
@@ -1903,7 +1814,7 @@
|
|
|
1903
1814
|
"children": [
|
|
1904
1815
|
{
|
|
1905
1816
|
"type": "icon",
|
|
1906
|
-
"name": "
|
|
1817
|
+
"name": "sparkles",
|
|
1907
1818
|
"size": "lg"
|
|
1908
1819
|
},
|
|
1909
1820
|
{
|
|
@@ -1916,9 +1827,9 @@
|
|
|
1916
1827
|
{
|
|
1917
1828
|
"type": "button",
|
|
1918
1829
|
"label": "Open",
|
|
1919
|
-
"event": "
|
|
1830
|
+
"event": "GENERATE",
|
|
1920
1831
|
"variant": "primary",
|
|
1921
|
-
"icon": "
|
|
1832
|
+
"icon": "sparkles"
|
|
1922
1833
|
}
|
|
1923
1834
|
]
|
|
1924
1835
|
},
|
|
@@ -1927,7 +1838,7 @@
|
|
|
1927
1838
|
},
|
|
1928
1839
|
{
|
|
1929
1840
|
"type": "empty-state",
|
|
1930
|
-
"icon": "
|
|
1841
|
+
"icon": "sparkles",
|
|
1931
1842
|
"title": "Nothing open",
|
|
1932
1843
|
"description": "Click Open to view details in a modal overlay."
|
|
1933
1844
|
}
|
|
@@ -1941,7 +1852,7 @@
|
|
|
1941
1852
|
{
|
|
1942
1853
|
"from": "closed",
|
|
1943
1854
|
"to": "open",
|
|
1944
|
-
"event": "
|
|
1855
|
+
"event": "GENERATE",
|
|
1945
1856
|
"effects": [
|
|
1946
1857
|
[
|
|
1947
1858
|
"render-ui",
|
|
@@ -1958,7 +1869,7 @@
|
|
|
1958
1869
|
"children": [
|
|
1959
1870
|
{
|
|
1960
1871
|
"type": "icon",
|
|
1961
|
-
"name": "
|
|
1872
|
+
"name": "sparkles",
|
|
1962
1873
|
"size": "md"
|
|
1963
1874
|
},
|
|
1964
1875
|
{
|
|
@@ -1976,35 +1887,13 @@
|
|
|
1976
1887
|
"direction": "horizontal",
|
|
1977
1888
|
"gap": "sm",
|
|
1978
1889
|
"children": [
|
|
1979
|
-
{
|
|
1980
|
-
"type": "typography",
|
|
1981
|
-
"variant": "caption",
|
|
1982
|
-
"content": "Categories:"
|
|
1983
|
-
},
|
|
1984
|
-
{
|
|
1985
|
-
"type": "badge",
|
|
1986
|
-
"label": "schema",
|
|
1987
|
-
"variant": "secondary"
|
|
1988
|
-
},
|
|
1989
|
-
{
|
|
1990
|
-
"type": "badge",
|
|
1991
|
-
"label": "component",
|
|
1992
|
-
"variant": "secondary"
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"type": "badge",
|
|
1996
|
-
"label": "trait",
|
|
1997
|
-
"variant": "secondary"
|
|
1998
|
-
},
|
|
1999
1890
|
{
|
|
2000
1891
|
"type": "badge",
|
|
2001
|
-
"label": "
|
|
2002
|
-
"variant": "secondary"
|
|
1892
|
+
"label": "@entity.provider"
|
|
2003
1893
|
},
|
|
2004
1894
|
{
|
|
2005
1895
|
"type": "badge",
|
|
2006
|
-
"label": "
|
|
2007
|
-
"variant": "secondary"
|
|
1896
|
+
"label": "@entity.model"
|
|
2008
1897
|
}
|
|
2009
1898
|
]
|
|
2010
1899
|
},
|
|
@@ -2015,7 +1904,7 @@
|
|
|
2015
1904
|
"submitEvent": "SAVE",
|
|
2016
1905
|
"cancelEvent": "CLOSE",
|
|
2017
1906
|
"fields": [
|
|
2018
|
-
"
|
|
1907
|
+
"prompt"
|
|
2019
1908
|
]
|
|
2020
1909
|
}
|
|
2021
1910
|
]
|
|
@@ -2084,7 +1973,7 @@
|
|
|
2084
1973
|
"children": [
|
|
2085
1974
|
{
|
|
2086
1975
|
"type": "icon",
|
|
2087
|
-
"name": "
|
|
1976
|
+
"name": "sparkles",
|
|
2088
1977
|
"size": "lg"
|
|
2089
1978
|
},
|
|
2090
1979
|
{
|
|
@@ -2097,9 +1986,9 @@
|
|
|
2097
1986
|
{
|
|
2098
1987
|
"type": "button",
|
|
2099
1988
|
"label": "Open",
|
|
2100
|
-
"event": "
|
|
1989
|
+
"event": "GENERATE",
|
|
2101
1990
|
"variant": "primary",
|
|
2102
|
-
"icon": "
|
|
1991
|
+
"icon": "sparkles"
|
|
2103
1992
|
}
|
|
2104
1993
|
]
|
|
2105
1994
|
},
|
|
@@ -2108,7 +1997,7 @@
|
|
|
2108
1997
|
},
|
|
2109
1998
|
{
|
|
2110
1999
|
"type": "empty-state",
|
|
2111
|
-
"icon": "
|
|
2000
|
+
"icon": "sparkles",
|
|
2112
2001
|
"title": "Nothing open",
|
|
2113
2002
|
"description": "Click Open to view details in a modal overlay."
|
|
2114
2003
|
}
|
|
@@ -2137,7 +2026,7 @@
|
|
|
2137
2026
|
],
|
|
2138
2027
|
[
|
|
2139
2028
|
"emit",
|
|
2140
|
-
"
|
|
2029
|
+
"GENERATED"
|
|
2141
2030
|
],
|
|
2142
2031
|
[
|
|
2143
2032
|
"ref",
|
|
@@ -2185,7 +2074,7 @@
|
|
|
2185
2074
|
"children": [
|
|
2186
2075
|
{
|
|
2187
2076
|
"type": "icon",
|
|
2188
|
-
"name": "
|
|
2077
|
+
"name": "sparkles",
|
|
2189
2078
|
"size": "lg"
|
|
2190
2079
|
},
|
|
2191
2080
|
{
|
|
@@ -2198,9 +2087,9 @@
|
|
|
2198
2087
|
{
|
|
2199
2088
|
"type": "button",
|
|
2200
2089
|
"label": "Open",
|
|
2201
|
-
"event": "
|
|
2090
|
+
"event": "GENERATE",
|
|
2202
2091
|
"variant": "primary",
|
|
2203
|
-
"icon": "
|
|
2092
|
+
"icon": "sparkles"
|
|
2204
2093
|
}
|
|
2205
2094
|
]
|
|
2206
2095
|
},
|
|
@@ -2209,7 +2098,7 @@
|
|
|
2209
2098
|
},
|
|
2210
2099
|
{
|
|
2211
2100
|
"type": "empty-state",
|
|
2212
|
-
"icon": "
|
|
2101
|
+
"icon": "sparkles",
|
|
2213
2102
|
"title": "Nothing open",
|
|
2214
2103
|
"description": "Click Open to view details in a modal overlay."
|
|
2215
2104
|
}
|
|
@@ -2225,26 +2114,19 @@
|
|
|
2225
2114
|
]
|
|
2226
2115
|
}
|
|
2227
2116
|
]
|
|
2228
|
-
}
|
|
2117
|
+
},
|
|
2118
|
+
"listens": []
|
|
2229
2119
|
},
|
|
2230
2120
|
{
|
|
2231
|
-
"name": "
|
|
2121
|
+
"name": "PlannerMemoryLifecycle",
|
|
2232
2122
|
"linkedEntity": "BuildPlan",
|
|
2233
2123
|
"category": "interaction",
|
|
2234
|
-
"
|
|
2235
|
-
{
|
|
2236
|
-
"event": "GENERATED",
|
|
2237
|
-
"scope": "internal"
|
|
2238
|
-
}
|
|
2239
|
-
],
|
|
2124
|
+
"listens": [],
|
|
2240
2125
|
"stateMachine": {
|
|
2241
2126
|
"states": [
|
|
2242
2127
|
{
|
|
2243
|
-
"name": "
|
|
2128
|
+
"name": "browsing",
|
|
2244
2129
|
"isInitial": true
|
|
2245
|
-
},
|
|
2246
|
-
{
|
|
2247
|
-
"name": "open"
|
|
2248
2130
|
}
|
|
2249
2131
|
],
|
|
2250
2132
|
"events": [
|
|
@@ -2253,16 +2135,109 @@
|
|
|
2253
2135
|
"name": "Initialize"
|
|
2254
2136
|
},
|
|
2255
2137
|
{
|
|
2256
|
-
"key": "
|
|
2257
|
-
"name": "
|
|
2138
|
+
"key": "MEMORIZE",
|
|
2139
|
+
"name": "MEMORIZE"
|
|
2258
2140
|
},
|
|
2259
2141
|
{
|
|
2260
|
-
"key": "
|
|
2261
|
-
"name": "
|
|
2142
|
+
"key": "RECALL",
|
|
2143
|
+
"name": "RECALL"
|
|
2262
2144
|
},
|
|
2263
2145
|
{
|
|
2264
|
-
"key": "
|
|
2265
|
-
"name": "
|
|
2146
|
+
"key": "DECAY",
|
|
2147
|
+
"name": "DECAY"
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"key": "PIN",
|
|
2151
|
+
"name": "PIN",
|
|
2152
|
+
"payload": [
|
|
2153
|
+
{
|
|
2154
|
+
"name": "id",
|
|
2155
|
+
"type": "string",
|
|
2156
|
+
"required": true
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
"name": "row",
|
|
2160
|
+
"type": "object"
|
|
2161
|
+
}
|
|
2162
|
+
]
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
"key": "REINFORCE",
|
|
2166
|
+
"name": "REINFORCE",
|
|
2167
|
+
"payload": [
|
|
2168
|
+
{
|
|
2169
|
+
"name": "id",
|
|
2170
|
+
"type": "string",
|
|
2171
|
+
"required": true
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"name": "row",
|
|
2175
|
+
"type": "object"
|
|
2176
|
+
}
|
|
2177
|
+
]
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"key": "FORGET",
|
|
2181
|
+
"name": "FORGET",
|
|
2182
|
+
"payload": [
|
|
2183
|
+
{
|
|
2184
|
+
"name": "id",
|
|
2185
|
+
"type": "string",
|
|
2186
|
+
"required": true
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"name": "row",
|
|
2190
|
+
"type": "object"
|
|
2191
|
+
}
|
|
2192
|
+
]
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"key": "MEMORIZED",
|
|
2196
|
+
"name": "MEMORIZED",
|
|
2197
|
+
"payload": [
|
|
2198
|
+
{
|
|
2199
|
+
"name": "data",
|
|
2200
|
+
"type": "object",
|
|
2201
|
+
"required": true
|
|
2202
|
+
}
|
|
2203
|
+
]
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
"key": "PINNED",
|
|
2207
|
+
"name": "PINNED",
|
|
2208
|
+
"payload": [
|
|
2209
|
+
{
|
|
2210
|
+
"name": "data",
|
|
2211
|
+
"type": "object",
|
|
2212
|
+
"required": true
|
|
2213
|
+
}
|
|
2214
|
+
]
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"key": "FORGOT",
|
|
2218
|
+
"name": "FORGOT",
|
|
2219
|
+
"payload": [
|
|
2220
|
+
{
|
|
2221
|
+
"name": "data",
|
|
2222
|
+
"type": "object",
|
|
2223
|
+
"required": true
|
|
2224
|
+
}
|
|
2225
|
+
]
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"key": "REINFORCED",
|
|
2229
|
+
"name": "REINFORCED",
|
|
2230
|
+
"payload": [
|
|
2231
|
+
{
|
|
2232
|
+
"name": "data",
|
|
2233
|
+
"type": "object",
|
|
2234
|
+
"required": true
|
|
2235
|
+
}
|
|
2236
|
+
]
|
|
2237
|
+
},
|
|
2238
|
+
{
|
|
2239
|
+
"key": "DECAYED",
|
|
2240
|
+
"name": "DECAYED",
|
|
2266
2241
|
"payload": [
|
|
2267
2242
|
{
|
|
2268
2243
|
"name": "data",
|
|
@@ -2274,8 +2249,8 @@
|
|
|
2274
2249
|
],
|
|
2275
2250
|
"transitions": [
|
|
2276
2251
|
{
|
|
2277
|
-
"from": "
|
|
2278
|
-
"to": "
|
|
2252
|
+
"from": "browsing",
|
|
2253
|
+
"to": "browsing",
|
|
2279
2254
|
"event": "INIT",
|
|
2280
2255
|
"effects": [
|
|
2281
2256
|
[
|
|
@@ -2310,512 +2285,29 @@
|
|
|
2310
2285
|
"type": "stack",
|
|
2311
2286
|
"direction": "vertical",
|
|
2312
2287
|
"gap": "lg",
|
|
2288
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
2313
2289
|
"children": [
|
|
2314
2290
|
{
|
|
2315
2291
|
"type": "stack",
|
|
2316
2292
|
"direction": "horizontal",
|
|
2317
2293
|
"gap": "md",
|
|
2318
2294
|
"justify": "space-between",
|
|
2295
|
+
"align": "center",
|
|
2319
2296
|
"children": [
|
|
2320
2297
|
{
|
|
2321
2298
|
"type": "stack",
|
|
2322
2299
|
"direction": "horizontal",
|
|
2323
|
-
"gap": "
|
|
2300
|
+
"gap": "sm",
|
|
2301
|
+
"align": "center",
|
|
2324
2302
|
"children": [
|
|
2325
2303
|
{
|
|
2326
2304
|
"type": "icon",
|
|
2327
|
-
"name": "
|
|
2305
|
+
"name": "brain",
|
|
2328
2306
|
"size": "lg"
|
|
2329
2307
|
},
|
|
2330
2308
|
{
|
|
2331
2309
|
"type": "typography",
|
|
2332
|
-
"content": "BuildPlan",
|
|
2333
|
-
"variant": "h2"
|
|
2334
|
-
}
|
|
2335
|
-
]
|
|
2336
|
-
},
|
|
2337
|
-
{
|
|
2338
|
-
"type": "button",
|
|
2339
|
-
"label": "Open",
|
|
2340
|
-
"event": "GENERATE",
|
|
2341
|
-
"variant": "primary",
|
|
2342
|
-
"icon": "sparkles"
|
|
2343
|
-
}
|
|
2344
|
-
]
|
|
2345
|
-
},
|
|
2346
|
-
{
|
|
2347
|
-
"type": "divider"
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"type": "empty-state",
|
|
2351
|
-
"icon": "sparkles",
|
|
2352
|
-
"title": "Nothing open",
|
|
2353
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2354
|
-
}
|
|
2355
|
-
]
|
|
2356
|
-
}
|
|
2357
|
-
]
|
|
2358
|
-
}
|
|
2359
|
-
]
|
|
2360
|
-
]
|
|
2361
|
-
},
|
|
2362
|
-
{
|
|
2363
|
-
"from": "closed",
|
|
2364
|
-
"to": "open",
|
|
2365
|
-
"event": "GENERATE",
|
|
2366
|
-
"effects": [
|
|
2367
|
-
[
|
|
2368
|
-
"render-ui",
|
|
2369
|
-
"modal",
|
|
2370
|
-
{
|
|
2371
|
-
"type": "stack",
|
|
2372
|
-
"direction": "vertical",
|
|
2373
|
-
"gap": "md",
|
|
2374
|
-
"children": [
|
|
2375
|
-
{
|
|
2376
|
-
"type": "stack",
|
|
2377
|
-
"direction": "horizontal",
|
|
2378
|
-
"gap": "sm",
|
|
2379
|
-
"children": [
|
|
2380
|
-
{
|
|
2381
|
-
"type": "icon",
|
|
2382
|
-
"name": "sparkles",
|
|
2383
|
-
"size": "md"
|
|
2384
|
-
},
|
|
2385
|
-
{
|
|
2386
|
-
"type": "typography",
|
|
2387
|
-
"content": "BuildPlan",
|
|
2388
|
-
"variant": "h3"
|
|
2389
|
-
}
|
|
2390
|
-
]
|
|
2391
|
-
},
|
|
2392
|
-
{
|
|
2393
|
-
"type": "divider"
|
|
2394
|
-
},
|
|
2395
|
-
{
|
|
2396
|
-
"type": "stack",
|
|
2397
|
-
"direction": "horizontal",
|
|
2398
|
-
"gap": "sm",
|
|
2399
|
-
"children": [
|
|
2400
|
-
{
|
|
2401
|
-
"type": "badge",
|
|
2402
|
-
"label": "@entity.provider"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
"type": "badge",
|
|
2406
|
-
"label": "@entity.model"
|
|
2407
|
-
}
|
|
2408
|
-
]
|
|
2409
|
-
},
|
|
2410
|
-
{
|
|
2411
|
-
"type": "form-section",
|
|
2412
|
-
"entity": "BuildPlan",
|
|
2413
|
-
"mode": "create",
|
|
2414
|
-
"submitEvent": "SAVE",
|
|
2415
|
-
"cancelEvent": "CLOSE",
|
|
2416
|
-
"fields": [
|
|
2417
|
-
"prompt"
|
|
2418
|
-
]
|
|
2419
|
-
}
|
|
2420
|
-
]
|
|
2421
|
-
}
|
|
2422
|
-
]
|
|
2423
|
-
]
|
|
2424
|
-
},
|
|
2425
|
-
{
|
|
2426
|
-
"from": "open",
|
|
2427
|
-
"to": "closed",
|
|
2428
|
-
"event": "CLOSE",
|
|
2429
|
-
"effects": [
|
|
2430
|
-
[
|
|
2431
|
-
"render-ui",
|
|
2432
|
-
"modal",
|
|
2433
|
-
null
|
|
2434
|
-
],
|
|
2435
|
-
[
|
|
2436
|
-
"notify",
|
|
2437
|
-
"Cancelled",
|
|
2438
|
-
"info"
|
|
2439
|
-
],
|
|
2440
|
-
[
|
|
2441
|
-
"ref",
|
|
2442
|
-
"BuildPlan"
|
|
2443
|
-
],
|
|
2444
|
-
[
|
|
2445
|
-
"render-ui",
|
|
2446
|
-
"main",
|
|
2447
|
-
{
|
|
2448
|
-
"type": "dashboard-layout",
|
|
2449
|
-
"appName": "Schema Builder",
|
|
2450
|
-
"navItems": [
|
|
2451
|
-
{
|
|
2452
|
-
"label": "Plan",
|
|
2453
|
-
"href": "/plan",
|
|
2454
|
-
"icon": "clipboard-list"
|
|
2455
|
-
},
|
|
2456
|
-
{
|
|
2457
|
-
"label": "Build",
|
|
2458
|
-
"href": "/build",
|
|
2459
|
-
"icon": "hammer"
|
|
2460
|
-
},
|
|
2461
|
-
{
|
|
2462
|
-
"label": "Fix",
|
|
2463
|
-
"href": "/fix",
|
|
2464
|
-
"icon": "wrench"
|
|
2465
|
-
}
|
|
2466
|
-
],
|
|
2467
|
-
"children": [
|
|
2468
|
-
{
|
|
2469
|
-
"type": "stack",
|
|
2470
|
-
"direction": "vertical",
|
|
2471
|
-
"gap": "lg",
|
|
2472
|
-
"children": [
|
|
2473
|
-
{
|
|
2474
|
-
"type": "stack",
|
|
2475
|
-
"direction": "horizontal",
|
|
2476
|
-
"gap": "md",
|
|
2477
|
-
"justify": "space-between",
|
|
2478
|
-
"children": [
|
|
2479
|
-
{
|
|
2480
|
-
"type": "stack",
|
|
2481
|
-
"direction": "horizontal",
|
|
2482
|
-
"gap": "md",
|
|
2483
|
-
"children": [
|
|
2484
|
-
{
|
|
2485
|
-
"type": "icon",
|
|
2486
|
-
"name": "sparkles",
|
|
2487
|
-
"size": "lg"
|
|
2488
|
-
},
|
|
2489
|
-
{
|
|
2490
|
-
"type": "typography",
|
|
2491
|
-
"content": "BuildPlan",
|
|
2492
|
-
"variant": "h2"
|
|
2493
|
-
}
|
|
2494
|
-
]
|
|
2495
|
-
},
|
|
2496
|
-
{
|
|
2497
|
-
"type": "button",
|
|
2498
|
-
"label": "Open",
|
|
2499
|
-
"event": "GENERATE",
|
|
2500
|
-
"variant": "primary",
|
|
2501
|
-
"icon": "sparkles"
|
|
2502
|
-
}
|
|
2503
|
-
]
|
|
2504
|
-
},
|
|
2505
|
-
{
|
|
2506
|
-
"type": "divider"
|
|
2507
|
-
},
|
|
2508
|
-
{
|
|
2509
|
-
"type": "empty-state",
|
|
2510
|
-
"icon": "sparkles",
|
|
2511
|
-
"title": "Nothing open",
|
|
2512
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2513
|
-
}
|
|
2514
|
-
]
|
|
2515
|
-
}
|
|
2516
|
-
]
|
|
2517
|
-
}
|
|
2518
|
-
]
|
|
2519
|
-
]
|
|
2520
|
-
},
|
|
2521
|
-
{
|
|
2522
|
-
"from": "open",
|
|
2523
|
-
"to": "closed",
|
|
2524
|
-
"event": "SAVE",
|
|
2525
|
-
"effects": [
|
|
2526
|
-
[
|
|
2527
|
-
"persist",
|
|
2528
|
-
"create",
|
|
2529
|
-
"BuildPlan",
|
|
2530
|
-
"@payload.data"
|
|
2531
|
-
],
|
|
2532
|
-
[
|
|
2533
|
-
"render-ui",
|
|
2534
|
-
"modal",
|
|
2535
|
-
null
|
|
2536
|
-
],
|
|
2537
|
-
[
|
|
2538
|
-
"emit",
|
|
2539
|
-
"GENERATED"
|
|
2540
|
-
],
|
|
2541
|
-
[
|
|
2542
|
-
"ref",
|
|
2543
|
-
"BuildPlan"
|
|
2544
|
-
],
|
|
2545
|
-
[
|
|
2546
|
-
"render-ui",
|
|
2547
|
-
"main",
|
|
2548
|
-
{
|
|
2549
|
-
"type": "dashboard-layout",
|
|
2550
|
-
"appName": "Schema Builder",
|
|
2551
|
-
"navItems": [
|
|
2552
|
-
{
|
|
2553
|
-
"label": "Plan",
|
|
2554
|
-
"href": "/plan",
|
|
2555
|
-
"icon": "clipboard-list"
|
|
2556
|
-
},
|
|
2557
|
-
{
|
|
2558
|
-
"label": "Build",
|
|
2559
|
-
"href": "/build",
|
|
2560
|
-
"icon": "hammer"
|
|
2561
|
-
},
|
|
2562
|
-
{
|
|
2563
|
-
"label": "Fix",
|
|
2564
|
-
"href": "/fix",
|
|
2565
|
-
"icon": "wrench"
|
|
2566
|
-
}
|
|
2567
|
-
],
|
|
2568
|
-
"children": [
|
|
2569
|
-
{
|
|
2570
|
-
"type": "stack",
|
|
2571
|
-
"direction": "vertical",
|
|
2572
|
-
"gap": "lg",
|
|
2573
|
-
"children": [
|
|
2574
|
-
{
|
|
2575
|
-
"type": "stack",
|
|
2576
|
-
"direction": "horizontal",
|
|
2577
|
-
"gap": "md",
|
|
2578
|
-
"justify": "space-between",
|
|
2579
|
-
"children": [
|
|
2580
|
-
{
|
|
2581
|
-
"type": "stack",
|
|
2582
|
-
"direction": "horizontal",
|
|
2583
|
-
"gap": "md",
|
|
2584
|
-
"children": [
|
|
2585
|
-
{
|
|
2586
|
-
"type": "icon",
|
|
2587
|
-
"name": "sparkles",
|
|
2588
|
-
"size": "lg"
|
|
2589
|
-
},
|
|
2590
|
-
{
|
|
2591
|
-
"type": "typography",
|
|
2592
|
-
"content": "BuildPlan",
|
|
2593
|
-
"variant": "h2"
|
|
2594
|
-
}
|
|
2595
|
-
]
|
|
2596
|
-
},
|
|
2597
|
-
{
|
|
2598
|
-
"type": "button",
|
|
2599
|
-
"label": "Open",
|
|
2600
|
-
"event": "GENERATE",
|
|
2601
|
-
"variant": "primary",
|
|
2602
|
-
"icon": "sparkles"
|
|
2603
|
-
}
|
|
2604
|
-
]
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
"type": "divider"
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"type": "empty-state",
|
|
2611
|
-
"icon": "sparkles",
|
|
2612
|
-
"title": "Nothing open",
|
|
2613
|
-
"description": "Click Open to view details in a modal overlay."
|
|
2614
|
-
}
|
|
2615
|
-
]
|
|
2616
|
-
}
|
|
2617
|
-
]
|
|
2618
|
-
}
|
|
2619
|
-
],
|
|
2620
|
-
[
|
|
2621
|
-
"notify",
|
|
2622
|
-
"BuildPlan created successfully"
|
|
2623
|
-
]
|
|
2624
|
-
]
|
|
2625
|
-
}
|
|
2626
|
-
]
|
|
2627
|
-
}
|
|
2628
|
-
},
|
|
2629
|
-
{
|
|
2630
|
-
"name": "PlannerMemoryLifecycle",
|
|
2631
|
-
"linkedEntity": "BuildPlan",
|
|
2632
|
-
"category": "interaction",
|
|
2633
|
-
"stateMachine": {
|
|
2634
|
-
"states": [
|
|
2635
|
-
{
|
|
2636
|
-
"name": "browsing",
|
|
2637
|
-
"isInitial": true
|
|
2638
|
-
}
|
|
2639
|
-
],
|
|
2640
|
-
"events": [
|
|
2641
|
-
{
|
|
2642
|
-
"key": "INIT",
|
|
2643
|
-
"name": "Initialize"
|
|
2644
|
-
},
|
|
2645
|
-
{
|
|
2646
|
-
"key": "MEMORIZE",
|
|
2647
|
-
"name": "MEMORIZE"
|
|
2648
|
-
},
|
|
2649
|
-
{
|
|
2650
|
-
"key": "RECALL",
|
|
2651
|
-
"name": "RECALL"
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"key": "DECAY",
|
|
2655
|
-
"name": "DECAY"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"key": "PIN",
|
|
2659
|
-
"name": "PIN",
|
|
2660
|
-
"payload": [
|
|
2661
|
-
{
|
|
2662
|
-
"name": "id",
|
|
2663
|
-
"type": "string",
|
|
2664
|
-
"required": true
|
|
2665
|
-
},
|
|
2666
|
-
{
|
|
2667
|
-
"name": "row",
|
|
2668
|
-
"type": "object"
|
|
2669
|
-
}
|
|
2670
|
-
]
|
|
2671
|
-
},
|
|
2672
|
-
{
|
|
2673
|
-
"key": "REINFORCE",
|
|
2674
|
-
"name": "REINFORCE",
|
|
2675
|
-
"payload": [
|
|
2676
|
-
{
|
|
2677
|
-
"name": "id",
|
|
2678
|
-
"type": "string",
|
|
2679
|
-
"required": true
|
|
2680
|
-
},
|
|
2681
|
-
{
|
|
2682
|
-
"name": "row",
|
|
2683
|
-
"type": "object"
|
|
2684
|
-
}
|
|
2685
|
-
]
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"key": "FORGET",
|
|
2689
|
-
"name": "FORGET",
|
|
2690
|
-
"payload": [
|
|
2691
|
-
{
|
|
2692
|
-
"name": "id",
|
|
2693
|
-
"type": "string",
|
|
2694
|
-
"required": true
|
|
2695
|
-
},
|
|
2696
|
-
{
|
|
2697
|
-
"name": "row",
|
|
2698
|
-
"type": "object"
|
|
2699
|
-
}
|
|
2700
|
-
]
|
|
2701
|
-
},
|
|
2702
|
-
{
|
|
2703
|
-
"key": "MEMORIZED",
|
|
2704
|
-
"name": "MEMORIZED",
|
|
2705
|
-
"payload": [
|
|
2706
|
-
{
|
|
2707
|
-
"name": "data",
|
|
2708
|
-
"type": "object",
|
|
2709
|
-
"required": true
|
|
2710
|
-
}
|
|
2711
|
-
]
|
|
2712
|
-
},
|
|
2713
|
-
{
|
|
2714
|
-
"key": "PINNED",
|
|
2715
|
-
"name": "PINNED",
|
|
2716
|
-
"payload": [
|
|
2717
|
-
{
|
|
2718
|
-
"name": "data",
|
|
2719
|
-
"type": "object",
|
|
2720
|
-
"required": true
|
|
2721
|
-
}
|
|
2722
|
-
]
|
|
2723
|
-
},
|
|
2724
|
-
{
|
|
2725
|
-
"key": "FORGOT",
|
|
2726
|
-
"name": "FORGOT",
|
|
2727
|
-
"payload": [
|
|
2728
|
-
{
|
|
2729
|
-
"name": "data",
|
|
2730
|
-
"type": "object",
|
|
2731
|
-
"required": true
|
|
2732
|
-
}
|
|
2733
|
-
]
|
|
2734
|
-
},
|
|
2735
|
-
{
|
|
2736
|
-
"key": "REINFORCED",
|
|
2737
|
-
"name": "REINFORCED",
|
|
2738
|
-
"payload": [
|
|
2739
|
-
{
|
|
2740
|
-
"name": "data",
|
|
2741
|
-
"type": "object",
|
|
2742
|
-
"required": true
|
|
2743
|
-
}
|
|
2744
|
-
]
|
|
2745
|
-
},
|
|
2746
|
-
{
|
|
2747
|
-
"key": "DECAYED",
|
|
2748
|
-
"name": "DECAYED",
|
|
2749
|
-
"payload": [
|
|
2750
|
-
{
|
|
2751
|
-
"name": "data",
|
|
2752
|
-
"type": "object",
|
|
2753
|
-
"required": true
|
|
2754
|
-
}
|
|
2755
|
-
]
|
|
2756
|
-
}
|
|
2757
|
-
],
|
|
2758
|
-
"transitions": [
|
|
2759
|
-
{
|
|
2760
|
-
"from": "browsing",
|
|
2761
|
-
"to": "browsing",
|
|
2762
|
-
"event": "INIT",
|
|
2763
|
-
"effects": [
|
|
2764
|
-
[
|
|
2765
|
-
"ref",
|
|
2766
|
-
"BuildPlan"
|
|
2767
|
-
],
|
|
2768
|
-
[
|
|
2769
|
-
"render-ui",
|
|
2770
|
-
"main",
|
|
2771
|
-
{
|
|
2772
|
-
"type": "dashboard-layout",
|
|
2773
|
-
"appName": "Schema Builder",
|
|
2774
|
-
"navItems": [
|
|
2775
|
-
{
|
|
2776
|
-
"label": "Plan",
|
|
2777
|
-
"href": "/plan",
|
|
2778
|
-
"icon": "clipboard-list"
|
|
2779
|
-
},
|
|
2780
|
-
{
|
|
2781
|
-
"label": "Build",
|
|
2782
|
-
"href": "/build",
|
|
2783
|
-
"icon": "hammer"
|
|
2784
|
-
},
|
|
2785
|
-
{
|
|
2786
|
-
"label": "Fix",
|
|
2787
|
-
"href": "/fix",
|
|
2788
|
-
"icon": "wrench"
|
|
2789
|
-
}
|
|
2790
|
-
],
|
|
2791
|
-
"children": [
|
|
2792
|
-
{
|
|
2793
|
-
"type": "stack",
|
|
2794
|
-
"direction": "vertical",
|
|
2795
|
-
"gap": "lg",
|
|
2796
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
2797
|
-
"children": [
|
|
2798
|
-
{
|
|
2799
|
-
"type": "stack",
|
|
2800
|
-
"direction": "horizontal",
|
|
2801
|
-
"gap": "md",
|
|
2802
|
-
"justify": "space-between",
|
|
2803
|
-
"align": "center",
|
|
2804
|
-
"children": [
|
|
2805
|
-
{
|
|
2806
|
-
"type": "stack",
|
|
2807
|
-
"direction": "horizontal",
|
|
2808
|
-
"gap": "sm",
|
|
2809
|
-
"align": "center",
|
|
2810
|
-
"children": [
|
|
2811
|
-
{
|
|
2812
|
-
"type": "icon",
|
|
2813
|
-
"name": "brain",
|
|
2814
|
-
"size": "lg"
|
|
2815
|
-
},
|
|
2816
|
-
{
|
|
2817
|
-
"type": "typography",
|
|
2818
|
-
"content": "BuildPlan Manager",
|
|
2310
|
+
"content": "BuildPlan Manager",
|
|
2819
2311
|
"variant": "h2"
|
|
2820
2312
|
}
|
|
2821
2313
|
]
|
|
@@ -3775,7 +3267,7 @@
|
|
|
3775
3267
|
},
|
|
3776
3268
|
{
|
|
3777
3269
|
"type": "simple-grid",
|
|
3778
|
-
"
|
|
3270
|
+
"cols": 2,
|
|
3779
3271
|
"children": [
|
|
3780
3272
|
{
|
|
3781
3273
|
"type": "stat-display",
|
|
@@ -4077,7 +3569,7 @@
|
|
|
4077
3569
|
},
|
|
4078
3570
|
{
|
|
4079
3571
|
"type": "simple-grid",
|
|
4080
|
-
"
|
|
3572
|
+
"cols": 2,
|
|
4081
3573
|
"children": [
|
|
4082
3574
|
{
|
|
4083
3575
|
"type": "stat-display",
|
|
@@ -4169,7 +3661,7 @@
|
|
|
4169
3661
|
},
|
|
4170
3662
|
{
|
|
4171
3663
|
"type": "simple-grid",
|
|
4172
|
-
"
|
|
3664
|
+
"cols": 2,
|
|
4173
3665
|
"children": [
|
|
4174
3666
|
{
|
|
4175
3667
|
"type": "stat-display",
|
|
@@ -4261,7 +3753,7 @@
|
|
|
4261
3753
|
},
|
|
4262
3754
|
{
|
|
4263
3755
|
"type": "simple-grid",
|
|
4264
|
-
"
|
|
3756
|
+
"cols": 2,
|
|
4265
3757
|
"children": [
|
|
4266
3758
|
{
|
|
4267
3759
|
"type": "stat-display",
|
|
@@ -4606,6 +4098,7 @@
|
|
|
4606
4098
|
]
|
|
4607
4099
|
}
|
|
4608
4100
|
],
|
|
4101
|
+
"listens": [],
|
|
4609
4102
|
"stateMachine": {
|
|
4610
4103
|
"states": [
|
|
4611
4104
|
{
|
|
@@ -4716,8 +4209,24 @@
|
|
|
4716
4209
|
{
|
|
4717
4210
|
"type": "wizard-progress",
|
|
4718
4211
|
"currentStep": "@entity.currentStep",
|
|
4719
|
-
"
|
|
4720
|
-
|
|
4212
|
+
"steps": [
|
|
4213
|
+
{
|
|
4214
|
+
"id": "0",
|
|
4215
|
+
"title": "Plan"
|
|
4216
|
+
},
|
|
4217
|
+
{
|
|
4218
|
+
"id": "1",
|
|
4219
|
+
"title": "Execute"
|
|
4220
|
+
},
|
|
4221
|
+
{
|
|
4222
|
+
"id": "2",
|
|
4223
|
+
"title": "Check"
|
|
4224
|
+
},
|
|
4225
|
+
{
|
|
4226
|
+
"id": "3",
|
|
4227
|
+
"title": "Complete"
|
|
4228
|
+
}
|
|
4229
|
+
]
|
|
4721
4230
|
},
|
|
4722
4231
|
{
|
|
4723
4232
|
"type": "button",
|
|
@@ -4806,8 +4315,24 @@
|
|
|
4806
4315
|
{
|
|
4807
4316
|
"type": "wizard-progress",
|
|
4808
4317
|
"currentStep": "@entity.currentStep",
|
|
4809
|
-
"
|
|
4810
|
-
|
|
4318
|
+
"steps": [
|
|
4319
|
+
{
|
|
4320
|
+
"id": "0",
|
|
4321
|
+
"title": "Plan"
|
|
4322
|
+
},
|
|
4323
|
+
{
|
|
4324
|
+
"id": "1",
|
|
4325
|
+
"title": "Execute"
|
|
4326
|
+
},
|
|
4327
|
+
{
|
|
4328
|
+
"id": "2",
|
|
4329
|
+
"title": "Check"
|
|
4330
|
+
},
|
|
4331
|
+
{
|
|
4332
|
+
"id": "3",
|
|
4333
|
+
"title": "Complete"
|
|
4334
|
+
}
|
|
4335
|
+
]
|
|
4811
4336
|
},
|
|
4812
4337
|
{
|
|
4813
4338
|
"type": "stack",
|
|
@@ -4932,8 +4457,24 @@
|
|
|
4932
4457
|
{
|
|
4933
4458
|
"type": "wizard-progress",
|
|
4934
4459
|
"currentStep": "@entity.currentStep",
|
|
4935
|
-
"
|
|
4936
|
-
|
|
4460
|
+
"steps": [
|
|
4461
|
+
{
|
|
4462
|
+
"id": "0",
|
|
4463
|
+
"title": "Plan"
|
|
4464
|
+
},
|
|
4465
|
+
{
|
|
4466
|
+
"id": "1",
|
|
4467
|
+
"title": "Execute"
|
|
4468
|
+
},
|
|
4469
|
+
{
|
|
4470
|
+
"id": "2",
|
|
4471
|
+
"title": "Check"
|
|
4472
|
+
},
|
|
4473
|
+
{
|
|
4474
|
+
"id": "3",
|
|
4475
|
+
"title": "Complete"
|
|
4476
|
+
}
|
|
4477
|
+
]
|
|
4937
4478
|
},
|
|
4938
4479
|
{
|
|
4939
4480
|
"type": "stack",
|
|
@@ -5054,8 +4595,24 @@
|
|
|
5054
4595
|
{
|
|
5055
4596
|
"type": "wizard-progress",
|
|
5056
4597
|
"currentStep": "@entity.totalSteps",
|
|
5057
|
-
"
|
|
5058
|
-
|
|
4598
|
+
"steps": [
|
|
4599
|
+
{
|
|
4600
|
+
"id": "0",
|
|
4601
|
+
"title": "Plan"
|
|
4602
|
+
},
|
|
4603
|
+
{
|
|
4604
|
+
"id": "1",
|
|
4605
|
+
"title": "Execute"
|
|
4606
|
+
},
|
|
4607
|
+
{
|
|
4608
|
+
"id": "2",
|
|
4609
|
+
"title": "Check"
|
|
4610
|
+
},
|
|
4611
|
+
{
|
|
4612
|
+
"id": "3",
|
|
4613
|
+
"title": "Complete"
|
|
4614
|
+
}
|
|
4615
|
+
]
|
|
5059
4616
|
},
|
|
5060
4617
|
{
|
|
5061
4618
|
"type": "alert",
|
|
@@ -5144,8 +4701,24 @@
|
|
|
5144
4701
|
{
|
|
5145
4702
|
"type": "wizard-progress",
|
|
5146
4703
|
"currentStep": "@entity.currentStep",
|
|
5147
|
-
"
|
|
5148
|
-
|
|
4704
|
+
"steps": [
|
|
4705
|
+
{
|
|
4706
|
+
"id": "0",
|
|
4707
|
+
"title": "Plan"
|
|
4708
|
+
},
|
|
4709
|
+
{
|
|
4710
|
+
"id": "1",
|
|
4711
|
+
"title": "Execute"
|
|
4712
|
+
},
|
|
4713
|
+
{
|
|
4714
|
+
"id": "2",
|
|
4715
|
+
"title": "Check"
|
|
4716
|
+
},
|
|
4717
|
+
{
|
|
4718
|
+
"id": "3",
|
|
4719
|
+
"title": "Complete"
|
|
4720
|
+
}
|
|
4721
|
+
]
|
|
5149
4722
|
},
|
|
5150
4723
|
{
|
|
5151
4724
|
"type": "alert",
|
|
@@ -5251,188 +4824,24 @@
|
|
|
5251
4824
|
{
|
|
5252
4825
|
"type": "wizard-progress",
|
|
5253
4826
|
"currentStep": "@entity.currentStep",
|
|
5254
|
-
"
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
"from": "in_progress",
|
|
5273
|
-
"to": "idle",
|
|
5274
|
-
"event": "RESET",
|
|
5275
|
-
"effects": [
|
|
5276
|
-
[
|
|
5277
|
-
"set",
|
|
5278
|
-
"@entity.status",
|
|
5279
|
-
"idle"
|
|
5280
|
-
],
|
|
5281
|
-
[
|
|
5282
|
-
"set",
|
|
5283
|
-
"@entity.currentStep",
|
|
5284
|
-
0
|
|
5285
|
-
],
|
|
5286
|
-
[
|
|
5287
|
-
"render-ui",
|
|
5288
|
-
"main",
|
|
5289
|
-
{
|
|
5290
|
-
"type": "dashboard-layout",
|
|
5291
|
-
"appName": "Schema Builder",
|
|
5292
|
-
"navItems": [
|
|
5293
|
-
{
|
|
5294
|
-
"label": "Plan",
|
|
5295
|
-
"href": "/plan",
|
|
5296
|
-
"icon": "clipboard-list"
|
|
5297
|
-
},
|
|
5298
|
-
{
|
|
5299
|
-
"label": "Build",
|
|
5300
|
-
"href": "/build",
|
|
5301
|
-
"icon": "hammer"
|
|
5302
|
-
},
|
|
5303
|
-
{
|
|
5304
|
-
"label": "Fix",
|
|
5305
|
-
"href": "/fix",
|
|
5306
|
-
"icon": "wrench"
|
|
5307
|
-
}
|
|
5308
|
-
],
|
|
5309
|
-
"children": [
|
|
5310
|
-
{
|
|
5311
|
-
"type": "stack",
|
|
5312
|
-
"direction": "vertical",
|
|
5313
|
-
"gap": "lg",
|
|
5314
|
-
"children": [
|
|
5315
|
-
{
|
|
5316
|
-
"type": "stack",
|
|
5317
|
-
"direction": "horizontal",
|
|
5318
|
-
"gap": "sm",
|
|
5319
|
-
"align": "center",
|
|
5320
|
-
"children": [
|
|
5321
|
-
{
|
|
5322
|
-
"type": "icon",
|
|
5323
|
-
"name": "list-ordered",
|
|
5324
|
-
"size": "lg"
|
|
5325
|
-
},
|
|
5326
|
-
{
|
|
5327
|
-
"type": "typography",
|
|
5328
|
-
"content": "BuildLoop",
|
|
5329
|
-
"variant": "h2"
|
|
5330
|
-
},
|
|
5331
|
-
{
|
|
5332
|
-
"type": "badge",
|
|
5333
|
-
"label": "Idle",
|
|
5334
|
-
"variant": "default"
|
|
5335
|
-
}
|
|
5336
|
-
]
|
|
5337
|
-
},
|
|
5338
|
-
{
|
|
5339
|
-
"type": "divider"
|
|
5340
|
-
},
|
|
5341
|
-
{
|
|
5342
|
-
"type": "wizard-progress",
|
|
5343
|
-
"currentStep": "@entity.currentStep",
|
|
5344
|
-
"totalSteps": "@entity.totalSteps",
|
|
5345
|
-
"steps": "@entity.steps"
|
|
5346
|
-
},
|
|
5347
|
-
{
|
|
5348
|
-
"type": "button",
|
|
5349
|
-
"label": "Start",
|
|
5350
|
-
"event": "START",
|
|
5351
|
-
"variant": "primary",
|
|
5352
|
-
"icon": "play"
|
|
5353
|
-
}
|
|
5354
|
-
]
|
|
5355
|
-
}
|
|
5356
|
-
]
|
|
5357
|
-
}
|
|
5358
|
-
]
|
|
5359
|
-
]
|
|
5360
|
-
},
|
|
5361
|
-
{
|
|
5362
|
-
"from": "completed",
|
|
5363
|
-
"to": "idle",
|
|
5364
|
-
"event": "RESET",
|
|
5365
|
-
"effects": [
|
|
5366
|
-
[
|
|
5367
|
-
"set",
|
|
5368
|
-
"@entity.status",
|
|
5369
|
-
"idle"
|
|
5370
|
-
],
|
|
5371
|
-
[
|
|
5372
|
-
"set",
|
|
5373
|
-
"@entity.currentStep",
|
|
5374
|
-
0
|
|
5375
|
-
],
|
|
5376
|
-
[
|
|
5377
|
-
"render-ui",
|
|
5378
|
-
"main",
|
|
5379
|
-
{
|
|
5380
|
-
"type": "dashboard-layout",
|
|
5381
|
-
"appName": "Schema Builder",
|
|
5382
|
-
"navItems": [
|
|
5383
|
-
{
|
|
5384
|
-
"label": "Plan",
|
|
5385
|
-
"href": "/plan",
|
|
5386
|
-
"icon": "clipboard-list"
|
|
5387
|
-
},
|
|
5388
|
-
{
|
|
5389
|
-
"label": "Build",
|
|
5390
|
-
"href": "/build",
|
|
5391
|
-
"icon": "hammer"
|
|
5392
|
-
},
|
|
5393
|
-
{
|
|
5394
|
-
"label": "Fix",
|
|
5395
|
-
"href": "/fix",
|
|
5396
|
-
"icon": "wrench"
|
|
5397
|
-
}
|
|
5398
|
-
],
|
|
5399
|
-
"children": [
|
|
5400
|
-
{
|
|
5401
|
-
"type": "stack",
|
|
5402
|
-
"direction": "vertical",
|
|
5403
|
-
"gap": "lg",
|
|
5404
|
-
"children": [
|
|
5405
|
-
{
|
|
5406
|
-
"type": "stack",
|
|
5407
|
-
"direction": "horizontal",
|
|
5408
|
-
"gap": "sm",
|
|
5409
|
-
"align": "center",
|
|
5410
|
-
"children": [
|
|
5411
|
-
{
|
|
5412
|
-
"type": "icon",
|
|
5413
|
-
"name": "list-ordered",
|
|
5414
|
-
"size": "lg"
|
|
5415
|
-
},
|
|
5416
|
-
{
|
|
5417
|
-
"type": "typography",
|
|
5418
|
-
"content": "BuildLoop",
|
|
5419
|
-
"variant": "h2"
|
|
5420
|
-
},
|
|
5421
|
-
{
|
|
5422
|
-
"type": "badge",
|
|
5423
|
-
"label": "Idle",
|
|
5424
|
-
"variant": "default"
|
|
5425
|
-
}
|
|
5426
|
-
]
|
|
5427
|
-
},
|
|
5428
|
-
{
|
|
5429
|
-
"type": "divider"
|
|
5430
|
-
},
|
|
5431
|
-
{
|
|
5432
|
-
"type": "wizard-progress",
|
|
5433
|
-
"currentStep": "@entity.currentStep",
|
|
5434
|
-
"totalSteps": "@entity.totalSteps",
|
|
5435
|
-
"steps": "@entity.steps"
|
|
4827
|
+
"steps": [
|
|
4828
|
+
{
|
|
4829
|
+
"id": "0",
|
|
4830
|
+
"title": "Plan"
|
|
4831
|
+
},
|
|
4832
|
+
{
|
|
4833
|
+
"id": "1",
|
|
4834
|
+
"title": "Execute"
|
|
4835
|
+
},
|
|
4836
|
+
{
|
|
4837
|
+
"id": "2",
|
|
4838
|
+
"title": "Check"
|
|
4839
|
+
},
|
|
4840
|
+
{
|
|
4841
|
+
"id": "3",
|
|
4842
|
+
"title": "Complete"
|
|
4843
|
+
}
|
|
4844
|
+
]
|
|
5436
4845
|
},
|
|
5437
4846
|
{
|
|
5438
4847
|
"type": "button",
|
|
@@ -5449,7 +4858,7 @@
|
|
|
5449
4858
|
]
|
|
5450
4859
|
},
|
|
5451
4860
|
{
|
|
5452
|
-
"from": "
|
|
4861
|
+
"from": "in_progress",
|
|
5453
4862
|
"to": "idle",
|
|
5454
4863
|
"event": "RESET",
|
|
5455
4864
|
"effects": [
|
|
@@ -5521,8 +4930,24 @@
|
|
|
5521
4930
|
{
|
|
5522
4931
|
"type": "wizard-progress",
|
|
5523
4932
|
"currentStep": "@entity.currentStep",
|
|
5524
|
-
"
|
|
5525
|
-
|
|
4933
|
+
"steps": [
|
|
4934
|
+
{
|
|
4935
|
+
"id": "0",
|
|
4936
|
+
"title": "Plan"
|
|
4937
|
+
},
|
|
4938
|
+
{
|
|
4939
|
+
"id": "1",
|
|
4940
|
+
"title": "Execute"
|
|
4941
|
+
},
|
|
4942
|
+
{
|
|
4943
|
+
"id": "2",
|
|
4944
|
+
"title": "Check"
|
|
4945
|
+
},
|
|
4946
|
+
{
|
|
4947
|
+
"id": "3",
|
|
4948
|
+
"title": "Complete"
|
|
4949
|
+
}
|
|
4950
|
+
]
|
|
5526
4951
|
},
|
|
5527
4952
|
{
|
|
5528
4953
|
"type": "button",
|
|
@@ -5537,81 +4962,21 @@
|
|
|
5537
4962
|
}
|
|
5538
4963
|
]
|
|
5539
4964
|
]
|
|
5540
|
-
}
|
|
5541
|
-
]
|
|
5542
|
-
}
|
|
5543
|
-
},
|
|
5544
|
-
{
|
|
5545
|
-
"name": "ToolLoopActivityLog",
|
|
5546
|
-
"linkedEntity": "BuildLoop",
|
|
5547
|
-
"category": "interaction",
|
|
5548
|
-
"emits": [
|
|
5549
|
-
{
|
|
5550
|
-
"event": "LOG_ENTRY",
|
|
5551
|
-
"scope": "internal",
|
|
5552
|
-
"payload": [
|
|
5553
|
-
{
|
|
5554
|
-
"name": "action",
|
|
5555
|
-
"type": "string"
|
|
5556
|
-
},
|
|
5557
|
-
{
|
|
5558
|
-
"name": "detail",
|
|
5559
|
-
"type": "string"
|
|
5560
|
-
},
|
|
5561
|
-
{
|
|
5562
|
-
"name": "status",
|
|
5563
|
-
"type": "string"
|
|
5564
|
-
}
|
|
5565
|
-
]
|
|
5566
|
-
}
|
|
5567
|
-
],
|
|
5568
|
-
"stateMachine": {
|
|
5569
|
-
"states": [
|
|
5570
|
-
{
|
|
5571
|
-
"name": "logging",
|
|
5572
|
-
"isInitial": true
|
|
5573
|
-
}
|
|
5574
|
-
],
|
|
5575
|
-
"events": [
|
|
5576
|
-
{
|
|
5577
|
-
"key": "INIT",
|
|
5578
|
-
"name": "Initialize"
|
|
5579
|
-
},
|
|
5580
|
-
{
|
|
5581
|
-
"key": "LOG_ENTRY",
|
|
5582
|
-
"name": "Log Entry",
|
|
5583
|
-
"payload": [
|
|
5584
|
-
{
|
|
5585
|
-
"name": "action",
|
|
5586
|
-
"type": "string",
|
|
5587
|
-
"required": true
|
|
5588
|
-
},
|
|
5589
|
-
{
|
|
5590
|
-
"name": "detail",
|
|
5591
|
-
"type": "string",
|
|
5592
|
-
"required": true
|
|
5593
|
-
},
|
|
5594
|
-
{
|
|
5595
|
-
"name": "status",
|
|
5596
|
-
"type": "string",
|
|
5597
|
-
"required": true
|
|
5598
|
-
}
|
|
5599
|
-
]
|
|
5600
4965
|
},
|
|
5601
4966
|
{
|
|
5602
|
-
"
|
|
5603
|
-
"
|
|
5604
|
-
|
|
5605
|
-
],
|
|
5606
|
-
"transitions": [
|
|
5607
|
-
{
|
|
5608
|
-
"from": "logging",
|
|
5609
|
-
"to": "logging",
|
|
5610
|
-
"event": "INIT",
|
|
4967
|
+
"from": "completed",
|
|
4968
|
+
"to": "idle",
|
|
4969
|
+
"event": "RESET",
|
|
5611
4970
|
"effects": [
|
|
5612
4971
|
[
|
|
5613
|
-
"
|
|
5614
|
-
"
|
|
4972
|
+
"set",
|
|
4973
|
+
"@entity.status",
|
|
4974
|
+
"idle"
|
|
4975
|
+
],
|
|
4976
|
+
[
|
|
4977
|
+
"set",
|
|
4978
|
+
"@entity.currentStep",
|
|
4979
|
+
0
|
|
5615
4980
|
],
|
|
5616
4981
|
[
|
|
5617
4982
|
"render-ui",
|
|
@@ -5646,33 +5011,22 @@
|
|
|
5646
5011
|
"type": "stack",
|
|
5647
5012
|
"direction": "horizontal",
|
|
5648
5013
|
"gap": "sm",
|
|
5649
|
-
"justify": "space-between",
|
|
5650
5014
|
"align": "center",
|
|
5651
5015
|
"children": [
|
|
5652
5016
|
{
|
|
5653
|
-
"type": "
|
|
5654
|
-
"
|
|
5655
|
-
"
|
|
5656
|
-
"align": "center",
|
|
5657
|
-
"children": [
|
|
5658
|
-
{
|
|
5659
|
-
"type": "icon",
|
|
5660
|
-
"name": "activity",
|
|
5661
|
-
"size": "lg"
|
|
5662
|
-
},
|
|
5663
|
-
{
|
|
5664
|
-
"type": "typography",
|
|
5665
|
-
"content": "Activity Log",
|
|
5666
|
-
"variant": "h2"
|
|
5667
|
-
}
|
|
5668
|
-
]
|
|
5017
|
+
"type": "icon",
|
|
5018
|
+
"name": "list-ordered",
|
|
5019
|
+
"size": "lg"
|
|
5669
5020
|
},
|
|
5670
5021
|
{
|
|
5671
|
-
"type": "
|
|
5672
|
-
"
|
|
5673
|
-
"
|
|
5674
|
-
|
|
5675
|
-
|
|
5022
|
+
"type": "typography",
|
|
5023
|
+
"content": "BuildLoop",
|
|
5024
|
+
"variant": "h2"
|
|
5025
|
+
},
|
|
5026
|
+
{
|
|
5027
|
+
"type": "badge",
|
|
5028
|
+
"label": "Idle",
|
|
5029
|
+
"variant": "default"
|
|
5676
5030
|
}
|
|
5677
5031
|
]
|
|
5678
5032
|
},
|
|
@@ -5680,242 +5034,55 @@
|
|
|
5680
5034
|
"type": "divider"
|
|
5681
5035
|
},
|
|
5682
5036
|
{
|
|
5683
|
-
"type": "
|
|
5684
|
-
"
|
|
5685
|
-
"
|
|
5686
|
-
"emptyTitle": "No activity yet",
|
|
5687
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
5688
|
-
"renderItem": [
|
|
5689
|
-
"fn",
|
|
5690
|
-
"item",
|
|
5037
|
+
"type": "wizard-progress",
|
|
5038
|
+
"currentStep": "@entity.currentStep",
|
|
5039
|
+
"steps": [
|
|
5691
5040
|
{
|
|
5692
|
-
"
|
|
5693
|
-
"
|
|
5694
|
-
|
|
5695
|
-
"children": [
|
|
5696
|
-
{
|
|
5697
|
-
"type": "stack",
|
|
5698
|
-
"direction": "horizontal",
|
|
5699
|
-
"gap": "sm",
|
|
5700
|
-
"align": "center",
|
|
5701
|
-
"children": [
|
|
5702
|
-
{
|
|
5703
|
-
"type": "badge",
|
|
5704
|
-
"label": "@item.status"
|
|
5705
|
-
},
|
|
5706
|
-
{
|
|
5707
|
-
"type": "typography",
|
|
5708
|
-
"variant": "h4",
|
|
5709
|
-
"content": "@item.action"
|
|
5710
|
-
}
|
|
5711
|
-
]
|
|
5712
|
-
},
|
|
5713
|
-
{
|
|
5714
|
-
"type": "typography",
|
|
5715
|
-
"variant": "body",
|
|
5716
|
-
"color": "muted",
|
|
5717
|
-
"content": "@item.detail"
|
|
5718
|
-
},
|
|
5719
|
-
{
|
|
5720
|
-
"type": "stack",
|
|
5721
|
-
"direction": "horizontal",
|
|
5722
|
-
"gap": "sm",
|
|
5723
|
-
"align": "center",
|
|
5724
|
-
"children": [
|
|
5725
|
-
{
|
|
5726
|
-
"type": "typography",
|
|
5727
|
-
"variant": "caption",
|
|
5728
|
-
"color": "muted",
|
|
5729
|
-
"content": "@item.timestamp"
|
|
5730
|
-
},
|
|
5731
|
-
{
|
|
5732
|
-
"type": "badge",
|
|
5733
|
-
"label": "@item.duration",
|
|
5734
|
-
"variant": "outline"
|
|
5735
|
-
}
|
|
5736
|
-
]
|
|
5737
|
-
}
|
|
5738
|
-
]
|
|
5739
|
-
}
|
|
5740
|
-
]
|
|
5741
|
-
}
|
|
5742
|
-
]
|
|
5743
|
-
}
|
|
5744
|
-
]
|
|
5745
|
-
}
|
|
5746
|
-
]
|
|
5747
|
-
]
|
|
5748
|
-
},
|
|
5749
|
-
{
|
|
5750
|
-
"from": "logging",
|
|
5751
|
-
"to": "logging",
|
|
5752
|
-
"event": "LOG_ENTRY",
|
|
5753
|
-
"effects": [
|
|
5754
|
-
[
|
|
5755
|
-
"persist",
|
|
5756
|
-
"create",
|
|
5757
|
-
"BuildLoop",
|
|
5758
|
-
{
|
|
5759
|
-
"action": "@payload.action",
|
|
5760
|
-
"detail": "@payload.detail",
|
|
5761
|
-
"status": "@payload.status",
|
|
5762
|
-
"timestamp": "@now"
|
|
5763
|
-
}
|
|
5764
|
-
],
|
|
5765
|
-
[
|
|
5766
|
-
"fetch",
|
|
5767
|
-
"BuildLoop"
|
|
5768
|
-
],
|
|
5769
|
-
[
|
|
5770
|
-
"render-ui",
|
|
5771
|
-
"main",
|
|
5772
|
-
{
|
|
5773
|
-
"type": "dashboard-layout",
|
|
5774
|
-
"appName": "Schema Builder",
|
|
5775
|
-
"navItems": [
|
|
5776
|
-
{
|
|
5777
|
-
"label": "Plan",
|
|
5778
|
-
"href": "/plan",
|
|
5779
|
-
"icon": "clipboard-list"
|
|
5780
|
-
},
|
|
5781
|
-
{
|
|
5782
|
-
"label": "Build",
|
|
5783
|
-
"href": "/build",
|
|
5784
|
-
"icon": "hammer"
|
|
5785
|
-
},
|
|
5786
|
-
{
|
|
5787
|
-
"label": "Fix",
|
|
5788
|
-
"href": "/fix",
|
|
5789
|
-
"icon": "wrench"
|
|
5790
|
-
}
|
|
5791
|
-
],
|
|
5792
|
-
"children": [
|
|
5793
|
-
{
|
|
5794
|
-
"type": "stack",
|
|
5795
|
-
"direction": "vertical",
|
|
5796
|
-
"gap": "lg",
|
|
5797
|
-
"children": [
|
|
5798
|
-
{
|
|
5799
|
-
"type": "stack",
|
|
5800
|
-
"direction": "horizontal",
|
|
5801
|
-
"gap": "sm",
|
|
5802
|
-
"justify": "space-between",
|
|
5803
|
-
"align": "center",
|
|
5804
|
-
"children": [
|
|
5041
|
+
"id": "0",
|
|
5042
|
+
"title": "Plan"
|
|
5043
|
+
},
|
|
5805
5044
|
{
|
|
5806
|
-
"
|
|
5807
|
-
"
|
|
5808
|
-
"gap": "sm",
|
|
5809
|
-
"align": "center",
|
|
5810
|
-
"children": [
|
|
5811
|
-
{
|
|
5812
|
-
"type": "icon",
|
|
5813
|
-
"name": "activity",
|
|
5814
|
-
"size": "lg"
|
|
5815
|
-
},
|
|
5816
|
-
{
|
|
5817
|
-
"type": "typography",
|
|
5818
|
-
"content": "Activity Log",
|
|
5819
|
-
"variant": "h2"
|
|
5820
|
-
}
|
|
5821
|
-
]
|
|
5045
|
+
"id": "1",
|
|
5046
|
+
"title": "Execute"
|
|
5822
5047
|
},
|
|
5823
5048
|
{
|
|
5824
|
-
"
|
|
5825
|
-
"
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
"
|
|
5049
|
+
"id": "2",
|
|
5050
|
+
"title": "Check"
|
|
5051
|
+
},
|
|
5052
|
+
{
|
|
5053
|
+
"id": "3",
|
|
5054
|
+
"title": "Complete"
|
|
5829
5055
|
}
|
|
5830
5056
|
]
|
|
5831
5057
|
},
|
|
5832
5058
|
{
|
|
5833
|
-
"type": "
|
|
5834
|
-
|
|
5835
|
-
|
|
5836
|
-
"
|
|
5837
|
-
"
|
|
5838
|
-
"emptyIcon": "activity",
|
|
5839
|
-
"emptyTitle": "No activity yet",
|
|
5840
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
5841
|
-
"renderItem": [
|
|
5842
|
-
"fn",
|
|
5843
|
-
"item",
|
|
5844
|
-
{
|
|
5845
|
-
"type": "stack",
|
|
5846
|
-
"direction": "vertical",
|
|
5847
|
-
"gap": "xs",
|
|
5848
|
-
"children": [
|
|
5849
|
-
{
|
|
5850
|
-
"type": "stack",
|
|
5851
|
-
"direction": "horizontal",
|
|
5852
|
-
"gap": "sm",
|
|
5853
|
-
"align": "center",
|
|
5854
|
-
"children": [
|
|
5855
|
-
{
|
|
5856
|
-
"type": "badge",
|
|
5857
|
-
"label": "@item.status"
|
|
5858
|
-
},
|
|
5859
|
-
{
|
|
5860
|
-
"type": "typography",
|
|
5861
|
-
"variant": "h4",
|
|
5862
|
-
"content": "@item.action"
|
|
5863
|
-
}
|
|
5864
|
-
]
|
|
5865
|
-
},
|
|
5866
|
-
{
|
|
5867
|
-
"type": "typography",
|
|
5868
|
-
"variant": "body",
|
|
5869
|
-
"color": "muted",
|
|
5870
|
-
"content": "@item.detail"
|
|
5871
|
-
},
|
|
5872
|
-
{
|
|
5873
|
-
"type": "stack",
|
|
5874
|
-
"direction": "horizontal",
|
|
5875
|
-
"gap": "sm",
|
|
5876
|
-
"align": "center",
|
|
5877
|
-
"children": [
|
|
5878
|
-
{
|
|
5879
|
-
"type": "typography",
|
|
5880
|
-
"variant": "caption",
|
|
5881
|
-
"color": "muted",
|
|
5882
|
-
"content": "@item.timestamp"
|
|
5883
|
-
},
|
|
5884
|
-
{
|
|
5885
|
-
"type": "badge",
|
|
5886
|
-
"label": "@item.duration",
|
|
5887
|
-
"variant": "outline"
|
|
5888
|
-
}
|
|
5889
|
-
]
|
|
5890
|
-
}
|
|
5891
|
-
]
|
|
5892
|
-
}
|
|
5893
|
-
]
|
|
5059
|
+
"type": "button",
|
|
5060
|
+
"label": "Start",
|
|
5061
|
+
"event": "START",
|
|
5062
|
+
"variant": "primary",
|
|
5063
|
+
"icon": "play"
|
|
5894
5064
|
}
|
|
5895
5065
|
]
|
|
5896
5066
|
}
|
|
5897
5067
|
]
|
|
5898
5068
|
}
|
|
5899
|
-
],
|
|
5900
|
-
[
|
|
5901
|
-
"notify",
|
|
5902
|
-
"BuildLoop created successfully"
|
|
5903
5069
|
]
|
|
5904
5070
|
]
|
|
5905
5071
|
},
|
|
5906
5072
|
{
|
|
5907
|
-
"from": "
|
|
5908
|
-
"to": "
|
|
5909
|
-
"event": "
|
|
5073
|
+
"from": "failed",
|
|
5074
|
+
"to": "idle",
|
|
5075
|
+
"event": "RESET",
|
|
5910
5076
|
"effects": [
|
|
5911
5077
|
[
|
|
5912
|
-
"
|
|
5913
|
-
"
|
|
5914
|
-
"
|
|
5078
|
+
"set",
|
|
5079
|
+
"@entity.status",
|
|
5080
|
+
"idle"
|
|
5915
5081
|
],
|
|
5916
5082
|
[
|
|
5917
|
-
"
|
|
5918
|
-
"
|
|
5083
|
+
"set",
|
|
5084
|
+
"@entity.currentStep",
|
|
5085
|
+
0
|
|
5919
5086
|
],
|
|
5920
5087
|
[
|
|
5921
5088
|
"render-ui",
|
|
@@ -5950,33 +5117,22 @@
|
|
|
5950
5117
|
"type": "stack",
|
|
5951
5118
|
"direction": "horizontal",
|
|
5952
5119
|
"gap": "sm",
|
|
5953
|
-
"justify": "space-between",
|
|
5954
5120
|
"align": "center",
|
|
5955
5121
|
"children": [
|
|
5956
5122
|
{
|
|
5957
|
-
"type": "
|
|
5958
|
-
"
|
|
5959
|
-
"
|
|
5960
|
-
"align": "center",
|
|
5961
|
-
"children": [
|
|
5962
|
-
{
|
|
5963
|
-
"type": "icon",
|
|
5964
|
-
"name": "activity",
|
|
5965
|
-
"size": "lg"
|
|
5966
|
-
},
|
|
5967
|
-
{
|
|
5968
|
-
"type": "typography",
|
|
5969
|
-
"content": "Activity Log",
|
|
5970
|
-
"variant": "h2"
|
|
5971
|
-
}
|
|
5972
|
-
]
|
|
5123
|
+
"type": "icon",
|
|
5124
|
+
"name": "list-ordered",
|
|
5125
|
+
"size": "lg"
|
|
5973
5126
|
},
|
|
5974
5127
|
{
|
|
5975
|
-
"type": "
|
|
5976
|
-
"
|
|
5977
|
-
"
|
|
5978
|
-
|
|
5979
|
-
|
|
5128
|
+
"type": "typography",
|
|
5129
|
+
"content": "BuildLoop",
|
|
5130
|
+
"variant": "h2"
|
|
5131
|
+
},
|
|
5132
|
+
{
|
|
5133
|
+
"type": "badge",
|
|
5134
|
+
"label": "Idle",
|
|
5135
|
+
"variant": "default"
|
|
5980
5136
|
}
|
|
5981
5137
|
]
|
|
5982
5138
|
},
|
|
@@ -5984,73 +5140,38 @@
|
|
|
5984
5140
|
"type": "divider"
|
|
5985
5141
|
},
|
|
5986
5142
|
{
|
|
5987
|
-
"type": "
|
|
5988
|
-
"
|
|
5989
|
-
"
|
|
5990
|
-
"emptyTitle": "No activity yet",
|
|
5991
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
5992
|
-
"renderItem": [
|
|
5993
|
-
"fn",
|
|
5994
|
-
"item",
|
|
5143
|
+
"type": "wizard-progress",
|
|
5144
|
+
"currentStep": "@entity.currentStep",
|
|
5145
|
+
"steps": [
|
|
5995
5146
|
{
|
|
5996
|
-
"
|
|
5997
|
-
"
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
{
|
|
6011
|
-
"type": "typography",
|
|
6012
|
-
"variant": "h4",
|
|
6013
|
-
"content": "@item.action"
|
|
6014
|
-
}
|
|
6015
|
-
]
|
|
6016
|
-
},
|
|
6017
|
-
{
|
|
6018
|
-
"type": "typography",
|
|
6019
|
-
"variant": "body",
|
|
6020
|
-
"color": "muted",
|
|
6021
|
-
"content": "@item.detail"
|
|
6022
|
-
},
|
|
6023
|
-
{
|
|
6024
|
-
"type": "stack",
|
|
6025
|
-
"direction": "horizontal",
|
|
6026
|
-
"gap": "sm",
|
|
6027
|
-
"align": "center",
|
|
6028
|
-
"children": [
|
|
6029
|
-
{
|
|
6030
|
-
"type": "typography",
|
|
6031
|
-
"variant": "caption",
|
|
6032
|
-
"color": "muted",
|
|
6033
|
-
"content": "@item.timestamp"
|
|
6034
|
-
},
|
|
6035
|
-
{
|
|
6036
|
-
"type": "badge",
|
|
6037
|
-
"label": "@item.duration",
|
|
6038
|
-
"variant": "outline"
|
|
6039
|
-
}
|
|
6040
|
-
]
|
|
6041
|
-
}
|
|
6042
|
-
]
|
|
5147
|
+
"id": "0",
|
|
5148
|
+
"title": "Plan"
|
|
5149
|
+
},
|
|
5150
|
+
{
|
|
5151
|
+
"id": "1",
|
|
5152
|
+
"title": "Execute"
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"id": "2",
|
|
5156
|
+
"title": "Check"
|
|
5157
|
+
},
|
|
5158
|
+
{
|
|
5159
|
+
"id": "3",
|
|
5160
|
+
"title": "Complete"
|
|
6043
5161
|
}
|
|
6044
5162
|
]
|
|
5163
|
+
},
|
|
5164
|
+
{
|
|
5165
|
+
"type": "button",
|
|
5166
|
+
"label": "Start",
|
|
5167
|
+
"event": "START",
|
|
5168
|
+
"variant": "primary",
|
|
5169
|
+
"icon": "play"
|
|
6045
5170
|
}
|
|
6046
5171
|
]
|
|
6047
5172
|
}
|
|
6048
5173
|
]
|
|
6049
5174
|
}
|
|
6050
|
-
],
|
|
6051
|
-
[
|
|
6052
|
-
"notify",
|
|
6053
|
-
"BuildLoop deleted successfully"
|
|
6054
5175
|
]
|
|
6055
5176
|
]
|
|
6056
5177
|
}
|
|
@@ -6454,7 +5575,8 @@
|
|
|
6454
5575
|
]
|
|
6455
5576
|
}
|
|
6456
5577
|
]
|
|
6457
|
-
}
|
|
5578
|
+
},
|
|
5579
|
+
"listens": []
|
|
6458
5580
|
},
|
|
6459
5581
|
{
|
|
6460
5582
|
"name": "ToolLoopToolCallFlow",
|
|
@@ -6839,7 +5961,8 @@
|
|
|
6839
5961
|
]
|
|
6840
5962
|
}
|
|
6841
5963
|
]
|
|
6842
|
-
}
|
|
5964
|
+
},
|
|
5965
|
+
"listens": []
|
|
6843
5966
|
},
|
|
6844
5967
|
{
|
|
6845
5968
|
"name": "ToolLoopContextMonitor",
|
|
@@ -8749,7 +7872,8 @@
|
|
|
8749
7872
|
]
|
|
8750
7873
|
}
|
|
8751
7874
|
]
|
|
8752
|
-
}
|
|
7875
|
+
},
|
|
7876
|
+
"listens": []
|
|
8753
7877
|
}
|
|
8754
7878
|
],
|
|
8755
7879
|
"pages": [
|
|
@@ -9290,7 +8414,7 @@
|
|
|
9290
8414
|
},
|
|
9291
8415
|
{
|
|
9292
8416
|
"type": "simple-grid",
|
|
9293
|
-
"
|
|
8417
|
+
"cols": 2,
|
|
9294
8418
|
"children": [
|
|
9295
8419
|
{
|
|
9296
8420
|
"type": "stat-display",
|
|
@@ -9551,7 +8675,7 @@
|
|
|
9551
8675
|
},
|
|
9552
8676
|
{
|
|
9553
8677
|
"type": "simple-grid",
|
|
9554
|
-
"
|
|
8678
|
+
"cols": 2,
|
|
9555
8679
|
"children": [
|
|
9556
8680
|
{
|
|
9557
8681
|
"type": "stat-display",
|
|
@@ -9861,7 +8985,7 @@
|
|
|
9861
8985
|
},
|
|
9862
8986
|
{
|
|
9863
8987
|
"type": "simple-grid",
|
|
9864
|
-
"
|
|
8988
|
+
"cols": 2,
|
|
9865
8989
|
"children": [
|
|
9866
8990
|
{
|
|
9867
8991
|
"type": "stat-display",
|
|
@@ -9979,7 +9103,7 @@
|
|
|
9979
9103
|
},
|
|
9980
9104
|
{
|
|
9981
9105
|
"type": "simple-grid",
|
|
9982
|
-
"
|
|
9106
|
+
"cols": 2,
|
|
9983
9107
|
"children": [
|
|
9984
9108
|
{
|
|
9985
9109
|
"type": "stat-display",
|
|
@@ -10316,6 +9440,7 @@
|
|
|
10316
9440
|
]
|
|
10317
9441
|
}
|
|
10318
9442
|
],
|
|
9443
|
+
"listens": [],
|
|
10319
9444
|
"stateMachine": {
|
|
10320
9445
|
"states": [
|
|
10321
9446
|
{
|
|
@@ -10426,8 +9551,24 @@
|
|
|
10426
9551
|
{
|
|
10427
9552
|
"type": "wizard-progress",
|
|
10428
9553
|
"currentStep": "@entity.currentStep",
|
|
10429
|
-
"
|
|
10430
|
-
|
|
9554
|
+
"steps": [
|
|
9555
|
+
{
|
|
9556
|
+
"id": "0",
|
|
9557
|
+
"title": "Validate"
|
|
9558
|
+
},
|
|
9559
|
+
{
|
|
9560
|
+
"id": "1",
|
|
9561
|
+
"title": "Analyze"
|
|
9562
|
+
},
|
|
9563
|
+
{
|
|
9564
|
+
"id": "2",
|
|
9565
|
+
"title": "Fix"
|
|
9566
|
+
},
|
|
9567
|
+
{
|
|
9568
|
+
"id": "3",
|
|
9569
|
+
"title": "Re-validate"
|
|
9570
|
+
}
|
|
9571
|
+
]
|
|
10431
9572
|
},
|
|
10432
9573
|
{
|
|
10433
9574
|
"type": "button",
|
|
@@ -10516,8 +9657,24 @@
|
|
|
10516
9657
|
{
|
|
10517
9658
|
"type": "wizard-progress",
|
|
10518
9659
|
"currentStep": "@entity.currentStep",
|
|
10519
|
-
"
|
|
10520
|
-
|
|
9660
|
+
"steps": [
|
|
9661
|
+
{
|
|
9662
|
+
"id": "0",
|
|
9663
|
+
"title": "Validate"
|
|
9664
|
+
},
|
|
9665
|
+
{
|
|
9666
|
+
"id": "1",
|
|
9667
|
+
"title": "Analyze"
|
|
9668
|
+
},
|
|
9669
|
+
{
|
|
9670
|
+
"id": "2",
|
|
9671
|
+
"title": "Fix"
|
|
9672
|
+
},
|
|
9673
|
+
{
|
|
9674
|
+
"id": "3",
|
|
9675
|
+
"title": "Re-validate"
|
|
9676
|
+
}
|
|
9677
|
+
]
|
|
10521
9678
|
},
|
|
10522
9679
|
{
|
|
10523
9680
|
"type": "stack",
|
|
@@ -10642,8 +9799,24 @@
|
|
|
10642
9799
|
{
|
|
10643
9800
|
"type": "wizard-progress",
|
|
10644
9801
|
"currentStep": "@entity.currentStep",
|
|
10645
|
-
"
|
|
10646
|
-
|
|
9802
|
+
"steps": [
|
|
9803
|
+
{
|
|
9804
|
+
"id": "0",
|
|
9805
|
+
"title": "Validate"
|
|
9806
|
+
},
|
|
9807
|
+
{
|
|
9808
|
+
"id": "1",
|
|
9809
|
+
"title": "Analyze"
|
|
9810
|
+
},
|
|
9811
|
+
{
|
|
9812
|
+
"id": "2",
|
|
9813
|
+
"title": "Fix"
|
|
9814
|
+
},
|
|
9815
|
+
{
|
|
9816
|
+
"id": "3",
|
|
9817
|
+
"title": "Re-validate"
|
|
9818
|
+
}
|
|
9819
|
+
]
|
|
10647
9820
|
},
|
|
10648
9821
|
{
|
|
10649
9822
|
"type": "stack",
|
|
@@ -10764,8 +9937,24 @@
|
|
|
10764
9937
|
{
|
|
10765
9938
|
"type": "wizard-progress",
|
|
10766
9939
|
"currentStep": "@entity.totalSteps",
|
|
10767
|
-
"
|
|
10768
|
-
|
|
9940
|
+
"steps": [
|
|
9941
|
+
{
|
|
9942
|
+
"id": "0",
|
|
9943
|
+
"title": "Validate"
|
|
9944
|
+
},
|
|
9945
|
+
{
|
|
9946
|
+
"id": "1",
|
|
9947
|
+
"title": "Analyze"
|
|
9948
|
+
},
|
|
9949
|
+
{
|
|
9950
|
+
"id": "2",
|
|
9951
|
+
"title": "Fix"
|
|
9952
|
+
},
|
|
9953
|
+
{
|
|
9954
|
+
"id": "3",
|
|
9955
|
+
"title": "Re-validate"
|
|
9956
|
+
}
|
|
9957
|
+
]
|
|
10769
9958
|
},
|
|
10770
9959
|
{
|
|
10771
9960
|
"type": "alert",
|
|
@@ -10854,8 +10043,24 @@
|
|
|
10854
10043
|
{
|
|
10855
10044
|
"type": "wizard-progress",
|
|
10856
10045
|
"currentStep": "@entity.currentStep",
|
|
10857
|
-
"
|
|
10858
|
-
|
|
10046
|
+
"steps": [
|
|
10047
|
+
{
|
|
10048
|
+
"id": "0",
|
|
10049
|
+
"title": "Validate"
|
|
10050
|
+
},
|
|
10051
|
+
{
|
|
10052
|
+
"id": "1",
|
|
10053
|
+
"title": "Analyze"
|
|
10054
|
+
},
|
|
10055
|
+
{
|
|
10056
|
+
"id": "2",
|
|
10057
|
+
"title": "Fix"
|
|
10058
|
+
},
|
|
10059
|
+
{
|
|
10060
|
+
"id": "3",
|
|
10061
|
+
"title": "Re-validate"
|
|
10062
|
+
}
|
|
10063
|
+
]
|
|
10859
10064
|
},
|
|
10860
10065
|
{
|
|
10861
10066
|
"type": "alert",
|
|
@@ -10961,8 +10166,24 @@
|
|
|
10961
10166
|
{
|
|
10962
10167
|
"type": "wizard-progress",
|
|
10963
10168
|
"currentStep": "@entity.currentStep",
|
|
10964
|
-
"
|
|
10965
|
-
|
|
10169
|
+
"steps": [
|
|
10170
|
+
{
|
|
10171
|
+
"id": "0",
|
|
10172
|
+
"title": "Validate"
|
|
10173
|
+
},
|
|
10174
|
+
{
|
|
10175
|
+
"id": "1",
|
|
10176
|
+
"title": "Analyze"
|
|
10177
|
+
},
|
|
10178
|
+
{
|
|
10179
|
+
"id": "2",
|
|
10180
|
+
"title": "Fix"
|
|
10181
|
+
},
|
|
10182
|
+
{
|
|
10183
|
+
"id": "3",
|
|
10184
|
+
"title": "Re-validate"
|
|
10185
|
+
}
|
|
10186
|
+
]
|
|
10966
10187
|
},
|
|
10967
10188
|
{
|
|
10968
10189
|
"type": "button",
|
|
@@ -11051,8 +10272,24 @@
|
|
|
11051
10272
|
{
|
|
11052
10273
|
"type": "wizard-progress",
|
|
11053
10274
|
"currentStep": "@entity.currentStep",
|
|
11054
|
-
"
|
|
11055
|
-
|
|
10275
|
+
"steps": [
|
|
10276
|
+
{
|
|
10277
|
+
"id": "0",
|
|
10278
|
+
"title": "Validate"
|
|
10279
|
+
},
|
|
10280
|
+
{
|
|
10281
|
+
"id": "1",
|
|
10282
|
+
"title": "Analyze"
|
|
10283
|
+
},
|
|
10284
|
+
{
|
|
10285
|
+
"id": "2",
|
|
10286
|
+
"title": "Fix"
|
|
10287
|
+
},
|
|
10288
|
+
{
|
|
10289
|
+
"id": "3",
|
|
10290
|
+
"title": "Re-validate"
|
|
10291
|
+
}
|
|
10292
|
+
]
|
|
11056
10293
|
},
|
|
11057
10294
|
{
|
|
11058
10295
|
"type": "button",
|
|
@@ -11141,8 +10378,24 @@
|
|
|
11141
10378
|
{
|
|
11142
10379
|
"type": "wizard-progress",
|
|
11143
10380
|
"currentStep": "@entity.currentStep",
|
|
11144
|
-
"
|
|
11145
|
-
|
|
10381
|
+
"steps": [
|
|
10382
|
+
{
|
|
10383
|
+
"id": "0",
|
|
10384
|
+
"title": "Validate"
|
|
10385
|
+
},
|
|
10386
|
+
{
|
|
10387
|
+
"id": "1",
|
|
10388
|
+
"title": "Analyze"
|
|
10389
|
+
},
|
|
10390
|
+
{
|
|
10391
|
+
"id": "2",
|
|
10392
|
+
"title": "Fix"
|
|
10393
|
+
},
|
|
10394
|
+
{
|
|
10395
|
+
"id": "3",
|
|
10396
|
+
"title": "Re-validate"
|
|
10397
|
+
}
|
|
10398
|
+
]
|
|
11146
10399
|
},
|
|
11147
10400
|
{
|
|
11148
10401
|
"type": "button",
|
|
@@ -11231,8 +10484,24 @@
|
|
|
11231
10484
|
{
|
|
11232
10485
|
"type": "wizard-progress",
|
|
11233
10486
|
"currentStep": "@entity.currentStep",
|
|
11234
|
-
"
|
|
11235
|
-
|
|
10487
|
+
"steps": [
|
|
10488
|
+
{
|
|
10489
|
+
"id": "0",
|
|
10490
|
+
"title": "Validate"
|
|
10491
|
+
},
|
|
10492
|
+
{
|
|
10493
|
+
"id": "1",
|
|
10494
|
+
"title": "Analyze"
|
|
10495
|
+
},
|
|
10496
|
+
{
|
|
10497
|
+
"id": "2",
|
|
10498
|
+
"title": "Fix"
|
|
10499
|
+
},
|
|
10500
|
+
{
|
|
10501
|
+
"id": "3",
|
|
10502
|
+
"title": "Re-validate"
|
|
10503
|
+
}
|
|
10504
|
+
]
|
|
11236
10505
|
},
|
|
11237
10506
|
{
|
|
11238
10507
|
"type": "button",
|
|
@@ -11800,7 +11069,8 @@
|
|
|
11800
11069
|
]
|
|
11801
11070
|
}
|
|
11802
11071
|
]
|
|
11803
|
-
}
|
|
11072
|
+
},
|
|
11073
|
+
"listens": []
|
|
11804
11074
|
},
|
|
11805
11075
|
{
|
|
11806
11076
|
"name": "FixLoopFixCall",
|
|
@@ -12185,7 +11455,8 @@
|
|
|
12185
11455
|
]
|
|
12186
11456
|
}
|
|
12187
11457
|
]
|
|
12188
|
-
}
|
|
11458
|
+
},
|
|
11459
|
+
"listens": []
|
|
12189
11460
|
},
|
|
12190
11461
|
{
|
|
12191
11462
|
"name": "FixLoopCompletionFlow",
|
|
@@ -12584,7 +11855,8 @@
|
|
|
12584
11855
|
]
|
|
12585
11856
|
}
|
|
12586
11857
|
]
|
|
12587
|
-
}
|
|
11858
|
+
},
|
|
11859
|
+
"listens": []
|
|
12588
11860
|
}
|
|
12589
11861
|
],
|
|
12590
11862
|
"pages": [
|
|
@@ -14020,8 +13292,28 @@
|
|
|
14020
13292
|
{
|
|
14021
13293
|
"type": "wizard-progress",
|
|
14022
13294
|
"currentStep": "@entity.currentStep",
|
|
14023
|
-
"
|
|
14024
|
-
|
|
13295
|
+
"steps": [
|
|
13296
|
+
{
|
|
13297
|
+
"id": "0",
|
|
13298
|
+
"title": "Plan"
|
|
13299
|
+
},
|
|
13300
|
+
{
|
|
13301
|
+
"id": "1",
|
|
13302
|
+
"title": "Generate"
|
|
13303
|
+
},
|
|
13304
|
+
{
|
|
13305
|
+
"id": "2",
|
|
13306
|
+
"title": "Validate"
|
|
13307
|
+
},
|
|
13308
|
+
{
|
|
13309
|
+
"id": "3",
|
|
13310
|
+
"title": "Fix"
|
|
13311
|
+
},
|
|
13312
|
+
{
|
|
13313
|
+
"id": "4",
|
|
13314
|
+
"title": "Done"
|
|
13315
|
+
}
|
|
13316
|
+
]
|
|
14025
13317
|
},
|
|
14026
13318
|
{
|
|
14027
13319
|
"type": "button",
|
|
@@ -14110,8 +13402,28 @@
|
|
|
14110
13402
|
{
|
|
14111
13403
|
"type": "wizard-progress",
|
|
14112
13404
|
"currentStep": "@entity.currentStep",
|
|
14113
|
-
"
|
|
14114
|
-
|
|
13405
|
+
"steps": [
|
|
13406
|
+
{
|
|
13407
|
+
"id": "0",
|
|
13408
|
+
"title": "Plan"
|
|
13409
|
+
},
|
|
13410
|
+
{
|
|
13411
|
+
"id": "1",
|
|
13412
|
+
"title": "Generate"
|
|
13413
|
+
},
|
|
13414
|
+
{
|
|
13415
|
+
"id": "2",
|
|
13416
|
+
"title": "Validate"
|
|
13417
|
+
},
|
|
13418
|
+
{
|
|
13419
|
+
"id": "3",
|
|
13420
|
+
"title": "Fix"
|
|
13421
|
+
},
|
|
13422
|
+
{
|
|
13423
|
+
"id": "4",
|
|
13424
|
+
"title": "Done"
|
|
13425
|
+
}
|
|
13426
|
+
]
|
|
14115
13427
|
},
|
|
14116
13428
|
{
|
|
14117
13429
|
"type": "stack",
|
|
@@ -14236,8 +13548,28 @@
|
|
|
14236
13548
|
{
|
|
14237
13549
|
"type": "wizard-progress",
|
|
14238
13550
|
"currentStep": "@entity.currentStep",
|
|
14239
|
-
"
|
|
14240
|
-
|
|
13551
|
+
"steps": [
|
|
13552
|
+
{
|
|
13553
|
+
"id": "0",
|
|
13554
|
+
"title": "Plan"
|
|
13555
|
+
},
|
|
13556
|
+
{
|
|
13557
|
+
"id": "1",
|
|
13558
|
+
"title": "Generate"
|
|
13559
|
+
},
|
|
13560
|
+
{
|
|
13561
|
+
"id": "2",
|
|
13562
|
+
"title": "Validate"
|
|
13563
|
+
},
|
|
13564
|
+
{
|
|
13565
|
+
"id": "3",
|
|
13566
|
+
"title": "Fix"
|
|
13567
|
+
},
|
|
13568
|
+
{
|
|
13569
|
+
"id": "4",
|
|
13570
|
+
"title": "Done"
|
|
13571
|
+
}
|
|
13572
|
+
]
|
|
14241
13573
|
},
|
|
14242
13574
|
{
|
|
14243
13575
|
"type": "stack",
|
|
@@ -14358,8 +13690,28 @@
|
|
|
14358
13690
|
{
|
|
14359
13691
|
"type": "wizard-progress",
|
|
14360
13692
|
"currentStep": "@entity.totalSteps",
|
|
14361
|
-
"
|
|
14362
|
-
|
|
13693
|
+
"steps": [
|
|
13694
|
+
{
|
|
13695
|
+
"id": "0",
|
|
13696
|
+
"title": "Plan"
|
|
13697
|
+
},
|
|
13698
|
+
{
|
|
13699
|
+
"id": "1",
|
|
13700
|
+
"title": "Generate"
|
|
13701
|
+
},
|
|
13702
|
+
{
|
|
13703
|
+
"id": "2",
|
|
13704
|
+
"title": "Validate"
|
|
13705
|
+
},
|
|
13706
|
+
{
|
|
13707
|
+
"id": "3",
|
|
13708
|
+
"title": "Fix"
|
|
13709
|
+
},
|
|
13710
|
+
{
|
|
13711
|
+
"id": "4",
|
|
13712
|
+
"title": "Done"
|
|
13713
|
+
}
|
|
13714
|
+
]
|
|
14363
13715
|
},
|
|
14364
13716
|
{
|
|
14365
13717
|
"type": "alert",
|
|
@@ -14448,8 +13800,28 @@
|
|
|
14448
13800
|
{
|
|
14449
13801
|
"type": "wizard-progress",
|
|
14450
13802
|
"currentStep": "@entity.currentStep",
|
|
14451
|
-
"
|
|
14452
|
-
|
|
13803
|
+
"steps": [
|
|
13804
|
+
{
|
|
13805
|
+
"id": "0",
|
|
13806
|
+
"title": "Plan"
|
|
13807
|
+
},
|
|
13808
|
+
{
|
|
13809
|
+
"id": "1",
|
|
13810
|
+
"title": "Generate"
|
|
13811
|
+
},
|
|
13812
|
+
{
|
|
13813
|
+
"id": "2",
|
|
13814
|
+
"title": "Validate"
|
|
13815
|
+
},
|
|
13816
|
+
{
|
|
13817
|
+
"id": "3",
|
|
13818
|
+
"title": "Fix"
|
|
13819
|
+
},
|
|
13820
|
+
{
|
|
13821
|
+
"id": "4",
|
|
13822
|
+
"title": "Done"
|
|
13823
|
+
}
|
|
13824
|
+
]
|
|
14453
13825
|
},
|
|
14454
13826
|
{
|
|
14455
13827
|
"type": "alert",
|
|
@@ -14555,8 +13927,28 @@
|
|
|
14555
13927
|
{
|
|
14556
13928
|
"type": "wizard-progress",
|
|
14557
13929
|
"currentStep": "@entity.currentStep",
|
|
14558
|
-
"
|
|
14559
|
-
|
|
13930
|
+
"steps": [
|
|
13931
|
+
{
|
|
13932
|
+
"id": "0",
|
|
13933
|
+
"title": "Plan"
|
|
13934
|
+
},
|
|
13935
|
+
{
|
|
13936
|
+
"id": "1",
|
|
13937
|
+
"title": "Generate"
|
|
13938
|
+
},
|
|
13939
|
+
{
|
|
13940
|
+
"id": "2",
|
|
13941
|
+
"title": "Validate"
|
|
13942
|
+
},
|
|
13943
|
+
{
|
|
13944
|
+
"id": "3",
|
|
13945
|
+
"title": "Fix"
|
|
13946
|
+
},
|
|
13947
|
+
{
|
|
13948
|
+
"id": "4",
|
|
13949
|
+
"title": "Done"
|
|
13950
|
+
}
|
|
13951
|
+
]
|
|
14560
13952
|
},
|
|
14561
13953
|
{
|
|
14562
13954
|
"type": "button",
|
|
@@ -14645,8 +14037,28 @@
|
|
|
14645
14037
|
{
|
|
14646
14038
|
"type": "wizard-progress",
|
|
14647
14039
|
"currentStep": "@entity.currentStep",
|
|
14648
|
-
"
|
|
14649
|
-
|
|
14040
|
+
"steps": [
|
|
14041
|
+
{
|
|
14042
|
+
"id": "0",
|
|
14043
|
+
"title": "Plan"
|
|
14044
|
+
},
|
|
14045
|
+
{
|
|
14046
|
+
"id": "1",
|
|
14047
|
+
"title": "Generate"
|
|
14048
|
+
},
|
|
14049
|
+
{
|
|
14050
|
+
"id": "2",
|
|
14051
|
+
"title": "Validate"
|
|
14052
|
+
},
|
|
14053
|
+
{
|
|
14054
|
+
"id": "3",
|
|
14055
|
+
"title": "Fix"
|
|
14056
|
+
},
|
|
14057
|
+
{
|
|
14058
|
+
"id": "4",
|
|
14059
|
+
"title": "Done"
|
|
14060
|
+
}
|
|
14061
|
+
]
|
|
14650
14062
|
},
|
|
14651
14063
|
{
|
|
14652
14064
|
"type": "button",
|
|
@@ -14735,8 +14147,28 @@
|
|
|
14735
14147
|
{
|
|
14736
14148
|
"type": "wizard-progress",
|
|
14737
14149
|
"currentStep": "@entity.currentStep",
|
|
14738
|
-
"
|
|
14739
|
-
|
|
14150
|
+
"steps": [
|
|
14151
|
+
{
|
|
14152
|
+
"id": "0",
|
|
14153
|
+
"title": "Plan"
|
|
14154
|
+
},
|
|
14155
|
+
{
|
|
14156
|
+
"id": "1",
|
|
14157
|
+
"title": "Generate"
|
|
14158
|
+
},
|
|
14159
|
+
{
|
|
14160
|
+
"id": "2",
|
|
14161
|
+
"title": "Validate"
|
|
14162
|
+
},
|
|
14163
|
+
{
|
|
14164
|
+
"id": "3",
|
|
14165
|
+
"title": "Fix"
|
|
14166
|
+
},
|
|
14167
|
+
{
|
|
14168
|
+
"id": "4",
|
|
14169
|
+
"title": "Done"
|
|
14170
|
+
}
|
|
14171
|
+
]
|
|
14740
14172
|
},
|
|
14741
14173
|
{
|
|
14742
14174
|
"type": "button",
|
|
@@ -14825,8 +14257,28 @@
|
|
|
14825
14257
|
{
|
|
14826
14258
|
"type": "wizard-progress",
|
|
14827
14259
|
"currentStep": "@entity.currentStep",
|
|
14828
|
-
"
|
|
14829
|
-
|
|
14260
|
+
"steps": [
|
|
14261
|
+
{
|
|
14262
|
+
"id": "0",
|
|
14263
|
+
"title": "Plan"
|
|
14264
|
+
},
|
|
14265
|
+
{
|
|
14266
|
+
"id": "1",
|
|
14267
|
+
"title": "Generate"
|
|
14268
|
+
},
|
|
14269
|
+
{
|
|
14270
|
+
"id": "2",
|
|
14271
|
+
"title": "Validate"
|
|
14272
|
+
},
|
|
14273
|
+
{
|
|
14274
|
+
"id": "3",
|
|
14275
|
+
"title": "Fix"
|
|
14276
|
+
},
|
|
14277
|
+
{
|
|
14278
|
+
"id": "4",
|
|
14279
|
+
"title": "Done"
|
|
14280
|
+
}
|
|
14281
|
+
]
|
|
14830
14282
|
},
|
|
14831
14283
|
{
|
|
14832
14284
|
"type": "button",
|