@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-search",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-search as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentSearchOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentSearch",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agentsearchs",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -44,7 +44,10 @@
|
|
|
44
44
|
{
|
|
45
45
|
"name": "results",
|
|
46
46
|
"type": "array",
|
|
47
|
-
"default": []
|
|
47
|
+
"default": [],
|
|
48
|
+
"items": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
}
|
|
48
51
|
},
|
|
49
52
|
{
|
|
50
53
|
"name": "language",
|
|
@@ -54,20 +57,79 @@
|
|
|
54
57
|
{
|
|
55
58
|
"name": "resultCount",
|
|
56
59
|
"type": "number",
|
|
57
|
-
"default": 0
|
|
60
|
+
"default": 0.0
|
|
58
61
|
}
|
|
59
62
|
]
|
|
60
63
|
},
|
|
61
64
|
"traits": [
|
|
62
65
|
{
|
|
63
66
|
"name": "AgentSearchBrowse",
|
|
64
|
-
"linkedEntity": "AgentSearch",
|
|
65
67
|
"category": "interaction",
|
|
68
|
+
"linkedEntity": "AgentSearch",
|
|
69
|
+
"emits": [
|
|
70
|
+
{
|
|
71
|
+
"event": "AgentSearchLoaded",
|
|
72
|
+
"description": "Fired when AgentSearch finishes loading",
|
|
73
|
+
"scope": "internal",
|
|
74
|
+
"payload": [
|
|
75
|
+
{
|
|
76
|
+
"name": "id",
|
|
77
|
+
"type": "string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "name",
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "description",
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "status",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "createdAt",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "query",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "results",
|
|
101
|
+
"type": "[string]"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "language",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "resultCount",
|
|
109
|
+
"type": "number"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"event": "AgentSearchLoadFailed",
|
|
115
|
+
"description": "Fired when AgentSearch fails to load",
|
|
116
|
+
"scope": "internal",
|
|
117
|
+
"payload": [
|
|
118
|
+
{
|
|
119
|
+
"name": "message",
|
|
120
|
+
"type": "string"
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
],
|
|
66
125
|
"listens": [
|
|
67
126
|
{
|
|
68
127
|
"event": "SEARCHED",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
128
|
+
"triggers": "INIT",
|
|
129
|
+
"source": {
|
|
130
|
+
"kind": "trait",
|
|
131
|
+
"trait": "AgentSearchAgent"
|
|
132
|
+
}
|
|
71
133
|
}
|
|
72
134
|
],
|
|
73
135
|
"stateMachine": {
|
|
@@ -83,16 +145,22 @@
|
|
|
83
145
|
"name": "Initialize"
|
|
84
146
|
},
|
|
85
147
|
{
|
|
86
|
-
"key": "
|
|
87
|
-
"name": "
|
|
148
|
+
"key": "AgentSearchLoaded",
|
|
149
|
+
"name": "AgentSearch loaded"
|
|
88
150
|
},
|
|
89
151
|
{
|
|
90
|
-
"key": "
|
|
91
|
-
"name": "
|
|
152
|
+
"key": "AgentSearchLoadFailed",
|
|
153
|
+
"name": "AgentSearch load failed",
|
|
154
|
+
"payload": [
|
|
155
|
+
{
|
|
156
|
+
"name": "message",
|
|
157
|
+
"type": "string"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
92
160
|
},
|
|
93
161
|
{
|
|
94
162
|
"key": "VIEW",
|
|
95
|
-
"name": "
|
|
163
|
+
"name": "View",
|
|
96
164
|
"payload": [
|
|
97
165
|
{
|
|
98
166
|
"name": "id",
|
|
@@ -120,23 +188,18 @@
|
|
|
120
188
|
"render-ui",
|
|
121
189
|
"main",
|
|
122
190
|
{
|
|
123
|
-
"type": "stack",
|
|
124
191
|
"direction": "vertical",
|
|
125
|
-
"gap": "lg",
|
|
126
192
|
"className": "max-w-5xl mx-auto w-full",
|
|
127
193
|
"children": [
|
|
128
194
|
{
|
|
129
|
-
"type": "stack",
|
|
130
|
-
"direction": "horizontal",
|
|
131
|
-
"gap": "md",
|
|
132
195
|
"justify": "space-between",
|
|
133
196
|
"align": "center",
|
|
197
|
+
"gap": "md",
|
|
198
|
+
"type": "stack",
|
|
134
199
|
"children": [
|
|
135
200
|
{
|
|
136
201
|
"type": "stack",
|
|
137
|
-
"direction": "horizontal",
|
|
138
202
|
"gap": "sm",
|
|
139
|
-
"align": "center",
|
|
140
203
|
"children": [
|
|
141
204
|
{
|
|
142
205
|
"type": "icon",
|
|
@@ -148,93 +211,99 @@
|
|
|
148
211
|
"content": "AgentSearch",
|
|
149
212
|
"variant": "h2"
|
|
150
213
|
}
|
|
151
|
-
]
|
|
214
|
+
],
|
|
215
|
+
"direction": "horizontal",
|
|
216
|
+
"align": "center"
|
|
152
217
|
},
|
|
153
218
|
{
|
|
154
219
|
"type": "stack",
|
|
155
|
-
"direction": "horizontal",
|
|
156
220
|
"gap": "sm",
|
|
157
221
|
"children": [
|
|
158
222
|
{
|
|
159
223
|
"type": "button",
|
|
160
224
|
"label": "Search",
|
|
161
|
-
"
|
|
225
|
+
"icon": "search",
|
|
162
226
|
"variant": "primary",
|
|
163
|
-
"
|
|
227
|
+
"event": "SEARCH"
|
|
164
228
|
},
|
|
165
229
|
{
|
|
230
|
+
"variant": "ghost",
|
|
231
|
+
"icon": "x",
|
|
166
232
|
"type": "button",
|
|
167
|
-
"label": "Clear",
|
|
168
233
|
"event": "CLEAR",
|
|
169
|
-
"
|
|
170
|
-
"icon": "x"
|
|
234
|
+
"label": "Clear"
|
|
171
235
|
}
|
|
172
|
-
]
|
|
236
|
+
],
|
|
237
|
+
"direction": "horizontal"
|
|
173
238
|
}
|
|
174
|
-
]
|
|
239
|
+
],
|
|
240
|
+
"direction": "horizontal"
|
|
175
241
|
},
|
|
176
242
|
{
|
|
177
243
|
"type": "divider"
|
|
178
244
|
},
|
|
179
245
|
{
|
|
180
246
|
"type": "data-grid",
|
|
181
|
-
"entity": "AgentSearch",
|
|
182
|
-
"emptyIcon": "inbox",
|
|
183
247
|
"emptyTitle": "No search results",
|
|
184
|
-
"emptyDescription": "Enter a query to search the codebase.",
|
|
185
248
|
"itemActions": [
|
|
186
249
|
{
|
|
187
|
-
"
|
|
188
|
-
"event": "VIEW",
|
|
250
|
+
"size": "sm",
|
|
189
251
|
"variant": "ghost",
|
|
190
|
-
"
|
|
252
|
+
"event": "VIEW",
|
|
253
|
+
"label": "View"
|
|
191
254
|
}
|
|
192
255
|
],
|
|
256
|
+
"emptyIcon": "inbox",
|
|
257
|
+
"emptyDescription": "Enter a query to search the codebase.",
|
|
258
|
+
"entity": "AgentSearch",
|
|
193
259
|
"columns": [
|
|
194
260
|
{
|
|
195
|
-
"name": "query",
|
|
196
|
-
"label": "Query",
|
|
197
261
|
"variant": "h4",
|
|
262
|
+
"label": "Query",
|
|
263
|
+
"name": "query",
|
|
198
264
|
"icon": "search"
|
|
199
265
|
},
|
|
200
266
|
{
|
|
201
267
|
"name": "language",
|
|
202
|
-
"label": "Language",
|
|
203
|
-
"variant": "badge",
|
|
204
268
|
"colorMap": {
|
|
205
|
-
"active": "success",
|
|
206
|
-
"completed": "success",
|
|
207
|
-
"done": "success",
|
|
208
269
|
"pending": "warning",
|
|
270
|
+
"disabled": "neutral",
|
|
271
|
+
"active": "success",
|
|
272
|
+
"archived": "neutral",
|
|
209
273
|
"draft": "warning",
|
|
210
274
|
"scheduled": "warning",
|
|
275
|
+
"done": "success",
|
|
276
|
+
"completed": "success",
|
|
211
277
|
"inactive": "neutral",
|
|
212
|
-
"archived": "neutral",
|
|
213
|
-
"disabled": "neutral",
|
|
214
278
|
"error": "destructive",
|
|
215
279
|
"cancelled": "destructive",
|
|
216
280
|
"failed": "destructive"
|
|
217
|
-
}
|
|
281
|
+
},
|
|
282
|
+
"variant": "badge",
|
|
283
|
+
"label": "Language"
|
|
218
284
|
},
|
|
219
285
|
{
|
|
220
286
|
"name": "resultCount",
|
|
221
|
-
"
|
|
222
|
-
"
|
|
287
|
+
"variant": "caption",
|
|
288
|
+
"label": "Result Count"
|
|
223
289
|
}
|
|
224
290
|
]
|
|
225
291
|
}
|
|
226
|
-
]
|
|
292
|
+
],
|
|
293
|
+
"gap": "lg",
|
|
294
|
+
"type": "stack"
|
|
227
295
|
}
|
|
228
296
|
]
|
|
229
297
|
]
|
|
230
298
|
}
|
|
231
299
|
]
|
|
232
|
-
}
|
|
300
|
+
},
|
|
301
|
+
"scope": "collection"
|
|
233
302
|
},
|
|
234
303
|
{
|
|
235
304
|
"name": "AgentSearchAgent",
|
|
236
|
-
"linkedEntity": "AgentSearch",
|
|
237
305
|
"category": "interaction",
|
|
306
|
+
"linkedEntity": "AgentSearch",
|
|
238
307
|
"emits": [
|
|
239
308
|
{
|
|
240
309
|
"event": "SEARCHED",
|
|
@@ -249,13 +318,70 @@
|
|
|
249
318
|
"type": "number"
|
|
250
319
|
}
|
|
251
320
|
]
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"event": "AgentSearchLoaded",
|
|
324
|
+
"description": "Fired when AgentSearch finishes loading",
|
|
325
|
+
"scope": "internal",
|
|
326
|
+
"payload": [
|
|
327
|
+
{
|
|
328
|
+
"name": "id",
|
|
329
|
+
"type": "string"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "name",
|
|
333
|
+
"type": "string"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "description",
|
|
337
|
+
"type": "string"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "status",
|
|
341
|
+
"type": "string"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "createdAt",
|
|
345
|
+
"type": "string"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "query",
|
|
349
|
+
"type": "string"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "results",
|
|
353
|
+
"type": "[string]"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "language",
|
|
357
|
+
"type": "string"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "resultCount",
|
|
361
|
+
"type": "number"
|
|
362
|
+
}
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"event": "AgentSearchLoadFailed",
|
|
367
|
+
"description": "Fired when AgentSearch fails to load",
|
|
368
|
+
"scope": "internal",
|
|
369
|
+
"payload": [
|
|
370
|
+
{
|
|
371
|
+
"name": "message",
|
|
372
|
+
"type": "string"
|
|
373
|
+
}
|
|
374
|
+
]
|
|
252
375
|
}
|
|
253
376
|
],
|
|
254
377
|
"listens": [
|
|
255
378
|
{
|
|
256
379
|
"event": "SEARCHED",
|
|
257
380
|
"triggers": "INIT",
|
|
258
|
-
"
|
|
381
|
+
"source": {
|
|
382
|
+
"kind": "trait",
|
|
383
|
+
"trait": "AgentSearchAgent"
|
|
384
|
+
}
|
|
259
385
|
}
|
|
260
386
|
],
|
|
261
387
|
"stateMachine": {
|
|
@@ -287,14 +413,31 @@
|
|
|
287
413
|
},
|
|
288
414
|
{
|
|
289
415
|
"name": "language",
|
|
290
|
-
"type": "string"
|
|
291
|
-
"required": false
|
|
416
|
+
"type": "string"
|
|
292
417
|
}
|
|
293
418
|
]
|
|
294
419
|
},
|
|
295
420
|
{
|
|
296
421
|
"key": "CLEAR",
|
|
297
|
-
"name": "Clear
|
|
422
|
+
"name": "Clear"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"key": "SEARCHED",
|
|
426
|
+
"name": "Searched"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"key": "AgentSearchLoaded",
|
|
430
|
+
"name": "AgentSearch loaded"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"key": "AgentSearchLoadFailed",
|
|
434
|
+
"name": "AgentSearch load failed",
|
|
435
|
+
"payload": [
|
|
436
|
+
{
|
|
437
|
+
"name": "message",
|
|
438
|
+
"type": "string"
|
|
439
|
+
}
|
|
440
|
+
]
|
|
298
441
|
}
|
|
299
442
|
],
|
|
300
443
|
"transitions": [
|
|
@@ -305,16 +448,22 @@
|
|
|
305
448
|
"effects": [
|
|
306
449
|
[
|
|
307
450
|
"fetch",
|
|
308
|
-
"AgentSearch"
|
|
451
|
+
"AgentSearch",
|
|
452
|
+
{
|
|
453
|
+
"emit": {
|
|
454
|
+
"success": "AgentSearchLoaded",
|
|
455
|
+
"failure": "AgentSearchLoadFailed"
|
|
456
|
+
}
|
|
457
|
+
}
|
|
309
458
|
],
|
|
310
459
|
[
|
|
311
460
|
"render-ui",
|
|
312
461
|
"main",
|
|
313
462
|
{
|
|
314
|
-
"type": "empty-state",
|
|
315
463
|
"icon": "search",
|
|
316
|
-
"
|
|
317
|
-
"description": "Code Search is ready"
|
|
464
|
+
"type": "empty-state",
|
|
465
|
+
"description": "Code Search is ready",
|
|
466
|
+
"title": "Code Search"
|
|
318
467
|
}
|
|
319
468
|
]
|
|
320
469
|
]
|
|
@@ -348,7 +497,13 @@
|
|
|
348
497
|
"effects": [
|
|
349
498
|
[
|
|
350
499
|
"fetch",
|
|
351
|
-
"AgentSearch"
|
|
500
|
+
"AgentSearch",
|
|
501
|
+
{
|
|
502
|
+
"emit": {
|
|
503
|
+
"failure": "AgentSearchLoadFailed",
|
|
504
|
+
"success": "AgentSearchLoaded"
|
|
505
|
+
}
|
|
506
|
+
}
|
|
352
507
|
],
|
|
353
508
|
[
|
|
354
509
|
"emit",
|
|
@@ -401,12 +556,13 @@
|
|
|
401
556
|
[
|
|
402
557
|
"set",
|
|
403
558
|
"@entity.resultCount",
|
|
404
|
-
0
|
|
559
|
+
0.0
|
|
405
560
|
]
|
|
406
561
|
]
|
|
407
562
|
}
|
|
408
563
|
]
|
|
409
|
-
}
|
|
564
|
+
},
|
|
565
|
+
"scope": "collection"
|
|
410
566
|
}
|
|
411
567
|
],
|
|
412
568
|
"pages": [
|
|
@@ -425,4 +581,4 @@
|
|
|
425
581
|
]
|
|
426
582
|
}
|
|
427
583
|
]
|
|
428
|
-
}
|
|
584
|
+
}
|