@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-tool-call",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-tool-call as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentToolCallOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentToolCall",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agenttoolcalls",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
{
|
|
60
60
|
"name": "duration",
|
|
61
61
|
"type": "number",
|
|
62
|
-
"default": 0
|
|
62
|
+
"default": 0.0
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"name": "action",
|
|
@@ -81,16 +81,88 @@
|
|
|
81
81
|
"traits": [
|
|
82
82
|
{
|
|
83
83
|
"name": "AgentToolCallModal",
|
|
84
|
-
"linkedEntity": "AgentToolCall",
|
|
85
84
|
"category": "interaction",
|
|
85
|
+
"linkedEntity": "AgentToolCall",
|
|
86
86
|
"emits": [
|
|
87
87
|
{
|
|
88
|
-
"event": "
|
|
89
|
-
"scope": "external"
|
|
88
|
+
"event": "INVOKED",
|
|
89
|
+
"scope": "external",
|
|
90
|
+
"payload": [
|
|
91
|
+
{
|
|
92
|
+
"name": "id",
|
|
93
|
+
"type": "string"
|
|
94
|
+
}
|
|
95
|
+
]
|
|
90
96
|
},
|
|
91
97
|
{
|
|
92
|
-
"event": "
|
|
93
|
-
"
|
|
98
|
+
"event": "AgentToolCallLoaded",
|
|
99
|
+
"description": "Fired when AgentToolCall finishes loading",
|
|
100
|
+
"scope": "internal",
|
|
101
|
+
"payload": [
|
|
102
|
+
{
|
|
103
|
+
"name": "id",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "name",
|
|
108
|
+
"type": "string"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "description",
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "status",
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "createdAt",
|
|
120
|
+
"type": "string"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "toolName",
|
|
124
|
+
"type": "string"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "args",
|
|
128
|
+
"type": "string"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "result",
|
|
132
|
+
"type": "string"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "error",
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "duration",
|
|
140
|
+
"type": "number"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "action",
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "detail",
|
|
148
|
+
"type": "string"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "timestamp",
|
|
152
|
+
"type": "string"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"event": "AgentToolCallLoadFailed",
|
|
158
|
+
"description": "Fired when AgentToolCall fails to load",
|
|
159
|
+
"scope": "internal",
|
|
160
|
+
"payload": [
|
|
161
|
+
{
|
|
162
|
+
"name": "message",
|
|
163
|
+
"type": "string"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
94
166
|
}
|
|
95
167
|
],
|
|
96
168
|
"stateMachine": {
|
|
@@ -110,7 +182,7 @@
|
|
|
110
182
|
},
|
|
111
183
|
{
|
|
112
184
|
"key": "INVOKE",
|
|
113
|
-
"name": "
|
|
185
|
+
"name": "Invoke"
|
|
114
186
|
},
|
|
115
187
|
{
|
|
116
188
|
"key": "CLOSE",
|
|
@@ -126,6 +198,24 @@
|
|
|
126
198
|
"required": true
|
|
127
199
|
}
|
|
128
200
|
]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"key": "INVOKED",
|
|
204
|
+
"name": "Invoked"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"key": "AgentToolCallLoaded",
|
|
208
|
+
"name": "AgentToolCall loaded"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"key": "AgentToolCallLoadFailed",
|
|
212
|
+
"name": "AgentToolCall load failed",
|
|
213
|
+
"payload": [
|
|
214
|
+
{
|
|
215
|
+
"name": "message",
|
|
216
|
+
"type": "string"
|
|
217
|
+
}
|
|
218
|
+
]
|
|
129
219
|
}
|
|
130
220
|
],
|
|
131
221
|
"transitions": [
|
|
@@ -142,12 +232,9 @@
|
|
|
142
232
|
"render-ui",
|
|
143
233
|
"main",
|
|
144
234
|
{
|
|
145
|
-
"type": "stack",
|
|
146
|
-
"direction": "vertical",
|
|
147
235
|
"gap": "lg",
|
|
148
236
|
"children": [
|
|
149
237
|
{
|
|
150
|
-
"type": "stack",
|
|
151
238
|
"direction": "horizontal",
|
|
152
239
|
"gap": "md",
|
|
153
240
|
"justify": "space-between",
|
|
@@ -158,9 +245,9 @@
|
|
|
158
245
|
"gap": "md",
|
|
159
246
|
"children": [
|
|
160
247
|
{
|
|
248
|
+
"size": "lg",
|
|
161
249
|
"type": "icon",
|
|
162
|
-
"name": "wrench"
|
|
163
|
-
"size": "lg"
|
|
250
|
+
"name": "wrench"
|
|
164
251
|
},
|
|
165
252
|
{
|
|
166
253
|
"type": "typography",
|
|
@@ -171,23 +258,26 @@
|
|
|
171
258
|
},
|
|
172
259
|
{
|
|
173
260
|
"type": "button",
|
|
174
|
-
"
|
|
175
|
-
"event": "INVOKE",
|
|
261
|
+
"icon": "wrench",
|
|
176
262
|
"variant": "primary",
|
|
177
|
-
"
|
|
263
|
+
"label": "Open",
|
|
264
|
+
"event": "INVOKE"
|
|
178
265
|
}
|
|
179
|
-
]
|
|
266
|
+
],
|
|
267
|
+
"type": "stack"
|
|
180
268
|
},
|
|
181
269
|
{
|
|
182
270
|
"type": "divider"
|
|
183
271
|
},
|
|
184
272
|
{
|
|
185
273
|
"type": "empty-state",
|
|
274
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
186
275
|
"icon": "wrench",
|
|
187
|
-
"title": "Nothing open"
|
|
188
|
-
"description": "Click Open to view details in a modal overlay."
|
|
276
|
+
"title": "Nothing open"
|
|
189
277
|
}
|
|
190
|
-
]
|
|
278
|
+
],
|
|
279
|
+
"direction": "vertical",
|
|
280
|
+
"type": "stack"
|
|
191
281
|
}
|
|
192
282
|
]
|
|
193
283
|
]
|
|
@@ -201,14 +291,10 @@
|
|
|
201
291
|
"render-ui",
|
|
202
292
|
"modal",
|
|
203
293
|
{
|
|
204
|
-
"type": "stack",
|
|
205
|
-
"direction": "vertical",
|
|
206
294
|
"gap": "md",
|
|
207
295
|
"children": [
|
|
208
296
|
{
|
|
209
|
-
"type": "stack",
|
|
210
297
|
"direction": "horizontal",
|
|
211
|
-
"gap": "sm",
|
|
212
298
|
"children": [
|
|
213
299
|
{
|
|
214
300
|
"type": "icon",
|
|
@@ -216,27 +302,31 @@
|
|
|
216
302
|
"size": "md"
|
|
217
303
|
},
|
|
218
304
|
{
|
|
219
|
-
"type": "typography",
|
|
220
305
|
"content": "Invoke Tool",
|
|
306
|
+
"type": "typography",
|
|
221
307
|
"variant": "h3"
|
|
222
308
|
}
|
|
223
|
-
]
|
|
309
|
+
],
|
|
310
|
+
"type": "stack",
|
|
311
|
+
"gap": "sm"
|
|
224
312
|
},
|
|
225
313
|
{
|
|
226
314
|
"type": "divider"
|
|
227
315
|
},
|
|
228
316
|
{
|
|
229
|
-
"type": "form-section",
|
|
230
|
-
"entity": "AgentToolCall",
|
|
231
|
-
"mode": "create",
|
|
232
|
-
"submitEvent": "SAVE",
|
|
233
317
|
"cancelEvent": "CLOSE",
|
|
234
318
|
"fields": [
|
|
235
319
|
"toolName",
|
|
236
320
|
"args"
|
|
237
|
-
]
|
|
321
|
+
],
|
|
322
|
+
"entity": "AgentToolCall",
|
|
323
|
+
"type": "form-section",
|
|
324
|
+
"mode": "create",
|
|
325
|
+
"submitEvent": "SAVE"
|
|
238
326
|
}
|
|
239
|
-
]
|
|
327
|
+
],
|
|
328
|
+
"type": "stack",
|
|
329
|
+
"direction": "vertical"
|
|
240
330
|
}
|
|
241
331
|
]
|
|
242
332
|
]
|
|
@@ -264,50 +354,50 @@
|
|
|
264
354
|
"render-ui",
|
|
265
355
|
"main",
|
|
266
356
|
{
|
|
267
|
-
"type": "stack",
|
|
268
357
|
"direction": "vertical",
|
|
269
358
|
"gap": "lg",
|
|
359
|
+
"type": "stack",
|
|
270
360
|
"children": [
|
|
271
361
|
{
|
|
272
|
-
"type": "stack",
|
|
273
|
-
"direction": "horizontal",
|
|
274
|
-
"gap": "md",
|
|
275
|
-
"justify": "space-between",
|
|
276
362
|
"children": [
|
|
277
363
|
{
|
|
278
|
-
"type": "stack",
|
|
279
364
|
"direction": "horizontal",
|
|
365
|
+
"type": "stack",
|
|
280
366
|
"gap": "md",
|
|
281
367
|
"children": [
|
|
282
368
|
{
|
|
283
|
-
"
|
|
369
|
+
"size": "lg",
|
|
284
370
|
"name": "wrench",
|
|
285
|
-
"
|
|
371
|
+
"type": "icon"
|
|
286
372
|
},
|
|
287
373
|
{
|
|
374
|
+
"variant": "h2",
|
|
288
375
|
"type": "typography",
|
|
289
|
-
"content": "Invoke Tool"
|
|
290
|
-
"variant": "h2"
|
|
376
|
+
"content": "Invoke Tool"
|
|
291
377
|
}
|
|
292
378
|
]
|
|
293
379
|
},
|
|
294
380
|
{
|
|
295
|
-
"type": "button",
|
|
296
381
|
"label": "Open",
|
|
297
382
|
"event": "INVOKE",
|
|
383
|
+
"icon": "wrench",
|
|
298
384
|
"variant": "primary",
|
|
299
|
-
"
|
|
385
|
+
"type": "button"
|
|
300
386
|
}
|
|
301
|
-
]
|
|
387
|
+
],
|
|
388
|
+
"justify": "space-between",
|
|
389
|
+
"type": "stack",
|
|
390
|
+
"direction": "horizontal",
|
|
391
|
+
"gap": "md"
|
|
302
392
|
},
|
|
303
393
|
{
|
|
304
394
|
"type": "divider"
|
|
305
395
|
},
|
|
306
396
|
{
|
|
307
|
-
"
|
|
308
|
-
"icon": "wrench",
|
|
397
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
309
398
|
"title": "Nothing open",
|
|
310
|
-
"
|
|
399
|
+
"type": "empty-state",
|
|
400
|
+
"icon": "wrench"
|
|
311
401
|
}
|
|
312
402
|
]
|
|
313
403
|
}
|
|
@@ -343,62 +433,63 @@
|
|
|
343
433
|
"main",
|
|
344
434
|
{
|
|
345
435
|
"type": "stack",
|
|
346
|
-
"direction": "vertical",
|
|
347
|
-
"gap": "lg",
|
|
348
436
|
"children": [
|
|
349
437
|
{
|
|
350
438
|
"type": "stack",
|
|
351
|
-
"direction": "horizontal",
|
|
352
|
-
"gap": "md",
|
|
353
|
-
"justify": "space-between",
|
|
354
439
|
"children": [
|
|
355
440
|
{
|
|
356
|
-
"type": "stack",
|
|
357
|
-
"direction": "horizontal",
|
|
358
441
|
"gap": "md",
|
|
359
442
|
"children": [
|
|
360
443
|
{
|
|
361
|
-
"
|
|
444
|
+
"size": "lg",
|
|
362
445
|
"name": "wrench",
|
|
363
|
-
"
|
|
446
|
+
"type": "icon"
|
|
364
447
|
},
|
|
365
448
|
{
|
|
366
449
|
"type": "typography",
|
|
367
450
|
"content": "Invoke Tool",
|
|
368
451
|
"variant": "h2"
|
|
369
452
|
}
|
|
370
|
-
]
|
|
453
|
+
],
|
|
454
|
+
"type": "stack",
|
|
455
|
+
"direction": "horizontal"
|
|
371
456
|
},
|
|
372
457
|
{
|
|
458
|
+
"variant": "primary",
|
|
373
459
|
"type": "button",
|
|
460
|
+
"icon": "wrench",
|
|
374
461
|
"label": "Open",
|
|
375
|
-
"event": "INVOKE"
|
|
376
|
-
"variant": "primary",
|
|
377
|
-
"icon": "wrench"
|
|
462
|
+
"event": "INVOKE"
|
|
378
463
|
}
|
|
379
|
-
]
|
|
464
|
+
],
|
|
465
|
+
"gap": "md",
|
|
466
|
+
"justify": "space-between",
|
|
467
|
+
"direction": "horizontal"
|
|
380
468
|
},
|
|
381
469
|
{
|
|
382
470
|
"type": "divider"
|
|
383
471
|
},
|
|
384
472
|
{
|
|
385
|
-
"
|
|
386
|
-
"icon": "wrench",
|
|
473
|
+
"description": "Click Open to view details in a modal overlay.",
|
|
387
474
|
"title": "Nothing open",
|
|
388
|
-
"
|
|
475
|
+
"type": "empty-state",
|
|
476
|
+
"icon": "wrench"
|
|
389
477
|
}
|
|
390
|
-
]
|
|
478
|
+
],
|
|
479
|
+
"gap": "lg",
|
|
480
|
+
"direction": "vertical"
|
|
391
481
|
}
|
|
392
482
|
]
|
|
393
483
|
]
|
|
394
484
|
}
|
|
395
485
|
]
|
|
396
|
-
}
|
|
486
|
+
},
|
|
487
|
+
"scope": "instance"
|
|
397
488
|
},
|
|
398
489
|
{
|
|
399
490
|
"name": "AgentToolCallAgent",
|
|
400
|
-
"linkedEntity": "AgentToolCall",
|
|
401
491
|
"category": "interaction",
|
|
492
|
+
"linkedEntity": "AgentToolCall",
|
|
402
493
|
"emits": [
|
|
403
494
|
{
|
|
404
495
|
"event": "TOOL_STARTED",
|
|
@@ -441,13 +532,86 @@
|
|
|
441
532
|
"type": "string"
|
|
442
533
|
}
|
|
443
534
|
]
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"event": "AgentToolCallLoaded",
|
|
538
|
+
"description": "Fired when AgentToolCall finishes loading",
|
|
539
|
+
"scope": "internal",
|
|
540
|
+
"payload": [
|
|
541
|
+
{
|
|
542
|
+
"name": "id",
|
|
543
|
+
"type": "string"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "name",
|
|
547
|
+
"type": "string"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"name": "description",
|
|
551
|
+
"type": "string"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "status",
|
|
555
|
+
"type": "string"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "createdAt",
|
|
559
|
+
"type": "string"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"name": "toolName",
|
|
563
|
+
"type": "string"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"name": "args",
|
|
567
|
+
"type": "string"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"name": "result",
|
|
571
|
+
"type": "string"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"name": "error",
|
|
575
|
+
"type": "string"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "duration",
|
|
579
|
+
"type": "number"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"name": "action",
|
|
583
|
+
"type": "string"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"name": "detail",
|
|
587
|
+
"type": "string"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"name": "timestamp",
|
|
591
|
+
"type": "string"
|
|
592
|
+
}
|
|
593
|
+
]
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"event": "AgentToolCallLoadFailed",
|
|
597
|
+
"description": "Fired when AgentToolCall fails to load",
|
|
598
|
+
"scope": "internal",
|
|
599
|
+
"payload": [
|
|
600
|
+
{
|
|
601
|
+
"name": "message",
|
|
602
|
+
"type": "string"
|
|
603
|
+
}
|
|
604
|
+
]
|
|
444
605
|
}
|
|
445
606
|
],
|
|
446
607
|
"listens": [
|
|
447
608
|
{
|
|
448
609
|
"event": "INVOKED",
|
|
449
610
|
"triggers": "INVOKED",
|
|
450
|
-
"
|
|
611
|
+
"source": {
|
|
612
|
+
"kind": "trait",
|
|
613
|
+
"trait": "AgentToolCallModal"
|
|
614
|
+
}
|
|
451
615
|
}
|
|
452
616
|
],
|
|
453
617
|
"stateMachine": {
|
|
@@ -482,18 +646,37 @@
|
|
|
482
646
|
}
|
|
483
647
|
]
|
|
484
648
|
},
|
|
649
|
+
{
|
|
650
|
+
"key": "INVOKED",
|
|
651
|
+
"name": "Invoked"
|
|
652
|
+
},
|
|
485
653
|
{
|
|
486
654
|
"key": "CANCEL",
|
|
487
655
|
"name": "Cancel"
|
|
488
656
|
},
|
|
489
657
|
{
|
|
490
|
-
"key": "
|
|
491
|
-
"name": "
|
|
658
|
+
"key": "TOOL_STARTED",
|
|
659
|
+
"name": "Tool Started"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"key": "TOOL_COMPLETED",
|
|
663
|
+
"name": "Tool Completed"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"key": "LOG_ENTRY",
|
|
667
|
+
"name": "Log Entry"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"key": "AgentToolCallLoaded",
|
|
671
|
+
"name": "AgentToolCall loaded"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"key": "AgentToolCallLoadFailed",
|
|
675
|
+
"name": "AgentToolCall load failed",
|
|
492
676
|
"payload": [
|
|
493
677
|
{
|
|
494
|
-
"name": "
|
|
495
|
-
"type": "
|
|
496
|
-
"required": true
|
|
678
|
+
"name": "message",
|
|
679
|
+
"type": "string"
|
|
497
680
|
}
|
|
498
681
|
]
|
|
499
682
|
}
|
|
@@ -506,15 +689,21 @@
|
|
|
506
689
|
"effects": [
|
|
507
690
|
[
|
|
508
691
|
"fetch",
|
|
509
|
-
"AgentToolCall"
|
|
692
|
+
"AgentToolCall",
|
|
693
|
+
{
|
|
694
|
+
"emit": {
|
|
695
|
+
"success": "AgentToolCallLoaded",
|
|
696
|
+
"failure": "AgentToolCallLoadFailed"
|
|
697
|
+
}
|
|
698
|
+
}
|
|
510
699
|
],
|
|
511
700
|
[
|
|
512
701
|
"render-ui",
|
|
513
702
|
"main",
|
|
514
703
|
{
|
|
515
704
|
"type": "empty-state",
|
|
516
|
-
"icon": "wrench",
|
|
517
705
|
"title": "Tool Call",
|
|
706
|
+
"icon": "wrench",
|
|
518
707
|
"description": "Tool Call is ready"
|
|
519
708
|
}
|
|
520
709
|
]
|
|
@@ -581,42 +770,74 @@
|
|
|
581
770
|
]
|
|
582
771
|
},
|
|
583
772
|
{
|
|
584
|
-
"from": "
|
|
585
|
-
"to": "
|
|
773
|
+
"from": "executing",
|
|
774
|
+
"to": "completed",
|
|
586
775
|
"event": "DO_INVOKE",
|
|
587
776
|
"effects": [
|
|
588
777
|
[
|
|
589
778
|
"set",
|
|
590
|
-
"@entity.
|
|
591
|
-
"
|
|
779
|
+
"@entity.status",
|
|
780
|
+
"completed"
|
|
592
781
|
],
|
|
593
782
|
[
|
|
594
783
|
"set",
|
|
595
|
-
"@entity.
|
|
596
|
-
"@payload.data.
|
|
784
|
+
"@entity.result",
|
|
785
|
+
"@payload.data.result"
|
|
786
|
+
],
|
|
787
|
+
[
|
|
788
|
+
"emit",
|
|
789
|
+
"TOOL_COMPLETED"
|
|
597
790
|
],
|
|
791
|
+
[
|
|
792
|
+
"emit",
|
|
793
|
+
"LOG_ENTRY"
|
|
794
|
+
]
|
|
795
|
+
]
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"from": "executing",
|
|
799
|
+
"to": "failed",
|
|
800
|
+
"event": "CANCEL",
|
|
801
|
+
"guard": [
|
|
802
|
+
"=",
|
|
803
|
+
"@entity.status",
|
|
804
|
+
"executing"
|
|
805
|
+
],
|
|
806
|
+
"effects": [
|
|
598
807
|
[
|
|
599
808
|
"set",
|
|
600
809
|
"@entity.status",
|
|
601
|
-
"
|
|
810
|
+
"failed"
|
|
602
811
|
],
|
|
603
812
|
[
|
|
604
|
-
"
|
|
605
|
-
"
|
|
813
|
+
"set",
|
|
814
|
+
"@entity.error",
|
|
815
|
+
"Cancelled"
|
|
606
816
|
],
|
|
607
817
|
[
|
|
608
818
|
"emit",
|
|
609
|
-
"
|
|
819
|
+
"TOOL_COMPLETED"
|
|
820
|
+
]
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"from": "executing",
|
|
825
|
+
"to": "idle",
|
|
826
|
+
"event": "CANCEL",
|
|
827
|
+
"effects": [
|
|
828
|
+
[
|
|
829
|
+
"set",
|
|
830
|
+
"@entity.status",
|
|
831
|
+
"idle"
|
|
610
832
|
],
|
|
611
833
|
[
|
|
612
|
-
"
|
|
613
|
-
"
|
|
614
|
-
"@payload.data.args"
|
|
834
|
+
"emit",
|
|
835
|
+
"TOOL_COMPLETED"
|
|
615
836
|
]
|
|
616
837
|
]
|
|
617
838
|
},
|
|
618
839
|
{
|
|
619
|
-
"from": "
|
|
840
|
+
"from": "completed",
|
|
620
841
|
"to": "executing",
|
|
621
842
|
"event": "DO_INVOKE",
|
|
622
843
|
"effects": [
|
|
@@ -651,74 +872,43 @@
|
|
|
651
872
|
]
|
|
652
873
|
},
|
|
653
874
|
{
|
|
654
|
-
"from": "
|
|
655
|
-
"to": "
|
|
875
|
+
"from": "failed",
|
|
876
|
+
"to": "executing",
|
|
656
877
|
"event": "DO_INVOKE",
|
|
657
878
|
"effects": [
|
|
658
879
|
[
|
|
659
880
|
"set",
|
|
660
|
-
"@entity.
|
|
661
|
-
"
|
|
881
|
+
"@entity.toolName",
|
|
882
|
+
"@payload.data.toolName"
|
|
662
883
|
],
|
|
663
884
|
[
|
|
664
885
|
"set",
|
|
665
|
-
"@entity.
|
|
666
|
-
"@payload.data.
|
|
667
|
-
],
|
|
668
|
-
[
|
|
669
|
-
"emit",
|
|
670
|
-
"TOOL_COMPLETED"
|
|
886
|
+
"@entity.args",
|
|
887
|
+
"@payload.data.args"
|
|
671
888
|
],
|
|
672
|
-
[
|
|
673
|
-
"emit",
|
|
674
|
-
"LOG_ENTRY"
|
|
675
|
-
]
|
|
676
|
-
]
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"from": "executing",
|
|
680
|
-
"to": "failed",
|
|
681
|
-
"event": "CANCEL",
|
|
682
|
-
"guard": [
|
|
683
|
-
"=",
|
|
684
|
-
"@entity.status",
|
|
685
|
-
"executing"
|
|
686
|
-
],
|
|
687
|
-
"effects": [
|
|
688
889
|
[
|
|
689
890
|
"set",
|
|
690
891
|
"@entity.status",
|
|
691
|
-
"
|
|
892
|
+
"executing"
|
|
692
893
|
],
|
|
693
894
|
[
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"Cancelled"
|
|
895
|
+
"emit",
|
|
896
|
+
"TOOL_STARTED"
|
|
697
897
|
],
|
|
698
898
|
[
|
|
699
899
|
"emit",
|
|
700
|
-
"
|
|
701
|
-
]
|
|
702
|
-
]
|
|
703
|
-
},
|
|
704
|
-
{
|
|
705
|
-
"from": "executing",
|
|
706
|
-
"to": "idle",
|
|
707
|
-
"event": "CANCEL",
|
|
708
|
-
"effects": [
|
|
709
|
-
[
|
|
710
|
-
"set",
|
|
711
|
-
"@entity.status",
|
|
712
|
-
"idle"
|
|
900
|
+
"LOG_ENTRY"
|
|
713
901
|
],
|
|
714
902
|
[
|
|
715
|
-
"
|
|
716
|
-
"
|
|
903
|
+
"agent/invoke",
|
|
904
|
+
"@payload.data.toolName",
|
|
905
|
+
"@payload.data.args"
|
|
717
906
|
]
|
|
718
907
|
]
|
|
719
908
|
}
|
|
720
909
|
]
|
|
721
|
-
}
|
|
910
|
+
},
|
|
911
|
+
"scope": "instance"
|
|
722
912
|
}
|
|
723
913
|
],
|
|
724
914
|
"pages": [
|
|
@@ -737,4 +927,4 @@
|
|
|
737
927
|
]
|
|
738
928
|
}
|
|
739
929
|
]
|
|
740
|
-
}
|
|
930
|
+
}
|