@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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-agent-session",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-session as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentSessionOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentSession",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agentsessions",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -56,23 +56,84 @@
|
|
|
56
56
|
"traits": [
|
|
57
57
|
{
|
|
58
58
|
"name": "AgentSessionBrowse",
|
|
59
|
-
"linkedEntity": "AgentSession",
|
|
60
59
|
"category": "interaction",
|
|
60
|
+
"linkedEntity": "AgentSession",
|
|
61
|
+
"emits": [
|
|
62
|
+
{
|
|
63
|
+
"event": "AgentSessionLoaded",
|
|
64
|
+
"description": "Fired when AgentSession finishes loading",
|
|
65
|
+
"scope": "internal",
|
|
66
|
+
"payload": [
|
|
67
|
+
{
|
|
68
|
+
"name": "id",
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "name",
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "description",
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "status",
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "createdAt",
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "sessionId",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "parentId",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "label",
|
|
97
|
+
"type": "string"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"event": "AgentSessionLoadFailed",
|
|
103
|
+
"description": "Fired when AgentSession fails to load",
|
|
104
|
+
"scope": "internal",
|
|
105
|
+
"payload": [
|
|
106
|
+
{
|
|
107
|
+
"name": "message",
|
|
108
|
+
"type": "string"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
],
|
|
61
113
|
"listens": [
|
|
62
114
|
{
|
|
63
115
|
"event": "FORKED",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
116
|
+
"triggers": "INIT",
|
|
117
|
+
"source": {
|
|
118
|
+
"kind": "trait",
|
|
119
|
+
"trait": "AgentSessionAgent"
|
|
120
|
+
}
|
|
66
121
|
},
|
|
67
122
|
{
|
|
68
123
|
"event": "LABELED",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
124
|
+
"triggers": "INIT",
|
|
125
|
+
"source": {
|
|
126
|
+
"kind": "trait",
|
|
127
|
+
"trait": "AgentSessionLabel"
|
|
128
|
+
}
|
|
71
129
|
},
|
|
72
130
|
{
|
|
73
131
|
"event": "ENDED",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
132
|
+
"triggers": "INIT",
|
|
133
|
+
"source": {
|
|
134
|
+
"kind": "trait",
|
|
135
|
+
"trait": "AgentSessionAgent"
|
|
136
|
+
}
|
|
76
137
|
}
|
|
77
138
|
],
|
|
78
139
|
"stateMachine": {
|
|
@@ -88,20 +149,22 @@
|
|
|
88
149
|
"name": "Initialize"
|
|
89
150
|
},
|
|
90
151
|
{
|
|
91
|
-
"key": "
|
|
92
|
-
"name": "
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
"key": "LABEL",
|
|
96
|
-
"name": "LABEL"
|
|
152
|
+
"key": "AgentSessionLoaded",
|
|
153
|
+
"name": "AgentSession loaded"
|
|
97
154
|
},
|
|
98
155
|
{
|
|
99
|
-
"key": "
|
|
100
|
-
"name": "
|
|
156
|
+
"key": "AgentSessionLoadFailed",
|
|
157
|
+
"name": "AgentSession load failed",
|
|
158
|
+
"payload": [
|
|
159
|
+
{
|
|
160
|
+
"name": "message",
|
|
161
|
+
"type": "string"
|
|
162
|
+
}
|
|
163
|
+
]
|
|
101
164
|
},
|
|
102
165
|
{
|
|
103
166
|
"key": "VIEW",
|
|
104
|
-
"name": "
|
|
167
|
+
"name": "View",
|
|
105
168
|
"payload": [
|
|
106
169
|
{
|
|
107
170
|
"name": "id",
|
|
@@ -129,28 +192,23 @@
|
|
|
129
192
|
"render-ui",
|
|
130
193
|
"main",
|
|
131
194
|
{
|
|
132
|
-
"type": "stack",
|
|
133
|
-
"direction": "vertical",
|
|
134
195
|
"gap": "lg",
|
|
135
|
-
"className": "max-w-5xl mx-auto w-full",
|
|
136
196
|
"children": [
|
|
137
197
|
{
|
|
198
|
+
"justify": "space-between",
|
|
138
199
|
"type": "stack",
|
|
139
200
|
"direction": "horizontal",
|
|
140
|
-
"gap": "md",
|
|
141
|
-
"justify": "space-between",
|
|
142
|
-
"align": "center",
|
|
143
201
|
"children": [
|
|
144
202
|
{
|
|
203
|
+
"gap": "sm",
|
|
145
204
|
"type": "stack",
|
|
146
205
|
"direction": "horizontal",
|
|
147
|
-
"gap": "sm",
|
|
148
206
|
"align": "center",
|
|
149
207
|
"children": [
|
|
150
208
|
{
|
|
209
|
+
"size": "lg",
|
|
151
210
|
"type": "icon",
|
|
152
|
-
"name": "terminal"
|
|
153
|
-
"size": "lg"
|
|
211
|
+
"name": "terminal"
|
|
154
212
|
},
|
|
155
213
|
{
|
|
156
214
|
"type": "typography",
|
|
@@ -161,75 +219,65 @@
|
|
|
161
219
|
},
|
|
162
220
|
{
|
|
163
221
|
"type": "stack",
|
|
164
|
-
"direction": "horizontal",
|
|
165
222
|
"gap": "sm",
|
|
223
|
+
"direction": "horizontal",
|
|
166
224
|
"children": [
|
|
167
225
|
{
|
|
226
|
+
"icon": "git-branch",
|
|
227
|
+
"variant": "secondary",
|
|
168
228
|
"type": "button",
|
|
169
229
|
"label": "Fork",
|
|
170
|
-
"event": "FORK"
|
|
171
|
-
"variant": "secondary",
|
|
172
|
-
"icon": "git-branch"
|
|
230
|
+
"event": "FORK"
|
|
173
231
|
},
|
|
174
232
|
{
|
|
175
|
-
"type": "button",
|
|
176
|
-
"label": "Label",
|
|
177
233
|
"event": "LABEL",
|
|
178
|
-
"
|
|
179
|
-
"
|
|
234
|
+
"label": "Label",
|
|
235
|
+
"type": "button",
|
|
236
|
+
"icon": "tag",
|
|
237
|
+
"variant": "secondary"
|
|
180
238
|
},
|
|
181
239
|
{
|
|
182
|
-
"type": "button",
|
|
183
|
-
"label": "End",
|
|
184
240
|
"event": "END",
|
|
185
241
|
"variant": "ghost",
|
|
242
|
+
"label": "End",
|
|
243
|
+
"type": "button",
|
|
186
244
|
"icon": "square"
|
|
187
245
|
}
|
|
188
246
|
]
|
|
189
247
|
}
|
|
190
|
-
]
|
|
248
|
+
],
|
|
249
|
+
"align": "center",
|
|
250
|
+
"gap": "md"
|
|
191
251
|
},
|
|
192
252
|
{
|
|
193
253
|
"type": "divider"
|
|
194
254
|
},
|
|
195
255
|
{
|
|
196
|
-
"type": "data-grid",
|
|
197
|
-
"entity": "AgentSession",
|
|
198
256
|
"emptyIcon": "inbox",
|
|
199
|
-
"emptyTitle": "No sessions yet",
|
|
200
|
-
"emptyDescription": "Start a new session to begin.",
|
|
201
|
-
"itemActions": [
|
|
202
|
-
{
|
|
203
|
-
"label": "View",
|
|
204
|
-
"event": "VIEW",
|
|
205
|
-
"variant": "ghost",
|
|
206
|
-
"size": "sm"
|
|
207
|
-
}
|
|
208
|
-
],
|
|
209
257
|
"columns": [
|
|
210
258
|
{
|
|
259
|
+
"variant": "h4",
|
|
211
260
|
"name": "sessionId",
|
|
212
261
|
"label": "Session ID",
|
|
213
|
-
"variant": "h4",
|
|
214
262
|
"icon": "terminal"
|
|
215
263
|
},
|
|
216
264
|
{
|
|
217
|
-
"name": "status",
|
|
218
|
-
"label": "Status",
|
|
219
265
|
"variant": "badge",
|
|
266
|
+
"label": "Status",
|
|
267
|
+
"name": "status",
|
|
220
268
|
"colorMap": {
|
|
221
|
-
"
|
|
222
|
-
"completed": "success",
|
|
223
|
-
"done": "success",
|
|
224
|
-
"pending": "warning",
|
|
225
|
-
"draft": "warning",
|
|
226
|
-
"scheduled": "warning",
|
|
269
|
+
"cancelled": "destructive",
|
|
227
270
|
"inactive": "neutral",
|
|
271
|
+
"scheduled": "warning",
|
|
272
|
+
"done": "success",
|
|
273
|
+
"completed": "success",
|
|
274
|
+
"failed": "destructive",
|
|
228
275
|
"archived": "neutral",
|
|
276
|
+
"active": "success",
|
|
277
|
+
"pending": "warning",
|
|
229
278
|
"disabled": "neutral",
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"failed": "destructive"
|
|
279
|
+
"draft": "warning",
|
|
280
|
+
"error": "destructive"
|
|
233
281
|
}
|
|
234
282
|
},
|
|
235
283
|
{
|
|
@@ -237,28 +285,96 @@
|
|
|
237
285
|
"label": "Label",
|
|
238
286
|
"variant": "caption"
|
|
239
287
|
}
|
|
240
|
-
]
|
|
288
|
+
],
|
|
289
|
+
"entity": "AgentSession",
|
|
290
|
+
"type": "data-grid",
|
|
291
|
+
"emptyDescription": "Start a new session to begin.",
|
|
292
|
+
"itemActions": [
|
|
293
|
+
{
|
|
294
|
+
"size": "sm",
|
|
295
|
+
"variant": "ghost",
|
|
296
|
+
"label": "View",
|
|
297
|
+
"event": "VIEW"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"emptyTitle": "No sessions yet"
|
|
241
301
|
}
|
|
242
|
-
]
|
|
302
|
+
],
|
|
303
|
+
"className": "max-w-5xl mx-auto w-full",
|
|
304
|
+
"type": "stack",
|
|
305
|
+
"direction": "vertical"
|
|
243
306
|
}
|
|
244
307
|
]
|
|
245
308
|
]
|
|
246
309
|
}
|
|
247
310
|
]
|
|
248
|
-
}
|
|
311
|
+
},
|
|
312
|
+
"scope": "collection"
|
|
249
313
|
},
|
|
250
314
|
{
|
|
251
315
|
"name": "AgentSessionLabel",
|
|
252
|
-
"linkedEntity": "AgentSession",
|
|
253
316
|
"category": "interaction",
|
|
317
|
+
"linkedEntity": "AgentSession",
|
|
254
318
|
"emits": [
|
|
255
319
|
{
|
|
256
|
-
"event": "
|
|
257
|
-
"scope": "external"
|
|
320
|
+
"event": "LABELED",
|
|
321
|
+
"scope": "external",
|
|
322
|
+
"payload": [
|
|
323
|
+
{
|
|
324
|
+
"name": "id",
|
|
325
|
+
"type": "string"
|
|
326
|
+
}
|
|
327
|
+
]
|
|
258
328
|
},
|
|
259
329
|
{
|
|
260
|
-
"event": "
|
|
261
|
-
"
|
|
330
|
+
"event": "AgentSessionLoaded",
|
|
331
|
+
"description": "Fired when AgentSession finishes loading",
|
|
332
|
+
"scope": "internal",
|
|
333
|
+
"payload": [
|
|
334
|
+
{
|
|
335
|
+
"name": "id",
|
|
336
|
+
"type": "string"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"name": "name",
|
|
340
|
+
"type": "string"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "description",
|
|
344
|
+
"type": "string"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "status",
|
|
348
|
+
"type": "string"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"name": "createdAt",
|
|
352
|
+
"type": "string"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "sessionId",
|
|
356
|
+
"type": "string"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "parentId",
|
|
360
|
+
"type": "string"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "label",
|
|
364
|
+
"type": "string"
|
|
365
|
+
}
|
|
366
|
+
]
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"event": "AgentSessionLoadFailed",
|
|
370
|
+
"description": "Fired when AgentSession fails to load",
|
|
371
|
+
"scope": "internal",
|
|
372
|
+
"payload": [
|
|
373
|
+
{
|
|
374
|
+
"name": "message",
|
|
375
|
+
"type": "string"
|
|
376
|
+
}
|
|
377
|
+
]
|
|
262
378
|
}
|
|
263
379
|
],
|
|
264
380
|
"stateMachine": {
|
|
@@ -278,7 +394,7 @@
|
|
|
278
394
|
},
|
|
279
395
|
{
|
|
280
396
|
"key": "LABEL",
|
|
281
|
-
"name": "
|
|
397
|
+
"name": "Label"
|
|
282
398
|
},
|
|
283
399
|
{
|
|
284
400
|
"key": "CLOSE",
|
|
@@ -294,6 +410,24 @@
|
|
|
294
410
|
"required": true
|
|
295
411
|
}
|
|
296
412
|
]
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"key": "LABELED",
|
|
416
|
+
"name": "Labeled"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"key": "AgentSessionLoaded",
|
|
420
|
+
"name": "AgentSession loaded"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"key": "AgentSessionLoadFailed",
|
|
424
|
+
"name": "AgentSession load failed",
|
|
425
|
+
"payload": [
|
|
426
|
+
{
|
|
427
|
+
"name": "message",
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
]
|
|
297
431
|
}
|
|
298
432
|
],
|
|
299
433
|
"transitions": [
|
|
@@ -315,61 +449,67 @@
|
|
|
315
449
|
"effects": [
|
|
316
450
|
[
|
|
317
451
|
"fetch",
|
|
318
|
-
"AgentSession"
|
|
452
|
+
"AgentSession",
|
|
453
|
+
{
|
|
454
|
+
"emit": {
|
|
455
|
+
"success": "AgentSessionLoaded",
|
|
456
|
+
"failure": "AgentSessionLoadFailed"
|
|
457
|
+
}
|
|
458
|
+
}
|
|
319
459
|
],
|
|
320
460
|
[
|
|
321
461
|
"render-ui",
|
|
322
462
|
"modal",
|
|
323
463
|
{
|
|
324
|
-
"type": "stack",
|
|
325
|
-
"direction": "vertical",
|
|
326
464
|
"gap": "md",
|
|
465
|
+
"direction": "vertical",
|
|
466
|
+
"type": "stack",
|
|
327
467
|
"children": [
|
|
328
468
|
{
|
|
329
|
-
"type": "stack",
|
|
330
|
-
"direction": "horizontal",
|
|
331
469
|
"gap": "sm",
|
|
470
|
+
"direction": "horizontal",
|
|
332
471
|
"children": [
|
|
333
472
|
{
|
|
473
|
+
"size": "md",
|
|
334
474
|
"type": "icon",
|
|
335
|
-
"name": "tag"
|
|
336
|
-
"size": "md"
|
|
475
|
+
"name": "tag"
|
|
337
476
|
},
|
|
338
477
|
{
|
|
339
478
|
"type": "typography",
|
|
340
479
|
"content": "Label Session",
|
|
341
480
|
"variant": "h3"
|
|
342
481
|
}
|
|
343
|
-
]
|
|
482
|
+
],
|
|
483
|
+
"type": "stack"
|
|
344
484
|
},
|
|
345
485
|
{
|
|
346
486
|
"type": "divider"
|
|
347
487
|
},
|
|
348
488
|
{
|
|
349
|
-
"type": "stack",
|
|
350
|
-
"direction": "horizontal",
|
|
351
489
|
"gap": "md",
|
|
490
|
+
"direction": "horizontal",
|
|
491
|
+
"type": "stack",
|
|
352
492
|
"children": [
|
|
353
493
|
{
|
|
354
|
-
"type": "typography",
|
|
355
494
|
"variant": "caption",
|
|
495
|
+
"type": "typography",
|
|
356
496
|
"content": "Session:"
|
|
357
497
|
},
|
|
358
498
|
{
|
|
359
|
-
"
|
|
360
|
-
"
|
|
499
|
+
"label": "@entity.sessionId",
|
|
500
|
+
"type": "badge"
|
|
361
501
|
}
|
|
362
502
|
]
|
|
363
503
|
},
|
|
364
504
|
{
|
|
365
|
-
"type": "form-section",
|
|
366
|
-
"entity": "AgentSession",
|
|
367
|
-
"mode": "edit",
|
|
368
505
|
"submitEvent": "SAVE",
|
|
369
506
|
"cancelEvent": "CLOSE",
|
|
507
|
+
"mode": "edit",
|
|
508
|
+
"entity": "AgentSession",
|
|
370
509
|
"fields": [
|
|
371
510
|
"label"
|
|
372
|
-
]
|
|
511
|
+
],
|
|
512
|
+
"type": "form-section"
|
|
373
513
|
}
|
|
374
514
|
]
|
|
375
515
|
}
|
|
@@ -386,6 +526,13 @@
|
|
|
386
526
|
"modal",
|
|
387
527
|
null
|
|
388
528
|
],
|
|
529
|
+
[
|
|
530
|
+
"render-ui",
|
|
531
|
+
"main",
|
|
532
|
+
{
|
|
533
|
+
"type": "box"
|
|
534
|
+
}
|
|
535
|
+
],
|
|
389
536
|
[
|
|
390
537
|
"notify",
|
|
391
538
|
"Cancelled",
|
|
@@ -409,6 +556,13 @@
|
|
|
409
556
|
"modal",
|
|
410
557
|
null
|
|
411
558
|
],
|
|
559
|
+
[
|
|
560
|
+
"render-ui",
|
|
561
|
+
"main",
|
|
562
|
+
{
|
|
563
|
+
"type": "box"
|
|
564
|
+
}
|
|
565
|
+
],
|
|
412
566
|
[
|
|
413
567
|
"emit",
|
|
414
568
|
"LABELED"
|
|
@@ -416,12 +570,13 @@
|
|
|
416
570
|
]
|
|
417
571
|
}
|
|
418
572
|
]
|
|
419
|
-
}
|
|
573
|
+
},
|
|
574
|
+
"scope": "collection"
|
|
420
575
|
},
|
|
421
576
|
{
|
|
422
577
|
"name": "AgentSessionAgent",
|
|
423
|
-
"linkedEntity": "AgentSession",
|
|
424
578
|
"category": "interaction",
|
|
579
|
+
"linkedEntity": "AgentSession",
|
|
425
580
|
"emits": [
|
|
426
581
|
{
|
|
427
582
|
"event": "ENDED",
|
|
@@ -442,18 +597,74 @@
|
|
|
442
597
|
"type": "string"
|
|
443
598
|
}
|
|
444
599
|
]
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"event": "AgentSessionLoaded",
|
|
603
|
+
"description": "Fired when AgentSession finishes loading",
|
|
604
|
+
"scope": "internal",
|
|
605
|
+
"payload": [
|
|
606
|
+
{
|
|
607
|
+
"name": "id",
|
|
608
|
+
"type": "string"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "name",
|
|
612
|
+
"type": "string"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "description",
|
|
616
|
+
"type": "string"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "status",
|
|
620
|
+
"type": "string"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"name": "createdAt",
|
|
624
|
+
"type": "string"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "sessionId",
|
|
628
|
+
"type": "string"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"name": "parentId",
|
|
632
|
+
"type": "string"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"name": "label",
|
|
636
|
+
"type": "string"
|
|
637
|
+
}
|
|
638
|
+
]
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"event": "AgentSessionLoadFailed",
|
|
642
|
+
"description": "Fired when AgentSession fails to load",
|
|
643
|
+
"scope": "internal",
|
|
644
|
+
"payload": [
|
|
645
|
+
{
|
|
646
|
+
"name": "message",
|
|
647
|
+
"type": "string"
|
|
648
|
+
}
|
|
649
|
+
]
|
|
445
650
|
}
|
|
446
651
|
],
|
|
447
652
|
"listens": [
|
|
448
653
|
{
|
|
449
654
|
"event": "ENDED",
|
|
450
655
|
"triggers": "INIT",
|
|
451
|
-
"
|
|
656
|
+
"source": {
|
|
657
|
+
"kind": "trait",
|
|
658
|
+
"trait": "AgentSessionAgent"
|
|
659
|
+
}
|
|
452
660
|
},
|
|
453
661
|
{
|
|
454
662
|
"event": "FORKED",
|
|
455
663
|
"triggers": "INIT",
|
|
456
|
-
"
|
|
664
|
+
"source": {
|
|
665
|
+
"kind": "trait",
|
|
666
|
+
"trait": "AgentSessionAgent"
|
|
667
|
+
}
|
|
457
668
|
}
|
|
458
669
|
],
|
|
459
670
|
"stateMachine": {
|
|
@@ -476,7 +687,7 @@
|
|
|
476
687
|
},
|
|
477
688
|
{
|
|
478
689
|
"key": "FORK",
|
|
479
|
-
"name": "Fork
|
|
690
|
+
"name": "Fork"
|
|
480
691
|
},
|
|
481
692
|
{
|
|
482
693
|
"key": "DO_LABEL",
|
|
@@ -489,10 +700,6 @@
|
|
|
489
700
|
}
|
|
490
701
|
]
|
|
491
702
|
},
|
|
492
|
-
{
|
|
493
|
-
"key": "END",
|
|
494
|
-
"name": "End Session"
|
|
495
|
-
},
|
|
496
703
|
{
|
|
497
704
|
"key": "LABELED",
|
|
498
705
|
"name": "Labeled",
|
|
@@ -504,14 +711,29 @@
|
|
|
504
711
|
}
|
|
505
712
|
]
|
|
506
713
|
},
|
|
714
|
+
{
|
|
715
|
+
"key": "END",
|
|
716
|
+
"name": "End"
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"key": "ENDED",
|
|
720
|
+
"name": "Ended"
|
|
721
|
+
},
|
|
507
722
|
{
|
|
508
723
|
"key": "FORKED",
|
|
509
|
-
"name": "Forked"
|
|
724
|
+
"name": "Forked"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"key": "AgentSessionLoaded",
|
|
728
|
+
"name": "AgentSession loaded"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"key": "AgentSessionLoadFailed",
|
|
732
|
+
"name": "AgentSession load failed",
|
|
510
733
|
"payload": [
|
|
511
734
|
{
|
|
512
|
-
"name": "
|
|
513
|
-
"type": "
|
|
514
|
-
"required": true
|
|
735
|
+
"name": "message",
|
|
736
|
+
"type": "string"
|
|
515
737
|
}
|
|
516
738
|
]
|
|
517
739
|
}
|
|
@@ -524,7 +746,13 @@
|
|
|
524
746
|
"effects": [
|
|
525
747
|
[
|
|
526
748
|
"fetch",
|
|
527
|
-
"AgentSession"
|
|
749
|
+
"AgentSession",
|
|
750
|
+
{
|
|
751
|
+
"emit": {
|
|
752
|
+
"failure": "AgentSessionLoadFailed",
|
|
753
|
+
"success": "AgentSessionLoaded"
|
|
754
|
+
}
|
|
755
|
+
}
|
|
528
756
|
],
|
|
529
757
|
[
|
|
530
758
|
"agent/session-id"
|
|
@@ -538,10 +766,10 @@
|
|
|
538
766
|
"render-ui",
|
|
539
767
|
"main",
|
|
540
768
|
{
|
|
541
|
-
"type": "empty-state",
|
|
542
769
|
"icon": "git-branch",
|
|
543
770
|
"title": "Session",
|
|
544
|
-
"description": "Session is ready"
|
|
771
|
+
"description": "Session is ready",
|
|
772
|
+
"type": "empty-state"
|
|
545
773
|
}
|
|
546
774
|
]
|
|
547
775
|
]
|
|
@@ -567,9 +795,9 @@
|
|
|
567
795
|
"create",
|
|
568
796
|
"AgentSession",
|
|
569
797
|
{
|
|
570
|
-
"sessionId": "@entity.sessionId",
|
|
571
|
-
"parentId": "@entity.parentId",
|
|
572
798
|
"status": "forked",
|
|
799
|
+
"parentId": "@entity.parentId",
|
|
800
|
+
"sessionId": "@entity.sessionId",
|
|
573
801
|
"createdAt": "@now"
|
|
574
802
|
}
|
|
575
803
|
],
|
|
@@ -579,6 +807,59 @@
|
|
|
579
807
|
]
|
|
580
808
|
]
|
|
581
809
|
},
|
|
810
|
+
{
|
|
811
|
+
"from": "active",
|
|
812
|
+
"to": "active",
|
|
813
|
+
"event": "DO_LABEL",
|
|
814
|
+
"effects": [
|
|
815
|
+
[
|
|
816
|
+
"agent/label",
|
|
817
|
+
"@payload.data.label"
|
|
818
|
+
],
|
|
819
|
+
[
|
|
820
|
+
"set",
|
|
821
|
+
"@entity.label",
|
|
822
|
+
"@payload.data.label"
|
|
823
|
+
]
|
|
824
|
+
]
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"from": "active",
|
|
828
|
+
"to": "active",
|
|
829
|
+
"event": "LABELED",
|
|
830
|
+
"effects": [
|
|
831
|
+
[
|
|
832
|
+
"agent/label",
|
|
833
|
+
"@entity.label"
|
|
834
|
+
],
|
|
835
|
+
[
|
|
836
|
+
"fetch",
|
|
837
|
+
"AgentSession",
|
|
838
|
+
{
|
|
839
|
+
"emit": {
|
|
840
|
+
"success": "AgentSessionLoaded",
|
|
841
|
+
"failure": "AgentSessionLoadFailed"
|
|
842
|
+
}
|
|
843
|
+
}
|
|
844
|
+
]
|
|
845
|
+
]
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"from": "active",
|
|
849
|
+
"to": "ended",
|
|
850
|
+
"event": "END",
|
|
851
|
+
"effects": [
|
|
852
|
+
[
|
|
853
|
+
"set",
|
|
854
|
+
"@entity.status",
|
|
855
|
+
"ended"
|
|
856
|
+
],
|
|
857
|
+
[
|
|
858
|
+
"emit",
|
|
859
|
+
"ENDED"
|
|
860
|
+
]
|
|
861
|
+
]
|
|
862
|
+
},
|
|
582
863
|
{
|
|
583
864
|
"from": "forked",
|
|
584
865
|
"to": "forked",
|
|
@@ -612,22 +893,6 @@
|
|
|
612
893
|
]
|
|
613
894
|
]
|
|
614
895
|
},
|
|
615
|
-
{
|
|
616
|
-
"from": "active",
|
|
617
|
-
"to": "active",
|
|
618
|
-
"event": "DO_LABEL",
|
|
619
|
-
"effects": [
|
|
620
|
-
[
|
|
621
|
-
"agent/label",
|
|
622
|
-
"@payload.data.label"
|
|
623
|
-
],
|
|
624
|
-
[
|
|
625
|
-
"set",
|
|
626
|
-
"@entity.label",
|
|
627
|
-
"@payload.data.label"
|
|
628
|
-
]
|
|
629
|
-
]
|
|
630
|
-
},
|
|
631
896
|
{
|
|
632
897
|
"from": "forked",
|
|
633
898
|
"to": "forked",
|
|
@@ -644,21 +909,6 @@
|
|
|
644
909
|
]
|
|
645
910
|
]
|
|
646
911
|
},
|
|
647
|
-
{
|
|
648
|
-
"from": "active",
|
|
649
|
-
"to": "active",
|
|
650
|
-
"event": "LABELED",
|
|
651
|
-
"effects": [
|
|
652
|
-
[
|
|
653
|
-
"agent/label",
|
|
654
|
-
"@entity.label"
|
|
655
|
-
],
|
|
656
|
-
[
|
|
657
|
-
"fetch",
|
|
658
|
-
"AgentSession"
|
|
659
|
-
]
|
|
660
|
-
]
|
|
661
|
-
},
|
|
662
912
|
{
|
|
663
913
|
"from": "forked",
|
|
664
914
|
"to": "forked",
|
|
@@ -670,23 +920,13 @@
|
|
|
670
920
|
],
|
|
671
921
|
[
|
|
672
922
|
"fetch",
|
|
673
|
-
"AgentSession"
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
"event": "END",
|
|
681
|
-
"effects": [
|
|
682
|
-
[
|
|
683
|
-
"set",
|
|
684
|
-
"@entity.status",
|
|
685
|
-
"ended"
|
|
686
|
-
],
|
|
687
|
-
[
|
|
688
|
-
"emit",
|
|
689
|
-
"ENDED"
|
|
923
|
+
"AgentSession",
|
|
924
|
+
{
|
|
925
|
+
"emit": {
|
|
926
|
+
"success": "AgentSessionLoaded",
|
|
927
|
+
"failure": "AgentSessionLoadFailed"
|
|
928
|
+
}
|
|
929
|
+
}
|
|
690
930
|
]
|
|
691
931
|
]
|
|
692
932
|
},
|
|
@@ -713,7 +953,13 @@
|
|
|
713
953
|
"effects": [
|
|
714
954
|
[
|
|
715
955
|
"fetch",
|
|
716
|
-
"AgentSession"
|
|
956
|
+
"AgentSession",
|
|
957
|
+
{
|
|
958
|
+
"emit": {
|
|
959
|
+
"success": "AgentSessionLoaded",
|
|
960
|
+
"failure": "AgentSessionLoadFailed"
|
|
961
|
+
}
|
|
962
|
+
}
|
|
717
963
|
],
|
|
718
964
|
[
|
|
719
965
|
"agent/session-id"
|
|
@@ -732,16 +978,17 @@
|
|
|
732
978
|
"render-ui",
|
|
733
979
|
"main",
|
|
734
980
|
{
|
|
981
|
+
"description": "Session is ready",
|
|
735
982
|
"type": "empty-state",
|
|
736
|
-
"icon": "git-branch",
|
|
737
983
|
"title": "Session",
|
|
738
|
-
"
|
|
984
|
+
"icon": "git-branch"
|
|
739
985
|
}
|
|
740
986
|
]
|
|
741
987
|
]
|
|
742
988
|
}
|
|
743
989
|
]
|
|
744
|
-
}
|
|
990
|
+
},
|
|
991
|
+
"scope": "collection"
|
|
745
992
|
}
|
|
746
993
|
],
|
|
747
994
|
"pages": [
|
|
@@ -763,4 +1010,4 @@
|
|
|
763
1010
|
]
|
|
764
1011
|
}
|
|
765
1012
|
]
|
|
766
|
-
}
|
|
1013
|
+
}
|