@almadar/std 6.5.2 → 7.2.0
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/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-agent-step-progress",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-step-progress as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentStepProgressOrbital",
|
|
@@ -38,35 +38,50 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "currentStep",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "totalSteps",
|
|
45
45
|
"type": "number",
|
|
46
|
-
"default": 4
|
|
46
|
+
"default": 4.0
|
|
47
47
|
}
|
|
48
48
|
]
|
|
49
49
|
},
|
|
50
50
|
"traits": [
|
|
51
51
|
{
|
|
52
52
|
"name": "AgentStepProgressProgress",
|
|
53
|
-
"linkedEntity": "AgentStepProgress",
|
|
54
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "AgentStepProgress",
|
|
55
55
|
"emits": [
|
|
56
56
|
{
|
|
57
|
-
"event": "
|
|
58
|
-
"
|
|
57
|
+
"event": "AgentStepProgressLoaded",
|
|
58
|
+
"description": "Fired when AgentStepProgress finishes loading",
|
|
59
|
+
"scope": "internal",
|
|
59
60
|
"payload": [
|
|
60
61
|
{
|
|
61
|
-
"name": "
|
|
62
|
+
"name": "id",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "name",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "description",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "status",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "createdAt",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "currentStep",
|
|
62
83
|
"type": "number"
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"event": "COMPLETE",
|
|
68
|
-
"scope": "external",
|
|
69
|
-
"payload": [
|
|
84
|
+
},
|
|
70
85
|
{
|
|
71
86
|
"name": "totalSteps",
|
|
72
87
|
"type": "number"
|
|
@@ -74,33 +89,17 @@
|
|
|
74
89
|
]
|
|
75
90
|
},
|
|
76
91
|
{
|
|
77
|
-
"event": "
|
|
78
|
-
"
|
|
92
|
+
"event": "AgentStepProgressLoadFailed",
|
|
93
|
+
"description": "Fired when AgentStepProgress fails to load",
|
|
94
|
+
"scope": "internal",
|
|
79
95
|
"payload": [
|
|
80
96
|
{
|
|
81
|
-
"name": "
|
|
82
|
-
"type": "
|
|
97
|
+
"name": "message",
|
|
98
|
+
"type": "string"
|
|
83
99
|
}
|
|
84
100
|
]
|
|
85
101
|
}
|
|
86
102
|
],
|
|
87
|
-
"listens": [
|
|
88
|
-
{
|
|
89
|
-
"event": "ADVANCE",
|
|
90
|
-
"triggers": "ADVANCE",
|
|
91
|
-
"scope": "external"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"event": "COMPLETE",
|
|
95
|
-
"triggers": "COMPLETE",
|
|
96
|
-
"scope": "external"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"event": "FAIL",
|
|
100
|
-
"triggers": "FAIL",
|
|
101
|
-
"scope": "external"
|
|
102
|
-
}
|
|
103
|
-
],
|
|
104
103
|
"stateMachine": {
|
|
105
104
|
"states": [
|
|
106
105
|
{
|
|
@@ -124,23 +123,37 @@
|
|
|
124
123
|
},
|
|
125
124
|
{
|
|
126
125
|
"key": "START",
|
|
127
|
-
"name": "Start
|
|
126
|
+
"name": "Start"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"key": "RESET",
|
|
130
|
+
"name": "Reset"
|
|
128
131
|
},
|
|
129
132
|
{
|
|
130
133
|
"key": "ADVANCE",
|
|
131
|
-
"name": "Advance
|
|
134
|
+
"name": "Advance"
|
|
132
135
|
},
|
|
133
136
|
{
|
|
134
137
|
"key": "COMPLETE",
|
|
135
|
-
"name": "Complete
|
|
138
|
+
"name": "Complete"
|
|
136
139
|
},
|
|
137
140
|
{
|
|
138
141
|
"key": "FAIL",
|
|
139
|
-
"name": "
|
|
142
|
+
"name": "Fail"
|
|
140
143
|
},
|
|
141
144
|
{
|
|
142
|
-
"key": "
|
|
143
|
-
"name": "
|
|
145
|
+
"key": "AgentStepProgressLoaded",
|
|
146
|
+
"name": "AgentStepProgress loaded"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"key": "AgentStepProgressLoadFailed",
|
|
150
|
+
"name": "AgentStepProgress load failed",
|
|
151
|
+
"payload": [
|
|
152
|
+
{
|
|
153
|
+
"name": "message",
|
|
154
|
+
"type": "string"
|
|
155
|
+
}
|
|
156
|
+
]
|
|
144
157
|
}
|
|
145
158
|
],
|
|
146
159
|
"transitions": [
|
|
@@ -151,45 +164,48 @@
|
|
|
151
164
|
"effects": [
|
|
152
165
|
[
|
|
153
166
|
"fetch",
|
|
154
|
-
"AgentStepProgress"
|
|
167
|
+
"AgentStepProgress",
|
|
168
|
+
{
|
|
169
|
+
"emit": {
|
|
170
|
+
"failure": "AgentStepProgressLoadFailed",
|
|
171
|
+
"success": "AgentStepProgressLoaded"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
155
174
|
],
|
|
156
175
|
[
|
|
157
176
|
"render-ui",
|
|
158
177
|
"main",
|
|
159
178
|
{
|
|
160
|
-
"type": "stack",
|
|
161
|
-
"direction": "vertical",
|
|
162
|
-
"gap": "lg",
|
|
163
179
|
"children": [
|
|
164
180
|
{
|
|
165
181
|
"type": "stack",
|
|
166
182
|
"direction": "horizontal",
|
|
167
|
-
"gap": "sm",
|
|
168
183
|
"align": "center",
|
|
169
184
|
"children": [
|
|
170
185
|
{
|
|
186
|
+
"size": "lg",
|
|
171
187
|
"type": "icon",
|
|
172
|
-
"name": "list-ordered"
|
|
173
|
-
"size": "lg"
|
|
188
|
+
"name": "list-ordered"
|
|
174
189
|
},
|
|
175
190
|
{
|
|
191
|
+
"variant": "h2",
|
|
176
192
|
"type": "typography",
|
|
177
|
-
"content": "AgentStepProgress"
|
|
178
|
-
"variant": "h2"
|
|
193
|
+
"content": "AgentStepProgress"
|
|
179
194
|
},
|
|
180
195
|
{
|
|
196
|
+
"variant": "default",
|
|
181
197
|
"type": "badge",
|
|
182
|
-
"label": "Idle"
|
|
183
|
-
"variant": "default"
|
|
198
|
+
"label": "Idle"
|
|
184
199
|
}
|
|
185
|
-
]
|
|
200
|
+
],
|
|
201
|
+
"gap": "sm"
|
|
186
202
|
},
|
|
187
203
|
{
|
|
188
204
|
"type": "divider"
|
|
189
205
|
},
|
|
190
206
|
{
|
|
191
|
-
"type": "wizard-progress",
|
|
192
207
|
"currentStep": "@entity.currentStep",
|
|
208
|
+
"type": "wizard-progress",
|
|
193
209
|
"steps": [
|
|
194
210
|
{
|
|
195
211
|
"id": "0",
|
|
@@ -204,19 +220,22 @@
|
|
|
204
220
|
"title": "Validate"
|
|
205
221
|
},
|
|
206
222
|
{
|
|
207
|
-
"
|
|
208
|
-
"
|
|
223
|
+
"title": "Complete",
|
|
224
|
+
"id": "3"
|
|
209
225
|
}
|
|
210
226
|
]
|
|
211
227
|
},
|
|
212
228
|
{
|
|
213
229
|
"type": "button",
|
|
214
|
-
"label": "Start",
|
|
215
|
-
"event": "START",
|
|
216
230
|
"variant": "primary",
|
|
217
|
-
"
|
|
231
|
+
"event": "START",
|
|
232
|
+
"icon": "play",
|
|
233
|
+
"label": "Start"
|
|
218
234
|
}
|
|
219
|
-
]
|
|
235
|
+
],
|
|
236
|
+
"type": "stack",
|
|
237
|
+
"direction": "vertical",
|
|
238
|
+
"gap": "lg"
|
|
220
239
|
}
|
|
221
240
|
]
|
|
222
241
|
]
|
|
@@ -234,38 +253,37 @@
|
|
|
234
253
|
[
|
|
235
254
|
"set",
|
|
236
255
|
"@entity.currentStep",
|
|
237
|
-
0
|
|
256
|
+
0.0
|
|
238
257
|
],
|
|
239
258
|
[
|
|
240
259
|
"render-ui",
|
|
241
260
|
"main",
|
|
242
261
|
{
|
|
243
|
-
"type": "stack",
|
|
244
|
-
"direction": "vertical",
|
|
245
262
|
"gap": "lg",
|
|
263
|
+
"type": "stack",
|
|
246
264
|
"children": [
|
|
247
265
|
{
|
|
248
266
|
"type": "stack",
|
|
249
267
|
"direction": "horizontal",
|
|
250
268
|
"gap": "sm",
|
|
251
|
-
"align": "center",
|
|
252
269
|
"children": [
|
|
253
270
|
{
|
|
254
|
-
"type": "icon",
|
|
255
271
|
"name": "loader",
|
|
256
|
-
"size": "lg"
|
|
272
|
+
"size": "lg",
|
|
273
|
+
"type": "icon"
|
|
257
274
|
},
|
|
258
275
|
{
|
|
259
276
|
"type": "typography",
|
|
260
|
-
"
|
|
261
|
-
"
|
|
277
|
+
"variant": "h2",
|
|
278
|
+
"content": "AgentStepProgress"
|
|
262
279
|
},
|
|
263
280
|
{
|
|
264
|
-
"type": "badge",
|
|
265
281
|
"label": "In Progress",
|
|
282
|
+
"type": "badge",
|
|
266
283
|
"variant": "warning"
|
|
267
284
|
}
|
|
268
|
-
]
|
|
285
|
+
],
|
|
286
|
+
"align": "center"
|
|
269
287
|
},
|
|
270
288
|
{
|
|
271
289
|
"type": "divider"
|
|
@@ -279,8 +297,8 @@
|
|
|
279
297
|
"title": "Initialize"
|
|
280
298
|
},
|
|
281
299
|
{
|
|
282
|
-
"
|
|
283
|
-
"
|
|
300
|
+
"title": "Process",
|
|
301
|
+
"id": "1"
|
|
284
302
|
},
|
|
285
303
|
{
|
|
286
304
|
"id": "2",
|
|
@@ -294,14 +312,14 @@
|
|
|
294
312
|
},
|
|
295
313
|
{
|
|
296
314
|
"type": "stack",
|
|
297
|
-
"direction": "horizontal",
|
|
298
|
-
"gap": "sm",
|
|
299
315
|
"align": "center",
|
|
316
|
+
"gap": "sm",
|
|
317
|
+
"direction": "horizontal",
|
|
300
318
|
"children": [
|
|
301
319
|
{
|
|
302
320
|
"type": "stat-display",
|
|
303
|
-
"
|
|
304
|
-
"
|
|
321
|
+
"value": "@entity.currentStep",
|
|
322
|
+
"label": "Current Step"
|
|
305
323
|
},
|
|
306
324
|
{
|
|
307
325
|
"type": "stat-display",
|
|
@@ -311,25 +329,109 @@
|
|
|
311
329
|
]
|
|
312
330
|
},
|
|
313
331
|
{
|
|
314
|
-
"type": "stack",
|
|
315
|
-
"direction": "horizontal",
|
|
316
|
-
"gap": "sm",
|
|
317
332
|
"children": [
|
|
318
333
|
{
|
|
334
|
+
"icon": "chevron-right",
|
|
319
335
|
"type": "button",
|
|
320
|
-
"label": "Advance",
|
|
321
336
|
"event": "ADVANCE",
|
|
322
|
-
"
|
|
323
|
-
"
|
|
337
|
+
"label": "Advance",
|
|
338
|
+
"variant": "primary"
|
|
324
339
|
},
|
|
325
340
|
{
|
|
326
|
-
"type": "button",
|
|
327
341
|
"label": "Reset",
|
|
328
342
|
"event": "RESET",
|
|
329
|
-
"
|
|
330
|
-
"
|
|
343
|
+
"icon": "rotate-ccw",
|
|
344
|
+
"type": "button",
|
|
345
|
+
"variant": "ghost"
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"direction": "horizontal",
|
|
349
|
+
"type": "stack",
|
|
350
|
+
"gap": "sm"
|
|
351
|
+
}
|
|
352
|
+
],
|
|
353
|
+
"direction": "vertical"
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
]
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"from": "idle",
|
|
360
|
+
"to": "idle",
|
|
361
|
+
"event": "RESET",
|
|
362
|
+
"effects": [
|
|
363
|
+
[
|
|
364
|
+
"set",
|
|
365
|
+
"@entity.status",
|
|
366
|
+
"idle"
|
|
367
|
+
],
|
|
368
|
+
[
|
|
369
|
+
"set",
|
|
370
|
+
"@entity.currentStep",
|
|
371
|
+
0.0
|
|
372
|
+
],
|
|
373
|
+
[
|
|
374
|
+
"render-ui",
|
|
375
|
+
"main",
|
|
376
|
+
{
|
|
377
|
+
"type": "stack",
|
|
378
|
+
"direction": "vertical",
|
|
379
|
+
"gap": "lg",
|
|
380
|
+
"children": [
|
|
381
|
+
{
|
|
382
|
+
"gap": "sm",
|
|
383
|
+
"align": "center",
|
|
384
|
+
"direction": "horizontal",
|
|
385
|
+
"type": "stack",
|
|
386
|
+
"children": [
|
|
387
|
+
{
|
|
388
|
+
"name": "list-ordered",
|
|
389
|
+
"type": "icon",
|
|
390
|
+
"size": "lg"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"content": "AgentStepProgress",
|
|
394
|
+
"variant": "h2",
|
|
395
|
+
"type": "typography"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"type": "badge",
|
|
399
|
+
"label": "Idle",
|
|
400
|
+
"variant": "default"
|
|
331
401
|
}
|
|
332
402
|
]
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"type": "divider"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"steps": [
|
|
409
|
+
{
|
|
410
|
+
"title": "Initialize",
|
|
411
|
+
"id": "0"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"title": "Process",
|
|
415
|
+
"id": "1"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"title": "Validate",
|
|
419
|
+
"id": "2"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"title": "Complete",
|
|
423
|
+
"id": "3"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"type": "wizard-progress",
|
|
427
|
+
"currentStep": "@entity.currentStep"
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"type": "button",
|
|
431
|
+
"event": "START",
|
|
432
|
+
"label": "Start",
|
|
433
|
+
"icon": "play",
|
|
434
|
+
"variant": "primary"
|
|
333
435
|
}
|
|
334
436
|
]
|
|
335
437
|
}
|
|
@@ -352,39 +454,38 @@
|
|
|
352
454
|
[
|
|
353
455
|
"+",
|
|
354
456
|
"@entity.currentStep",
|
|
355
|
-
1
|
|
457
|
+
1.0
|
|
356
458
|
]
|
|
357
459
|
],
|
|
358
460
|
[
|
|
359
461
|
"render-ui",
|
|
360
462
|
"main",
|
|
361
463
|
{
|
|
362
|
-
"type": "stack",
|
|
363
|
-
"direction": "vertical",
|
|
364
464
|
"gap": "lg",
|
|
465
|
+
"type": "stack",
|
|
365
466
|
"children": [
|
|
366
467
|
{
|
|
367
|
-
"type": "stack",
|
|
368
|
-
"direction": "horizontal",
|
|
369
468
|
"gap": "sm",
|
|
469
|
+
"type": "stack",
|
|
370
470
|
"align": "center",
|
|
371
471
|
"children": [
|
|
372
472
|
{
|
|
373
|
-
"type": "icon",
|
|
374
473
|
"name": "loader",
|
|
375
|
-
"size": "lg"
|
|
474
|
+
"size": "lg",
|
|
475
|
+
"type": "icon"
|
|
376
476
|
},
|
|
377
477
|
{
|
|
378
|
-
"type": "typography",
|
|
379
478
|
"content": "AgentStepProgress",
|
|
380
|
-
"variant": "h2"
|
|
479
|
+
"variant": "h2",
|
|
480
|
+
"type": "typography"
|
|
381
481
|
},
|
|
382
482
|
{
|
|
383
483
|
"type": "badge",
|
|
384
484
|
"label": "In Progress",
|
|
385
485
|
"variant": "warning"
|
|
386
486
|
}
|
|
387
|
-
]
|
|
487
|
+
],
|
|
488
|
+
"direction": "horizontal"
|
|
388
489
|
},
|
|
389
490
|
{
|
|
390
491
|
"type": "divider"
|
|
@@ -398,8 +499,8 @@
|
|
|
398
499
|
"title": "Initialize"
|
|
399
500
|
},
|
|
400
501
|
{
|
|
401
|
-
"
|
|
402
|
-
"
|
|
502
|
+
"title": "Process",
|
|
503
|
+
"id": "1"
|
|
403
504
|
},
|
|
404
505
|
{
|
|
405
506
|
"id": "2",
|
|
@@ -412,45 +513,46 @@
|
|
|
412
513
|
]
|
|
413
514
|
},
|
|
414
515
|
{
|
|
415
|
-
"type": "stack",
|
|
416
|
-
"direction": "horizontal",
|
|
417
516
|
"gap": "sm",
|
|
418
|
-
"align": "center",
|
|
419
517
|
"children": [
|
|
420
518
|
{
|
|
421
519
|
"type": "stat-display",
|
|
422
|
-
"
|
|
423
|
-
"
|
|
520
|
+
"value": "@entity.currentStep",
|
|
521
|
+
"label": "Current Step"
|
|
424
522
|
},
|
|
425
523
|
{
|
|
426
524
|
"type": "stat-display",
|
|
427
525
|
"label": "Total Steps",
|
|
428
526
|
"value": "@entity.totalSteps"
|
|
429
527
|
}
|
|
430
|
-
]
|
|
528
|
+
],
|
|
529
|
+
"type": "stack",
|
|
530
|
+
"align": "center",
|
|
531
|
+
"direction": "horizontal"
|
|
431
532
|
},
|
|
432
533
|
{
|
|
534
|
+
"gap": "sm",
|
|
433
535
|
"type": "stack",
|
|
434
536
|
"direction": "horizontal",
|
|
435
|
-
"gap": "sm",
|
|
436
537
|
"children": [
|
|
437
538
|
{
|
|
438
539
|
"type": "button",
|
|
540
|
+
"icon": "chevron-right",
|
|
439
541
|
"label": "Advance",
|
|
440
|
-
"event": "ADVANCE",
|
|
441
542
|
"variant": "primary",
|
|
442
|
-
"
|
|
543
|
+
"event": "ADVANCE"
|
|
443
544
|
},
|
|
444
545
|
{
|
|
445
546
|
"type": "button",
|
|
446
547
|
"label": "Reset",
|
|
447
|
-
"event": "RESET",
|
|
448
548
|
"variant": "ghost",
|
|
449
|
-
"icon": "rotate-ccw"
|
|
549
|
+
"icon": "rotate-ccw",
|
|
550
|
+
"event": "RESET"
|
|
450
551
|
}
|
|
451
552
|
]
|
|
452
553
|
}
|
|
453
|
-
]
|
|
554
|
+
],
|
|
555
|
+
"direction": "vertical"
|
|
454
556
|
}
|
|
455
557
|
]
|
|
456
558
|
]
|
|
@@ -474,32 +576,30 @@
|
|
|
474
576
|
"render-ui",
|
|
475
577
|
"main",
|
|
476
578
|
{
|
|
477
|
-
"type": "stack",
|
|
478
579
|
"direction": "vertical",
|
|
479
|
-
"gap": "lg",
|
|
480
580
|
"children": [
|
|
481
581
|
{
|
|
482
|
-
"type": "stack",
|
|
483
|
-
"direction": "horizontal",
|
|
484
582
|
"gap": "sm",
|
|
485
|
-
"align": "center",
|
|
486
583
|
"children": [
|
|
487
584
|
{
|
|
585
|
+
"size": "lg",
|
|
488
586
|
"type": "icon",
|
|
489
|
-
"name": "check-circle"
|
|
490
|
-
"size": "lg"
|
|
587
|
+
"name": "check-circle"
|
|
491
588
|
},
|
|
492
589
|
{
|
|
590
|
+
"variant": "h2",
|
|
493
591
|
"type": "typography",
|
|
494
|
-
"content": "AgentStepProgress"
|
|
495
|
-
"variant": "h2"
|
|
592
|
+
"content": "AgentStepProgress"
|
|
496
593
|
},
|
|
497
594
|
{
|
|
498
|
-
"type": "badge",
|
|
499
595
|
"label": "Completed",
|
|
500
|
-
"variant": "success"
|
|
596
|
+
"variant": "success",
|
|
597
|
+
"type": "badge"
|
|
501
598
|
}
|
|
502
|
-
]
|
|
599
|
+
],
|
|
600
|
+
"type": "stack",
|
|
601
|
+
"direction": "horizontal",
|
|
602
|
+
"align": "center"
|
|
503
603
|
},
|
|
504
604
|
{
|
|
505
605
|
"type": "divider"
|
|
@@ -517,8 +617,8 @@
|
|
|
517
617
|
"title": "Process"
|
|
518
618
|
},
|
|
519
619
|
{
|
|
520
|
-
"
|
|
521
|
-
"
|
|
620
|
+
"title": "Validate",
|
|
621
|
+
"id": "2"
|
|
522
622
|
},
|
|
523
623
|
{
|
|
524
624
|
"id": "3",
|
|
@@ -532,13 +632,15 @@
|
|
|
532
632
|
"message": "All steps completed successfully."
|
|
533
633
|
},
|
|
534
634
|
{
|
|
535
|
-
"type": "button",
|
|
536
635
|
"label": "Reset",
|
|
537
|
-
"
|
|
636
|
+
"icon": "rotate-ccw",
|
|
538
637
|
"variant": "ghost",
|
|
539
|
-
"
|
|
638
|
+
"type": "button",
|
|
639
|
+
"event": "RESET"
|
|
540
640
|
}
|
|
541
|
-
]
|
|
641
|
+
],
|
|
642
|
+
"gap": "lg",
|
|
643
|
+
"type": "stack"
|
|
542
644
|
}
|
|
543
645
|
]
|
|
544
646
|
]
|
|
@@ -557,38 +659,37 @@
|
|
|
557
659
|
"render-ui",
|
|
558
660
|
"main",
|
|
559
661
|
{
|
|
560
|
-
"type": "stack",
|
|
561
662
|
"direction": "vertical",
|
|
663
|
+
"type": "stack",
|
|
562
664
|
"gap": "lg",
|
|
563
665
|
"children": [
|
|
564
666
|
{
|
|
565
|
-
"type": "stack",
|
|
566
667
|
"direction": "horizontal",
|
|
567
|
-
"gap": "sm",
|
|
568
668
|
"align": "center",
|
|
669
|
+
"gap": "sm",
|
|
569
670
|
"children": [
|
|
570
671
|
{
|
|
571
672
|
"type": "icon",
|
|
572
|
-
"
|
|
573
|
-
"
|
|
673
|
+
"size": "lg",
|
|
674
|
+
"name": "x-circle"
|
|
574
675
|
},
|
|
575
676
|
{
|
|
576
677
|
"type": "typography",
|
|
577
|
-
"
|
|
578
|
-
"
|
|
678
|
+
"variant": "h2",
|
|
679
|
+
"content": "AgentStepProgress"
|
|
579
680
|
},
|
|
580
681
|
{
|
|
581
682
|
"type": "badge",
|
|
582
683
|
"label": "Failed",
|
|
583
684
|
"variant": "destructive"
|
|
584
685
|
}
|
|
585
|
-
]
|
|
686
|
+
],
|
|
687
|
+
"type": "stack"
|
|
586
688
|
},
|
|
587
689
|
{
|
|
588
690
|
"type": "divider"
|
|
589
691
|
},
|
|
590
692
|
{
|
|
591
|
-
"type": "wizard-progress",
|
|
592
693
|
"currentStep": "@entity.currentStep",
|
|
593
694
|
"steps": [
|
|
594
695
|
{
|
|
@@ -604,117 +705,35 @@
|
|
|
604
705
|
"title": "Validate"
|
|
605
706
|
},
|
|
606
707
|
{
|
|
607
|
-
"
|
|
608
|
-
"
|
|
708
|
+
"title": "Complete",
|
|
709
|
+
"id": "3"
|
|
609
710
|
}
|
|
610
|
-
]
|
|
711
|
+
],
|
|
712
|
+
"type": "wizard-progress"
|
|
611
713
|
},
|
|
612
714
|
{
|
|
613
715
|
"type": "alert",
|
|
614
|
-
"
|
|
615
|
-
"
|
|
716
|
+
"message": "Pipeline failed at the current step.",
|
|
717
|
+
"variant": "error"
|
|
616
718
|
},
|
|
617
719
|
{
|
|
618
|
-
"type": "stack",
|
|
619
720
|
"direction": "horizontal",
|
|
721
|
+
"type": "stack",
|
|
620
722
|
"gap": "sm",
|
|
621
723
|
"children": [
|
|
622
724
|
{
|
|
623
725
|
"type": "stat-display",
|
|
624
|
-
"
|
|
625
|
-
"
|
|
726
|
+
"value": "@entity.currentStep",
|
|
727
|
+
"label": "Failed At Step"
|
|
626
728
|
}
|
|
627
729
|
]
|
|
628
730
|
},
|
|
629
731
|
{
|
|
630
|
-
"
|
|
631
|
-
"label": "Reset",
|
|
632
|
-
"event": "RESET",
|
|
732
|
+
"icon": "rotate-ccw",
|
|
633
733
|
"variant": "ghost",
|
|
634
|
-
"
|
|
635
|
-
}
|
|
636
|
-
]
|
|
637
|
-
}
|
|
638
|
-
]
|
|
639
|
-
]
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
"from": "idle",
|
|
643
|
-
"to": "idle",
|
|
644
|
-
"event": "RESET",
|
|
645
|
-
"effects": [
|
|
646
|
-
[
|
|
647
|
-
"set",
|
|
648
|
-
"@entity.status",
|
|
649
|
-
"idle"
|
|
650
|
-
],
|
|
651
|
-
[
|
|
652
|
-
"set",
|
|
653
|
-
"@entity.currentStep",
|
|
654
|
-
0
|
|
655
|
-
],
|
|
656
|
-
[
|
|
657
|
-
"render-ui",
|
|
658
|
-
"main",
|
|
659
|
-
{
|
|
660
|
-
"type": "stack",
|
|
661
|
-
"direction": "vertical",
|
|
662
|
-
"gap": "lg",
|
|
663
|
-
"children": [
|
|
664
|
-
{
|
|
665
|
-
"type": "stack",
|
|
666
|
-
"direction": "horizontal",
|
|
667
|
-
"gap": "sm",
|
|
668
|
-
"align": "center",
|
|
669
|
-
"children": [
|
|
670
|
-
{
|
|
671
|
-
"type": "icon",
|
|
672
|
-
"name": "list-ordered",
|
|
673
|
-
"size": "lg"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"type": "typography",
|
|
677
|
-
"content": "AgentStepProgress",
|
|
678
|
-
"variant": "h2"
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"type": "badge",
|
|
682
|
-
"label": "Idle",
|
|
683
|
-
"variant": "default"
|
|
684
|
-
}
|
|
685
|
-
]
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"type": "divider"
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"type": "wizard-progress",
|
|
692
|
-
"currentStep": "@entity.currentStep",
|
|
693
|
-
"steps": [
|
|
694
|
-
{
|
|
695
|
-
"id": "0",
|
|
696
|
-
"title": "Initialize"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"id": "1",
|
|
700
|
-
"title": "Process"
|
|
701
|
-
},
|
|
702
|
-
{
|
|
703
|
-
"id": "2",
|
|
704
|
-
"title": "Validate"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
"id": "3",
|
|
708
|
-
"title": "Complete"
|
|
709
|
-
}
|
|
710
|
-
]
|
|
711
|
-
},
|
|
712
|
-
{
|
|
734
|
+
"label": "Reset",
|
|
713
735
|
"type": "button",
|
|
714
|
-
"
|
|
715
|
-
"event": "START",
|
|
716
|
-
"variant": "primary",
|
|
717
|
-
"icon": "play"
|
|
736
|
+
"event": "RESET"
|
|
718
737
|
}
|
|
719
738
|
]
|
|
720
739
|
}
|
|
@@ -734,26 +753,21 @@
|
|
|
734
753
|
[
|
|
735
754
|
"set",
|
|
736
755
|
"@entity.currentStep",
|
|
737
|
-
0
|
|
756
|
+
0.0
|
|
738
757
|
],
|
|
739
758
|
[
|
|
740
759
|
"render-ui",
|
|
741
760
|
"main",
|
|
742
761
|
{
|
|
743
762
|
"type": "stack",
|
|
744
|
-
"direction": "vertical",
|
|
745
|
-
"gap": "lg",
|
|
746
763
|
"children": [
|
|
747
764
|
{
|
|
748
|
-
"type": "stack",
|
|
749
|
-
"direction": "horizontal",
|
|
750
|
-
"gap": "sm",
|
|
751
765
|
"align": "center",
|
|
752
766
|
"children": [
|
|
753
767
|
{
|
|
754
|
-
"
|
|
768
|
+
"size": "lg",
|
|
755
769
|
"name": "list-ordered",
|
|
756
|
-
"
|
|
770
|
+
"type": "icon"
|
|
757
771
|
},
|
|
758
772
|
{
|
|
759
773
|
"type": "typography",
|
|
@@ -761,45 +775,50 @@
|
|
|
761
775
|
"variant": "h2"
|
|
762
776
|
},
|
|
763
777
|
{
|
|
764
|
-
"type": "badge",
|
|
765
778
|
"label": "Idle",
|
|
766
|
-
"variant": "default"
|
|
779
|
+
"variant": "default",
|
|
780
|
+
"type": "badge"
|
|
767
781
|
}
|
|
768
|
-
]
|
|
782
|
+
],
|
|
783
|
+
"gap": "sm",
|
|
784
|
+
"type": "stack",
|
|
785
|
+
"direction": "horizontal"
|
|
769
786
|
},
|
|
770
787
|
{
|
|
771
788
|
"type": "divider"
|
|
772
789
|
},
|
|
773
790
|
{
|
|
774
|
-
"type": "wizard-progress",
|
|
775
|
-
"currentStep": "@entity.currentStep",
|
|
776
791
|
"steps": [
|
|
777
792
|
{
|
|
778
|
-
"
|
|
779
|
-
"
|
|
793
|
+
"title": "Initialize",
|
|
794
|
+
"id": "0"
|
|
780
795
|
},
|
|
781
796
|
{
|
|
782
797
|
"id": "1",
|
|
783
798
|
"title": "Process"
|
|
784
799
|
},
|
|
785
800
|
{
|
|
786
|
-
"
|
|
787
|
-
"
|
|
801
|
+
"title": "Validate",
|
|
802
|
+
"id": "2"
|
|
788
803
|
},
|
|
789
804
|
{
|
|
790
805
|
"id": "3",
|
|
791
806
|
"title": "Complete"
|
|
792
807
|
}
|
|
793
|
-
]
|
|
808
|
+
],
|
|
809
|
+
"type": "wizard-progress",
|
|
810
|
+
"currentStep": "@entity.currentStep"
|
|
794
811
|
},
|
|
795
812
|
{
|
|
796
|
-
"type": "button",
|
|
797
813
|
"label": "Start",
|
|
798
|
-
"
|
|
814
|
+
"icon": "play",
|
|
815
|
+
"type": "button",
|
|
799
816
|
"variant": "primary",
|
|
800
|
-
"
|
|
817
|
+
"event": "START"
|
|
801
818
|
}
|
|
802
|
-
]
|
|
819
|
+
],
|
|
820
|
+
"direction": "vertical",
|
|
821
|
+
"gap": "lg"
|
|
803
822
|
}
|
|
804
823
|
]
|
|
805
824
|
]
|
|
@@ -817,72 +836,72 @@
|
|
|
817
836
|
[
|
|
818
837
|
"set",
|
|
819
838
|
"@entity.currentStep",
|
|
820
|
-
0
|
|
839
|
+
0.0
|
|
821
840
|
],
|
|
822
841
|
[
|
|
823
842
|
"render-ui",
|
|
824
843
|
"main",
|
|
825
844
|
{
|
|
826
845
|
"type": "stack",
|
|
827
|
-
"direction": "vertical",
|
|
828
846
|
"gap": "lg",
|
|
829
847
|
"children": [
|
|
830
848
|
{
|
|
849
|
+
"gap": "sm",
|
|
831
850
|
"type": "stack",
|
|
832
851
|
"direction": "horizontal",
|
|
833
|
-
"gap": "sm",
|
|
834
|
-
"align": "center",
|
|
835
852
|
"children": [
|
|
836
853
|
{
|
|
837
|
-
"
|
|
854
|
+
"size": "lg",
|
|
838
855
|
"name": "list-ordered",
|
|
839
|
-
"
|
|
856
|
+
"type": "icon"
|
|
840
857
|
},
|
|
841
858
|
{
|
|
842
|
-
"
|
|
859
|
+
"variant": "h2",
|
|
843
860
|
"content": "AgentStepProgress",
|
|
844
|
-
"
|
|
861
|
+
"type": "typography"
|
|
845
862
|
},
|
|
846
863
|
{
|
|
847
864
|
"type": "badge",
|
|
848
|
-
"
|
|
849
|
-
"
|
|
865
|
+
"variant": "default",
|
|
866
|
+
"label": "Idle"
|
|
850
867
|
}
|
|
851
|
-
]
|
|
868
|
+
],
|
|
869
|
+
"align": "center"
|
|
852
870
|
},
|
|
853
871
|
{
|
|
854
872
|
"type": "divider"
|
|
855
873
|
},
|
|
856
874
|
{
|
|
857
|
-
"type": "wizard-progress",
|
|
858
875
|
"currentStep": "@entity.currentStep",
|
|
859
876
|
"steps": [
|
|
860
877
|
{
|
|
861
|
-
"
|
|
862
|
-
"
|
|
878
|
+
"title": "Initialize",
|
|
879
|
+
"id": "0"
|
|
863
880
|
},
|
|
864
881
|
{
|
|
865
|
-
"
|
|
866
|
-
"
|
|
882
|
+
"title": "Process",
|
|
883
|
+
"id": "1"
|
|
867
884
|
},
|
|
868
885
|
{
|
|
869
|
-
"
|
|
870
|
-
"
|
|
886
|
+
"title": "Validate",
|
|
887
|
+
"id": "2"
|
|
871
888
|
},
|
|
872
889
|
{
|
|
873
890
|
"id": "3",
|
|
874
891
|
"title": "Complete"
|
|
875
892
|
}
|
|
876
|
-
]
|
|
893
|
+
],
|
|
894
|
+
"type": "wizard-progress"
|
|
877
895
|
},
|
|
878
896
|
{
|
|
879
|
-
"type": "button",
|
|
880
897
|
"label": "Start",
|
|
881
|
-
"
|
|
898
|
+
"icon": "play",
|
|
882
899
|
"variant": "primary",
|
|
883
|
-
"
|
|
900
|
+
"event": "START",
|
|
901
|
+
"type": "button"
|
|
884
902
|
}
|
|
885
|
-
]
|
|
903
|
+
],
|
|
904
|
+
"direction": "vertical"
|
|
886
905
|
}
|
|
887
906
|
]
|
|
888
907
|
]
|
|
@@ -900,45 +919,42 @@
|
|
|
900
919
|
[
|
|
901
920
|
"set",
|
|
902
921
|
"@entity.currentStep",
|
|
903
|
-
0
|
|
922
|
+
0.0
|
|
904
923
|
],
|
|
905
924
|
[
|
|
906
925
|
"render-ui",
|
|
907
926
|
"main",
|
|
908
927
|
{
|
|
909
928
|
"type": "stack",
|
|
910
|
-
"direction": "vertical",
|
|
911
929
|
"gap": "lg",
|
|
912
930
|
"children": [
|
|
913
931
|
{
|
|
914
|
-
"type": "stack",
|
|
915
932
|
"direction": "horizontal",
|
|
916
|
-
"gap": "sm",
|
|
917
933
|
"align": "center",
|
|
918
934
|
"children": [
|
|
919
935
|
{
|
|
920
936
|
"type": "icon",
|
|
921
|
-
"
|
|
922
|
-
"
|
|
937
|
+
"size": "lg",
|
|
938
|
+
"name": "list-ordered"
|
|
923
939
|
},
|
|
924
940
|
{
|
|
925
|
-
"type": "typography",
|
|
926
941
|
"content": "AgentStepProgress",
|
|
942
|
+
"type": "typography",
|
|
927
943
|
"variant": "h2"
|
|
928
944
|
},
|
|
929
945
|
{
|
|
946
|
+
"variant": "default",
|
|
930
947
|
"type": "badge",
|
|
931
|
-
"label": "Idle"
|
|
932
|
-
"variant": "default"
|
|
948
|
+
"label": "Idle"
|
|
933
949
|
}
|
|
934
|
-
]
|
|
950
|
+
],
|
|
951
|
+
"type": "stack",
|
|
952
|
+
"gap": "sm"
|
|
935
953
|
},
|
|
936
954
|
{
|
|
937
955
|
"type": "divider"
|
|
938
956
|
},
|
|
939
957
|
{
|
|
940
|
-
"type": "wizard-progress",
|
|
941
|
-
"currentStep": "@entity.currentStep",
|
|
942
958
|
"steps": [
|
|
943
959
|
{
|
|
944
960
|
"id": "0",
|
|
@@ -956,22 +972,26 @@
|
|
|
956
972
|
"id": "3",
|
|
957
973
|
"title": "Complete"
|
|
958
974
|
}
|
|
959
|
-
]
|
|
975
|
+
],
|
|
976
|
+
"currentStep": "@entity.currentStep",
|
|
977
|
+
"type": "wizard-progress"
|
|
960
978
|
},
|
|
961
979
|
{
|
|
980
|
+
"event": "START",
|
|
962
981
|
"type": "button",
|
|
982
|
+
"icon": "play",
|
|
963
983
|
"label": "Start",
|
|
964
|
-
"
|
|
965
|
-
"variant": "primary",
|
|
966
|
-
"icon": "play"
|
|
984
|
+
"variant": "primary"
|
|
967
985
|
}
|
|
968
|
-
]
|
|
986
|
+
],
|
|
987
|
+
"direction": "vertical"
|
|
969
988
|
}
|
|
970
989
|
]
|
|
971
990
|
]
|
|
972
991
|
}
|
|
973
992
|
]
|
|
974
|
-
}
|
|
993
|
+
},
|
|
994
|
+
"scope": "instance"
|
|
975
995
|
}
|
|
976
996
|
],
|
|
977
997
|
"pages": [
|
|
@@ -987,4 +1007,4 @@
|
|
|
987
1007
|
]
|
|
988
1008
|
}
|
|
989
1009
|
]
|
|
990
|
-
}
|
|
1010
|
+
}
|