@eventcatalog/core 3.40.1 → 3.41.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.
Files changed (139) hide show
  1. package/bin/eventcatalog.config.d.ts +1 -0
  2. package/dist/__mocks__/astro-content.d.cts +1 -1
  3. package/dist/__mocks__/astro-content.d.ts +1 -1
  4. package/dist/analytics/analytics.cjs +1 -1
  5. package/dist/analytics/analytics.js +2 -2
  6. package/dist/analytics/count-resources.cjs +1 -0
  7. package/dist/analytics/count-resources.js +1 -1
  8. package/dist/analytics/log-build.cjs +3 -2
  9. package/dist/analytics/log-build.js +4 -4
  10. package/dist/catalog-to-astro-content-directory.cjs +1 -0
  11. package/dist/catalog-to-astro-content-directory.js +2 -2
  12. package/dist/{chunk-4UVFXLPI.js → chunk-3DVHEVHQ.js} +1 -0
  13. package/dist/{chunk-K3ZVEX2Y.js → chunk-3H2RT3CM.js} +1 -1
  14. package/dist/{chunk-BRMLU4PR.js → chunk-3R6TKNHG.js} +1 -1
  15. package/dist/{chunk-OIVICT4V.js → chunk-DKFIEB24.js} +1 -1
  16. package/dist/{chunk-55D645EH.js → chunk-IR4IAKWS.js} +1 -0
  17. package/dist/{chunk-YDXB3BD2.js → chunk-O6KT4DPL.js} +1 -1
  18. package/dist/{chunk-D6IBLY3O.js → chunk-QMORF42U.js} +1 -0
  19. package/dist/{chunk-HNG4KOYQ.js → chunk-QVJGIQYP.js} +1 -1
  20. package/dist/{chunk-4OEF5W6Y.js → chunk-TWFS6THS.js} +1 -1
  21. package/dist/{chunk-7UR72UMK.js → chunk-ZN3JKTWB.js} +5 -5
  22. package/dist/constants.cjs +1 -1
  23. package/dist/constants.js +1 -1
  24. package/dist/eventcatalog.cjs +5 -2
  25. package/dist/eventcatalog.config.d.cts +27 -11
  26. package/dist/eventcatalog.config.d.ts +27 -11
  27. package/dist/eventcatalog.js +14 -14
  28. package/dist/generate.cjs +1 -1
  29. package/dist/generate.js +3 -3
  30. package/dist/map-catalog-to-astro.cjs +1 -0
  31. package/dist/map-catalog-to-astro.js +1 -1
  32. package/dist/search-indexer.cjs +1 -0
  33. package/dist/search-indexer.js +1 -1
  34. package/dist/utils/cli-logger.cjs +1 -1
  35. package/dist/utils/cli-logger.js +2 -2
  36. package/dist/watcher.cjs +1 -0
  37. package/dist/watcher.js +2 -2
  38. package/eventcatalog/public/agents/anthropic-dark.svg +1 -0
  39. package/eventcatalog/public/agents/anthropic-light.svg +1 -0
  40. package/eventcatalog/public/agents/openai-dark.svg +1 -0
  41. package/eventcatalog/public/agents/openai-light.svg +1 -0
  42. package/eventcatalog/public/agents/openai.svg +1 -0
  43. package/eventcatalog/public/icons/agent/anthropic-dark.svg +1 -0
  44. package/eventcatalog/public/icons/agent/anthropic-light.svg +1 -0
  45. package/eventcatalog/public/icons/agent/anthropic.svg +1 -0
  46. package/eventcatalog/public/icons/agent/gemini.svg +1 -0
  47. package/eventcatalog/public/icons/agent/openai-dark.svg +1 -0
  48. package/eventcatalog/public/icons/agent/openai-light.svg +1 -0
  49. package/eventcatalog/public/icons/agent/openai.svg +1 -0
  50. package/eventcatalog/public/icons/agents/anthropic-dark.svg +1 -0
  51. package/eventcatalog/public/icons/agents/anthropic-light.svg +1 -0
  52. package/eventcatalog/public/icons/agents/anthropic.svg +1 -0
  53. package/eventcatalog/public/icons/agents/gemini.svg +1 -0
  54. package/eventcatalog/public/icons/agents/openai-dark.svg +1 -0
  55. package/eventcatalog/public/icons/agents/openai-light.svg +1 -0
  56. package/eventcatalog/public/icons/agents/openai.svg +1 -0
  57. package/eventcatalog/public/icons/protocols/mcp-dark.svg +1 -0
  58. package/eventcatalog/public/icons/protocols/mcp-light.svg +1 -0
  59. package/eventcatalog/public/icons/protocols/mcp.svg +1 -0
  60. package/eventcatalog/public/icons/tools/datadog.svg +1 -0
  61. package/eventcatalog/public/icons/tools/github.svg +1 -0
  62. package/eventcatalog/public/icons/tools/hubspot.svg +1 -0
  63. package/eventcatalog/public/icons/tools/slack.svg +1 -0
  64. package/eventcatalog/public/icons/tools/snowflake.svg +1 -0
  65. package/eventcatalog/public/icons/tools/zendesk.svg +1 -0
  66. package/eventcatalog/src/components/Badge.astro +41 -2
  67. package/eventcatalog/src/components/Grids/MessageGrid.tsx +16 -11
  68. package/eventcatalog/src/components/MDX/AgentTools/AgentTools.astro +132 -0
  69. package/eventcatalog/src/components/MDX/NodeGraph/NodeGraph.astro +2 -0
  70. package/eventcatalog/src/components/MDX/ResourceRef/ResourceRef.astro +8 -3
  71. package/eventcatalog/src/components/MDX/components.tsx +2 -0
  72. package/eventcatalog/src/components/Search/SearchModal.tsx +3 -0
  73. package/eventcatalog/src/components/Search/search-utils.ts +2 -0
  74. package/eventcatalog/src/components/SideNav/NestedSideBar/SearchBar.tsx +3 -0
  75. package/eventcatalog/src/components/SideNav/NestedSideBar/index.tsx +3 -0
  76. package/eventcatalog/src/components/Tables/Discover/DiscoverTable.tsx +165 -0
  77. package/eventcatalog/src/components/Tables/Discover/columns.tsx +132 -7
  78. package/eventcatalog/src/components/Tables/Table.tsx +2 -0
  79. package/eventcatalog/src/components/Tables/columns/TeamsTableColumns.tsx +17 -0
  80. package/eventcatalog/src/components/Tables/columns/UserTableColumns.tsx +17 -0
  81. package/eventcatalog/src/content.config.ts +83 -25
  82. package/eventcatalog/src/enterprise/collections/resource-docs-utils.ts +7 -4
  83. package/eventcatalog/src/enterprise/mcp/mcp-server.ts +9 -2
  84. package/eventcatalog/src/enterprise/tools/catalog-tools.ts +62 -28
  85. package/eventcatalog/src/layouts/VerticalSideBarLayout.astro +13 -1
  86. package/eventcatalog/src/pages/_index.astro +1 -3
  87. package/eventcatalog/src/pages/architecture/[type]/[id]/[version]/_index.data.ts +5 -5
  88. package/eventcatalog/src/pages/architecture/[type]/[id]/[version]/index.astro +5 -2
  89. package/eventcatalog/src/pages/directory/[type]/index.astro +2 -0
  90. package/eventcatalog/src/pages/discover/[type]/_index.data.ts +5 -0
  91. package/eventcatalog/src/pages/discover/[type]/index.astro +69 -23
  92. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/[docType]/[docId].mdx.ts +1 -0
  93. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/_index.data.ts +1 -0
  94. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/changelog/_index.data.ts +1 -1
  95. package/eventcatalog/src/pages/docs/[type]/[id]/[version]/index.astro +47 -2
  96. package/eventcatalog/src/pages/docs/[type]/[id]/[version].md.ts +2 -0
  97. package/eventcatalog/src/pages/docs/[type]/[id]/[version].mdx.ts +2 -0
  98. package/eventcatalog/src/pages/docs/[type]/[id]/_index.data.ts +1 -0
  99. package/eventcatalog/src/pages/docs/llm/llms-full.txt.ts +3 -0
  100. package/eventcatalog/src/pages/docs/llm/llms.txt.ts +3 -0
  101. package/eventcatalog/src/pages/docs/teams/[id]/index.astro +24 -1
  102. package/eventcatalog/src/pages/docs/users/[id]/index.astro +24 -1
  103. package/eventcatalog/src/pages/visualiser/[type]/[id]/[version]/_index.data.ts +2 -1
  104. package/eventcatalog/src/stores/sidebar-store/builders/agent.ts +141 -0
  105. package/eventcatalog/src/stores/sidebar-store/builders/domain.ts +9 -0
  106. package/eventcatalog/src/stores/sidebar-store/builders/flow.ts +19 -0
  107. package/eventcatalog/src/stores/sidebar-store/builders/message.ts +8 -2
  108. package/eventcatalog/src/stores/sidebar-store/builders/shared.ts +10 -7
  109. package/eventcatalog/src/stores/sidebar-store/state.ts +121 -2
  110. package/eventcatalog/src/types/index.ts +3 -1
  111. package/eventcatalog/src/utils/collection-colors.ts +5 -0
  112. package/eventcatalog/src/utils/collections/agents.ts +163 -0
  113. package/eventcatalog/src/utils/collections/commands.ts +3 -2
  114. package/eventcatalog/src/utils/collections/domains.ts +94 -15
  115. package/eventcatalog/src/utils/collections/events.ts +3 -2
  116. package/eventcatalog/src/utils/collections/flows.ts +20 -3
  117. package/eventcatalog/src/utils/collections/icons.ts +3 -1
  118. package/eventcatalog/src/utils/collections/messages.ts +35 -5
  119. package/eventcatalog/src/utils/collections/queries.ts +3 -2
  120. package/eventcatalog/src/utils/collections/schemas.ts +4 -4
  121. package/eventcatalog/src/utils/collections/services.ts +1 -1
  122. package/eventcatalog/src/utils/collections/teams.ts +5 -1
  123. package/eventcatalog/src/utils/collections/types.ts +1 -0
  124. package/eventcatalog/src/utils/collections/users.ts +5 -1
  125. package/eventcatalog/src/utils/collections/util.ts +2 -0
  126. package/eventcatalog/src/utils/eventcatalog-config/catalog.ts +1 -0
  127. package/eventcatalog/src/utils/llms.ts +1 -1
  128. package/eventcatalog/src/utils/node-graphs/agents-node-graph.ts +4 -0
  129. package/eventcatalog/src/utils/node-graphs/container-node-graph.ts +2 -2
  130. package/eventcatalog/src/utils/node-graphs/domains-node-graph.ts +42 -9
  131. package/eventcatalog/src/utils/node-graphs/export-mermaid.ts +20 -0
  132. package/eventcatalog/src/utils/node-graphs/export-node-graph.ts +4 -0
  133. package/eventcatalog/src/utils/node-graphs/flows-node-graph.ts +22 -1
  134. package/eventcatalog/src/utils/node-graphs/message-node-graph.ts +175 -98
  135. package/eventcatalog/src/utils/node-graphs/services-node-graph.ts +117 -23
  136. package/eventcatalog/src/utils/node-graphs/utils/utils.ts +30 -0
  137. package/eventcatalog/src/utils/page-loaders/page-data-loader.ts +2 -0
  138. package/eventcatalog/src/utils/resource-reference-colors.ts +1 -0
  139. package/package.json +11 -4
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  logger
3
- } from "../chunk-OIVICT4V.js";
4
- import "../chunk-HNG4KOYQ.js";
3
+ } from "../chunk-DKFIEB24.js";
4
+ import "../chunk-QVJGIQYP.js";
5
5
  export {
6
6
  logger
7
7
  };
package/dist/watcher.cjs CHANGED
@@ -39,6 +39,7 @@ var import_node_fs = __toESM(require("fs"), 1);
39
39
  // src/map-catalog-to-astro.js
40
40
  var import_node_path = __toESM(require("path"), 1);
41
41
  var COLLECTION_KEYS = [
42
+ "agents",
42
43
  "events",
43
44
  "commands",
44
45
  "services",
package/dist/watcher.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  watch
3
- } from "./chunk-K3ZVEX2Y.js";
4
- import "./chunk-55D645EH.js";
3
+ } from "./chunk-3H2RT3CM.js";
4
+ import "./chunk-IR4IAKWS.js";
5
5
  export {
6
6
  watch
7
7
  };
@@ -0,0 +1 @@
1
+ <svg fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#000" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#000" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 296 298" xmlns="http://www.w3.org/2000/svg" width="296" height="298" fill="none"><mask id="gemini__a" width="296" height="298" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#3186FF" d="M141.201 4.886c2.282-6.17 11.042-6.071 13.184.148l5.985 17.37a184.004 184.004 0 0 0 111.257 113.049l19.304 6.997c6.143 2.227 6.156 10.91.02 13.155l-19.35 7.082a184.001 184.001 0 0 0-109.495 109.385l-7.573 20.629c-2.241 6.105-10.869 6.121-13.133.025l-7.908-21.296a184 184 0 0 0-109.02-108.658l-19.698-7.239c-6.102-2.243-6.118-10.867-.025-13.132l20.083-7.467A183.998 183.998 0 0 0 133.291 26.28l7.91-21.394Z"/></mask><g mask="url(#gemini__a)"><g filter="url(#gemini__b)"><ellipse cx="163" cy="149" fill="#3689FF" rx="196" ry="159"/></g><g filter="url(#gemini__c)"><ellipse cx="33.5" cy="142.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#gemini__d)"><ellipse cx="19.5" cy="148.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#gemini__e)"><path fill="#FA4340" d="M194 10.5C172 82.5 65.5 134.333 22.5 135L144-66l50 76.5Z"/></g><g filter="url(#gemini__f)"><path fill="#FA4340" d="M190.5-12.5C168.5 59.5 62 111.333 19 112L140.5-89l50 76.5Z"/></g><g filter="url(#gemini__g)"><path fill="#14BB69" d="M194.5 279.5C172.5 207.5 66 155.667 23 155l121.5 201 50-76.5Z"/></g><g filter="url(#gemini__h)"><path fill="#14BB69" d="M196.5 320.5C174.5 248.5 68 196.667 25 196l121.5 201 50-76.5Z"/></g></g><defs><filter id="gemini__b" width="464" height="390" x="-69" y="-46" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="18"/></filter><filter id="gemini__c" width="265" height="273" x="-99" y="6" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__d" width="265" height="273" x="-113" y="12" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__e" width="299.5" height="329" x="-41.5" y="-130" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__f" width="299.5" height="329" x="-45" y="-153" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__g" width="299.5" height="329" x="-41" y="91" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__h" width="299.5" height="329" x="-39" y="132" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#000" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffff" fill-rule="evenodd" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Anthropic</title><path d="M13.827 3.52h3.603L24 20h-3.603l-6.57-16.48zm-7.258 0h3.767L16.906 20h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 9.959L8.453 7.687 6.205 13.48H10.7z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 296 298" xmlns="http://www.w3.org/2000/svg" width="296" height="298" fill="none"><mask id="gemini__a" width="296" height="298" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#3186FF" d="M141.201 4.886c2.282-6.17 11.042-6.071 13.184.148l5.985 17.37a184.004 184.004 0 0 0 111.257 113.049l19.304 6.997c6.143 2.227 6.156 10.91.02 13.155l-19.35 7.082a184.001 184.001 0 0 0-109.495 109.385l-7.573 20.629c-2.241 6.105-10.869 6.121-13.133.025l-7.908-21.296a184 184 0 0 0-109.02-108.658l-19.698-7.239c-6.102-2.243-6.118-10.867-.025-13.132l20.083-7.467A183.998 183.998 0 0 0 133.291 26.28l7.91-21.394Z"/></mask><g mask="url(#gemini__a)"><g filter="url(#gemini__b)"><ellipse cx="163" cy="149" fill="#3689FF" rx="196" ry="159"/></g><g filter="url(#gemini__c)"><ellipse cx="33.5" cy="142.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#gemini__d)"><ellipse cx="19.5" cy="148.5" fill="#F6C013" rx="68.5" ry="72.5"/></g><g filter="url(#gemini__e)"><path fill="#FA4340" d="M194 10.5C172 82.5 65.5 134.333 22.5 135L144-66l50 76.5Z"/></g><g filter="url(#gemini__f)"><path fill="#FA4340" d="M190.5-12.5C168.5 59.5 62 111.333 19 112L140.5-89l50 76.5Z"/></g><g filter="url(#gemini__g)"><path fill="#14BB69" d="M194.5 279.5C172.5 207.5 66 155.667 23 155l121.5 201 50-76.5Z"/></g><g filter="url(#gemini__h)"><path fill="#14BB69" d="M196.5 320.5C174.5 248.5 68 196.667 25 196l121.5 201 50-76.5Z"/></g></g><defs><filter id="gemini__b" width="464" height="390" x="-69" y="-46" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="18"/></filter><filter id="gemini__c" width="265" height="273" x="-99" y="6" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__d" width="265" height="273" x="-113" y="12" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__e" width="299.5" height="329" x="-41.5" y="-130" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__f" width="299.5" height="329" x="-45" y="-153" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__g" width="299.5" height="329" x="-41" y="91" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter><filter id="gemini__h" width="299.5" height="329" x="-39" y="132" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_69_17998" stdDeviation="32"/></filter></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="256" height="260" preserveAspectRatio="xMidYMid" viewBox="0 0 256 260"><path fill="#fff" d="M239.184 106.203a64.716 64.716 0 0 0-5.576-53.103C219.452 28.459 191 15.784 163.213 21.74A65.586 65.586 0 0 0 52.096 45.22a64.716 64.716 0 0 0-43.23 31.36c-14.31 24.602-11.061 55.634 8.033 76.74a64.665 64.665 0 0 0 5.525 53.102c14.174 24.65 42.644 37.324 70.446 31.36a64.72 64.72 0 0 0 48.754 21.744c28.481.025 53.714-18.361 62.414-45.481a64.767 64.767 0 0 0 43.229-31.36c14.137-24.558 10.875-55.423-8.083-76.483Zm-97.56 136.338a48.397 48.397 0 0 1-31.105-11.255l1.535-.87 51.67-29.825a8.595 8.595 0 0 0 4.247-7.367v-72.85l21.845 12.636c.218.111.37.32.409.563v60.367c-.056 26.818-21.783 48.545-48.601 48.601Zm-104.466-44.61a48.345 48.345 0 0 1-5.781-32.589l1.534.921 51.722 29.826a8.339 8.339 0 0 0 8.441 0l63.181-36.425v25.221a.87.87 0 0 1-.358.665l-52.335 30.184c-23.257 13.398-52.97 5.431-66.404-17.803ZM23.549 85.38a48.499 48.499 0 0 1 25.58-21.333v61.39a8.288 8.288 0 0 0 4.195 7.316l62.874 36.272-21.845 12.636a.819.819 0 0 1-.767 0L41.353 151.53c-23.211-13.454-31.171-43.144-17.804-66.405v.256Zm179.466 41.695-63.08-36.63L161.73 77.86a.819.819 0 0 1 .768 0l52.233 30.184a48.6 48.6 0 0 1-7.316 87.635v-61.391a8.544 8.544 0 0 0-4.4-7.213Zm21.742-32.69-1.535-.922-51.619-30.081a8.39 8.39 0 0 0-8.492 0L99.98 99.808V74.587a.716.716 0 0 1 .307-.665l52.233-30.133a48.652 48.652 0 0 1 72.236 50.391v.205ZM88.061 139.097l-21.845-12.585a.87.87 0 0 1-.41-.614V65.685a48.652 48.652 0 0 1 79.757-37.346l-1.535.87-51.67 29.825a8.595 8.595 0 0 0-4.246 7.367l-.051 72.697Zm11.868-25.58 28.138-16.217 28.188 16.218v32.434l-28.086 16.218-28.188-16.218-.052-32.434Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffffff" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>ModelContextProtocol</title><path d="M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"/><path d="M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#000000" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>ModelContextProtocol</title><path d="M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"/><path d="M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"/></svg>
@@ -0,0 +1 @@
1
+ <svg fill="#ffffff" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>ModelContextProtocol</title><path d="M15.688 2.343a2.588 2.588 0 00-3.61 0l-9.626 9.44a.863.863 0 01-1.203 0 .823.823 0 010-1.18l9.626-9.44a4.313 4.313 0 016.016 0 4.116 4.116 0 011.204 3.54 4.3 4.3 0 013.609 1.18l.05.05a4.115 4.115 0 010 5.9l-8.706 8.537a.274.274 0 000 .393l1.788 1.754a.823.823 0 010 1.18.863.863 0 01-1.203 0l-1.788-1.753a1.92 1.92 0 010-2.754l8.706-8.538a2.47 2.47 0 000-3.54l-.05-.049a2.588 2.588 0 00-3.607-.003l-7.172 7.034-.002.002-.098.097a.863.863 0 01-1.204 0 .823.823 0 010-1.18l7.273-7.133a2.47 2.47 0 00-.003-3.537z"/><path d="M14.485 4.703a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a4.115 4.115 0 000 5.9 4.314 4.314 0 006.016 0l7.12-6.982a.823.823 0 000-1.18.863.863 0 00-1.204 0l-7.119 6.982a2.588 2.588 0 01-3.61 0 2.47 2.47 0 010-3.54l7.12-6.982z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 256 274"><path fill="#632CA6" fill-rule="evenodd" d="M214.4 194.5l-22.8-15-19 31.7-22.1-6.4-19.5 29.7 1 9.3 105.8-19.5-6.1-66-17.3 36.2zM115.7 166l17-2.3c2.7 1.2 4.6 1.7 8 2.5a25 25 0 0019.8-1.8c2-1 6.3-5 8-7.1l69.6-12.7 7 86-119 21.4-10.4-86zm129.2-31l-6.9 1.4L224.8 0 .1 26l27.7 225 26.2-4c-2.1-3-5.4-6.6-11-11.2-7.7-6.5-5-17.4-.4-24.3 6-11.7 37.2-26.5 35.4-45.2-.6-6.7-1.7-15.6-8-21.6-.2 2.5.2 5 .2 5s-2.6-3.4-3.9-7.9c-1.2-1.7-2.2-2.2-3.6-4.5-1 2.6-.8 5.7-.8 5.7s-2.2-5-2.5-9.2a14.7 14.7 0 00-1.6 5.5s-2.7-8-2-12.1c-1.3-3.7-5-11-4-27.7 6.9 4.8 22 3.7 27.8-5 2-2.9 3.3-10.7-1-26.2-2.7-9.9-9.5-24.6-12.1-30.2l-.3.2a428 428 0 015.3 18.5C75 70.8 76 75.6 74.3 82c-1.3 5.6-4.5 9.2-12.6 13.3-8.1 4-18.9-5.9-19.6-6.4a43.3 43.3 0 01-14.6-21.5c-.7-5.5 3.1-8.7 5-13.2a50 50 0 00-5.8 2.2s3.7-3.8 8.2-7c2-1.3 3-2.1 5-3.8h-5.2s4.8-2.5 9.8-4.4c-3.7-.2-7.2 0-7.2 0s10.7-4.8 19.2-8.3c5.8-2.4 11.5-1.7 14.7 2.9 4.1 6 8.5 9.3 17.9 11.3 5.7-2.5 7.4-3.8 14.6-5.8 6.3-7 11.3-7.8 11.3-7.8s-2.5 2.2-3.1 5.8c3.6-2.8 7.5-5.2 7.5-5.2s-1.5 1.9-3 4.9l.4.5a79 79 0 019.1-4.5l-3 4c3.1 0 9.5.2 12 .5 14.7.3 17.7-15.7 23.3-17.7 7-2.5 10.2-4 22.2 7.8 10.3 10 18.4 28.2 14.4 32.3-3.4 3.3-10-1.3-17.3-10.5a39.5 39.5 0 01-8.2-17.8c-1.1-6.1-5.6-9.7-5.6-9.7s2.6 5.8 2.6 11c0 2.8.3 13.2 4.8 19.1-.4.9-.6 4.3-1.1 5-5.2-6.4-16.5-11-18.3-12.2 6.2 5 20.4 16.7 26 27.9 5.1 10.6 2 20.3 4.7 22.8.7.7 11.1 13.6 13.1 20.2 3.5 11.3.2 23.2-4.4 30.6l-12.7 2c-1.9-.5-3.1-.8-4.8-1.8a32 32 0 002.8-6.5l-.7-1.3a54.4 54.4 0 01-16.2 14.2 27.2 27.2 0 01-21 1.8 117.4 117.4 0 01-33.4-17.9s0 2.2.6 2.7c3.8 4.4 12.7 12.3 21.3 17.8l-18.3 2 8.7 67.4c-3.9.6-4.5.9-8.7 1.5a45.1 45.1 0 00-18.5-26.6A35 35 0 0065 200l-.5.6c6.2-.6 13.6.3 21.2 5.1 7.5 4.7 13.5 17 15.7 24.2 2.9 9.4 4.8 19.4-2.8 30-5.4 7.6-21.3 11.8-34 2.8 3.3 5.5 8 10 14.2 10.8 9.2 1.3 18-.3 24-6.5 5.2-5.3 7.9-16.4 7.2-28l8.1-1.2 3 20.9 135-16.3L245 135.1zm-82-56.8c-.5.9-1 1.4-.2 4.2v.2l.2.4.4.8c1.6 3.3 3.4 6.4 6.3 8 .8-.2 1.5-.3 2.4-.3 2.7-.1 4.5.3 5.6.9v-2.6c-.2-4.1.8-11.2-7.1-14.9-3-1.4-7.3-1-8.7.8l.7.2c2.1.7.7 1.4.3 2.3zm22.3 38.7a45.6 45.6 0 00-24.6 4.3c-2.8 2.2-1.5 6 .6 7.5 5.8 4.4 11 7.3 16.3 6.6 3.3-.4 6.2-5.7 8.3-10.4 1.4-3.3 1.4-6.8-.7-8zm-58-33.5c1.9-1.8-9.2-4.1-17.7 1.7-6.3 4.3-6.5 13.6-.5 18.8l1.6 1.2a51.7 51.7 0 0115.9-4.7c1.3-1.4 2.8-4 2.4-8.5-.5-6.2-5.2-5.2-1.7-8.5z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1024" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8C0 11.54 2.29 14.53 5.47 15.59C5.87 15.66 6.02 15.42 6.02 15.21C6.02 15.02 6.01 14.39 6.01 13.72C4 14.09 3.48 13.23 3.32 12.78C3.23 12.55 2.84 11.84 2.5 11.65C2.22 11.5 1.82 11.13 2.49 11.12C3.12 11.11 3.57 11.7 3.72 11.94C4.44 13.15 5.59 12.81 6.05 12.6C6.12 12.08 6.33 11.73 6.56 11.53C4.78 11.33 2.92 10.64 2.92 7.58C2.92 6.71 3.23 5.99 3.74 5.43C3.66 5.23 3.38 4.41 3.82 3.31C3.82 3.31 4.49 3.1 6.02 4.13C6.66 3.95 7.34 3.86 8.02 3.86C8.7 3.86 9.38 3.95 10.02 4.13C11.55 3.09 12.22 3.31 12.22 3.31C12.66 4.41 12.38 5.23 12.3 5.43C12.81 5.99 13.12 6.7 13.12 7.58C13.12 10.65 11.25 11.33 9.47 11.53C9.76 11.78 10.01 12.26 10.01 13.01C10.01 14.08 10 14.94 10 15.21C10 15.42 10.15 15.67 10.55 15.59C13.71 14.53 16 11.53 16 8C16 3.58 12.42 0 8 0Z" transform="scale(64)" fill="#ffff"/></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m10.56,29.14v5.19h-4.77v-5.19h-2.26v12.4h2.26v-5.02h4.77v5.02h2.26v-12.4h-2.26Zm9.51,8.39c0,1.03-.84,1.87-1.87,1.87s-1.87-.84-1.87-1.87v-5.31h-2.15v5.31c0,2.22,1.8,4.02,4.02,4.02,2.22,0,4.01-1.8,4.02-4.02v-5.31h-2.14v5.31Zm15.91-4.76c0-1.09.72-1.43,1.51-1.43.64,0,1.48.48,2.02,1.07l1.41-1.66c-.7-.95-2.13-1.61-3.29-1.61-2.33,0-4.01,1.36-4.01,3.63,0,4.2,5.13,2.86,5.13,5.21,0,.72-.7,1.36-1.51,1.36-1.27,0-1.68-.62-2.27-1.28l-1.56,1.62c1,1.23,2.23,1.85,3.7,1.85,2.21,0,3.99-1.38,3.99-3.54,0-4.66-5.13-3.21-5.13-5.23m31.74,6.79c-1.27,0-1.63-.55-1.63-1.39v-3.72h1.97v-1.89h-1.97v-2.49l-2.18.98v7.58c0,1.94,1.34,2.92,3.17,2.92.29,0,.58-.02.86-.07l.53-1.96c-.24.02-.51.03-.76.03m-39.47-7.27c-1.06,0-1.81.31-2.52,1.01v-4.08h-2.15v7.56c0,2.83,2.05,4.77,4.35,4.77,2.55,0,4.8-1.97,4.8-4.63s-2.07-4.63-4.47-4.63m-.01,7.1c-1.35,0-2.44-1.09-2.44-2.44s1.09-2.44,2.44-2.44,2.44,1.09,2.44,2.44-1.09,2.44-2.44,2.44h0m23.37-2.58c0-2.66-2.24-4.63-4.8-4.63-2.3,0-4.35,1.94-4.35,4.77v7.57h2.15v-4.09c.72.7,1.46,1.01,2.52,1.01,2.4,0,4.47-2.01,4.47-4.63m-2.04-.03c0,1.35-1.09,2.44-2.44,2.44s-2.44-1.09-2.44-2.44h0c0-1.35,1.09-2.44,2.44-2.44s2.44,1.09,2.44,2.44" fill="#fff" stroke-width="0"/><path d="m58.55,32.07v-2.16c.58-.27.96-.86.96-1.5v-.05c0-.92-.75-1.66-1.66-1.66h-.05c-.92,0-1.66.75-1.66,1.66h0v.05c0,.64.38,1.23.96,1.5v2.16c-.82.13-1.59.47-2.24.99l-5.93-4.62c.04-.15.06-.31.07-.47,0-1.04-.84-1.88-1.87-1.88-1.04,0-1.88.84-1.88,1.87s.84,1.88,1.87,1.88c0,0,0,0,0,0,.32,0,.64-.09.92-.25l5.84,4.54c-1.07,1.62-1.04,3.73.07,5.32l-1.77,1.78c-.14-.05-.29-.07-.44-.07-.85,0-1.54.69-1.54,1.54,0,.85.69,1.54,1.54,1.54.85,0,1.54-.69,1.54-1.54,0-.15-.03-.3-.07-.44l1.76-1.76c2.07,1.6,5.04,1.21,6.64-.86,1.6-2.07,1.21-5.04-.86-6.64-.64-.49-1.38-.81-2.18-.93m-.73,7.11c-1.34.04-2.46-1.02-2.5-2.36-.04-1.34,1.02-2.46,2.36-2.5.04,0,.09,0,.13,0,1.34.05,2.39,1.17,2.34,2.51-.04,1.27-1.07,2.3-2.34,2.34" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m13.3,57.05l.84-1.94c.9.67,2.1,1.02,3.28,1.02.87,0,1.42-.34,1.42-.85-.01-1.42-5.23-.31-5.27-3.88-.01-1.81,1.6-3.21,3.88-3.21,1.36,0,2.72.34,3.68,1.1l-.78,1.97c-.89-.56-1.99-.97-3.04-.97-.71,0-1.19.34-1.19.77.01,1.4,5.27.63,5.33,4.05,0,1.86-1.57,3.16-3.83,3.16-1.65,0-3.17-.39-4.32-1.22" fill="#fff" stroke-width="0"/><path d="m45.29,54.42c-.42.72-1.2,1.22-2.1,1.22-1.33,0-2.41-1.07-2.41-2.41s1.07-2.41,2.41-2.41c.9,0,1.68.5,2.1,1.22l2.3-1.27c-.86-1.54-2.51-2.58-4.4-2.58-2.78,0-5.04,2.26-5.04,5.04s2.26,5.04,5.04,5.04c1.9,0,3.53-1.04,4.4-2.58l-2.3-1.27h0Z" fill="#fff" stroke-width="0"/><rect x="22.62" y="44" width="2.88" height="14.08" fill="#fff" stroke-width="0"/><polygon points="48.72 44 48.72 58.09 51.6 58.09 51.6 53.87 55.02 58.09 58.7 58.09 54.36 53.07 58.38 48.39 54.85 48.39 51.6 52.28 51.6 44 48.72 44" fill="#fff" stroke-width="0"/><path d="m34.05,54.44c-.42.69-1.27,1.2-2.25,1.2-1.33,0-2.41-1.07-2.41-2.41s1.07-2.41,2.41-2.41c.97,0,1.83.54,2.25,1.24v2.38Zm0-6.05v1.14c-.47-.8-1.64-1.35-2.86-1.35-2.53,0-4.52,2.23-4.52,5.03s1.99,5.06,4.52,5.06c1.22,0,2.4-.55,2.86-1.35v1.14h2.88v-9.68h-2.88Z" fill="#fff" stroke-width="0"/><path d="m26.71,28.85c0,1.87-1.51,3.37-3.37,3.37s-3.38-1.51-3.38-3.37,1.51-3.37,3.37-3.37h3.37v3.37h.01Z" fill="#fff" stroke-width="0"/><path d="m28.39,28.85c0-1.87,1.51-3.37,3.37-3.37s3.37,1.51,3.37,3.37v8.43c0,1.87-1.51,3.37-3.37,3.37s-3.37-1.5-3.37-3.37v-8.43Z" fill="#fff" stroke-width="0"/><path d="m31.77,15.29c-1.87,0-3.37-1.51-3.37-3.37s1.51-3.37,3.37-3.37,3.37,1.51,3.37,3.37v3.37h-3.37Z" fill="#fff" stroke-width="0"/><path d="m31.77,17.01c1.87,0,3.37,1.51,3.37,3.37s-1.51,3.37-3.37,3.37h-8.47c-1.87,0-3.37-1.51-3.37-3.37s1.51-3.37,3.37-3.37h8.47Z" fill="#fff" stroke-width="0"/><path d="m45.29,20.38c0-1.87,1.51-3.37,3.37-3.37s3.37,1.51,3.37,3.37-1.51,3.37-3.37,3.37h-3.37v-3.37Z" fill="#fff" stroke-width="0"/><path d="m43.61,20.38c0,1.87-1.51,3.37-3.37,3.37s-3.37-1.51-3.37-3.37v-8.46c0-1.87,1.51-3.37,3.37-3.37s3.37,1.5,3.37,3.37v8.46Z" fill="#fff" stroke-width="0"/><path d="m40.23,33.91c1.87,0,3.37,1.51,3.37,3.37s-1.51,3.37-3.37,3.37-3.37-1.51-3.37-3.37v-3.37h3.37Z" fill="#fff" stroke-width="0"/><path d="m40.23,32.22c-1.87,0-3.37-1.51-3.37-3.37s1.51-3.37,3.37-3.37h8.47c1.87,0,3.37,1.51,3.37,3.37s-1.51,3.37-3.37,3.37h-8.47Z" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path id="d" d="m54.46,49.5l-10.87-6.28c-1.53-.88-3.48-.36-4.36,1.17-.34.6-.48,1.26-.41,1.91v12.27c0,1.75,1.43,3.18,3.18,3.18s3.18-1.43,3.18-3.18v-7.06l6.09,3.52c1.53.88,3.48.36,4.36-1.17.88-1.53.36-3.48-1.17-4.36" fill="#fff" stroke-width="0"/><path id="e" d="m27.43,36.04c.02-1.13-.58-2.19-1.56-2.76l-10.87-6.27c-.47-.27-1.01-.42-1.55-.42-1.12,0-2.15.6-2.71,1.56-.86,1.49-.35,3.4,1.14,4.26l6.26,3.61-6.26,3.62c-.72.42-1.24,1.09-1.45,1.89-.22.81-.11,1.65.31,2.37.56.96,1.59,1.56,2.7,1.56.55,0,1.09-.14,1.56-.42l10.87-6.27c.97-.56,1.57-1.61,1.56-2.73" fill="#fff" stroke-width="0"/><path id="f" d="m17.47,22.56l10.87,6.27c1.27.74,2.83.5,3.83-.48.63-.58,1.03-1.42,1.03-2.34v-12.58c0-1.76-1.43-3.18-3.18-3.18s-3.18,1.43-3.18,3.18v7.16l-6.17-3.56c-1.53-.88-3.48-.36-4.36,1.17-.88,1.53-.36,3.48,1.17,4.36" fill="#fff" stroke-width="0"/><path id="g" d="m41.91,36.55c0,.24-.14.57-.31.75l-4.31,4.31c-.17.17-.51.31-.75.31h-1.1c-.24,0-.58-.14-.75-.31l-4.31-4.31c-.17-.18-.31-.51-.31-.75v-1.1c0-.25.14-.58.31-.75l4.31-4.31c.17-.17.51-.31.75-.31h1.1c.24,0,.58.14.75.31l4.31,4.31c.17.17.31.5.31.75v1.1Zm-3.84-.53v-.05c0-.18-.1-.42-.23-.55l-1.27-1.27c-.12-.13-.37-.23-.55-.23h-.05c-.18,0-.42.1-.55.23l-1.27,1.27c-.12.12-.23.37-.23.55v.05c0,.18.1.43.23.55l1.27,1.27c.13.12.37.23.55.23h.05c.18,0,.43-.1.55-.23l1.27-1.27c.12-.12.23-.37.23-.55Z" fill="#fff" stroke-width="0"/><path id="h" d="m43.59,28.84l10.87-6.27c1.53-.88,2.05-2.84,1.17-4.36-.88-1.53-2.84-2.05-4.36-1.17l-6.09,3.52v-7.11c0-1.76-1.43-3.18-3.18-3.18s-3.18,1.43-3.18,3.18v12.33c-.06.64.06,1.3.41,1.91.88,1.53,2.84,2.05,4.36,1.17" fill="#fff" stroke-width="0"/><path id="i" d="m30.51,42.85c-.72-.14-1.49-.02-2.18.37l-10.87,6.28c-1.53.88-2.05,2.83-1.17,4.36.88,1.53,2.84,2.05,4.36,1.17l6.17-3.56v7.1c0,1.75,1.43,3.18,3.18,3.18s3.18-1.43,3.18-3.18v-12.58c0-1.59-1.16-2.9-2.68-3.14" fill="#fff" stroke-width="0"/><path id="j" d="m61.25,28.12c-.88-1.53-2.84-2.05-4.36-1.17l-10.87,6.27c-1.04.6-1.61,1.7-1.6,2.82,0,1.12.56,2.2,1.6,2.79l10.87,6.28c1.53.88,3.48.36,4.36-1.17.88-1.53.36-3.48-1.17-4.36l-6.15-3.55,6.15-3.55c1.53-.88,2.05-2.83,1.17-4.36" fill="#fff" stroke-width="0"/></g></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="b" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72"><g id="c"><circle cx="36" cy="36" r="36" fill="#333" stroke-width="0"/><path d="m35.43,19.36v17.66h-14.63l14.63-17.66Zm0-6.34c0,4.04-3.27,7.31-7.31,7.31s-7.31-3.27-7.31-7.31h14.63Zm2.41,24c0-4.04,3.27-7.31,7.31-7.31s7.31,3.27,7.31,7.31h-14.63Zm0-6.34V13.03h14.63l-14.63,17.66h0Zm8.18,21.45c.75.02,1.48-.26,2.03-.78l1,1.08c-.66.68-1.58,1.19-3.01,1.19-2.45,0-4.04-1.63-4.04-3.83-.04-2.07,1.61-3.79,3.68-3.83.04,0,.09,0,.13,0,2.43,0,3.82,1.85,3.69,4.42h-5.76c.2,1.07.95,1.75,2.26,1.75m1.75-2.97c-.16-1-.75-1.73-1.94-1.73-1.11,0-1.88.63-2.08,1.73h4.02,0Zm-39.54,2.89l4.43-4.5h-4.32v-1.41h6.38v1.44l-4.43,4.5h4.49v1.41h-6.55v-1.44h0Zm11.52.08c.75.02,1.48-.26,2.03-.78l1,1.08c-.66.68-1.58,1.19-3.01,1.19-2.45,0-4.04-1.63-4.04-3.83-.04-2.07,1.61-3.79,3.68-3.83.04,0,.09,0,.13,0,2.43,0,3.82,1.85,3.69,4.42h-5.75c.2,1.07.95,1.75,2.26,1.75m1.75-2.97c-.16-1-.75-1.73-1.94-1.73-1.11,0-1.88.63-2.08,1.73h4.02,0Zm11.3.63c0-2.35,1.76-3.82,3.69-3.82.94-.01,1.84.39,2.45,1.1v-4.34h1.56v10.73h-1.56v-1.01c-.6.74-1.51,1.17-2.47,1.16-1.88,0-3.68-1.49-3.68-3.82m6.23-.02c-.03-1.29-1.11-2.31-2.4-2.27-1.29.03-2.31,1.11-2.27,2.4.03,1.26,1.07,2.27,2.33,2.27,1.35,0,2.33-1.07,2.33-2.4m11.5,2.13l1.42-.74c.38.68,1.11,1.09,1.89,1.07.89,0,1.35-.45,1.35-.97,0-.59-.86-.72-1.79-.91-1.25-.27-2.56-.68-2.56-2.19,0-1.16,1.11-2.24,2.85-2.22,1.37,0,2.39.54,2.97,1.42l-1.31.72c-.37-.55-.99-.86-1.65-.84-.84,0-1.27.41-1.27.88,0,.53.68.68,1.74.91,1.21.27,2.58.66,2.58,2.19,0,1.01-.89,2.38-2.98,2.37-1.53,0-2.61-.62-3.23-1.71m10.47-1.7l-1.24,1.35v1.91h-1.56v-10.73h1.56v7.03l3.32-3.65h1.91l-2.88,3.15,2.95,4.21h-1.77l-2.29-3.26h0Zm-32.93-4.23c-1.86,0-3.42,1.2-3.42,3.21v4.3h1.6v-4.1c0-1.2.69-1.93,1.88-1.93s1.77.72,1.77,1.93v4.1h1.59v-4.3c0-2-1.56-3.21-3.42-3.21" fill="#fff" stroke-width="0"/></g></svg>
@@ -10,6 +10,8 @@ type Badge = {
10
10
  icon?: any;
11
11
  iconComponent?: any;
12
12
  iconURL?: string;
13
+ iconURLLight?: string;
14
+ iconURLDark?: string;
13
15
  class?: string;
14
16
  url?: string;
15
17
  };
@@ -22,6 +24,7 @@ type Props = {
22
24
  const { badge, className = '' } = Astro.props;
23
25
  const href = getBadgeHref(badge);
24
26
  const Icon = badge.icon || badge.iconComponent;
27
+ const hasThemedIcon = badge.iconURLLight && badge.iconURLDark;
25
28
  const classes = `
26
29
  inline-flex items-center gap-2 px-3 py-1.5 rounded-lg text-sm font-medium
27
30
  ${badge.backgroundColor ? 'bg-[rgb(var(--ec-content-hover))]' : 'bg-transparent'} border border-[rgb(var(--ec-page-border))]
@@ -36,14 +39,50 @@ const classes = `
36
39
  href ? (
37
40
  <a id={badge.id || undefined} href={href} class={classes} style={getBadgeStyle(badge)} title={badge.content}>
38
41
  {Icon && <Icon className="w-4 h-4 flex-shrink-0" />}
39
- {badge.iconURL && <img src={badge.iconURL} class="w-4 h-4 flex-shrink-0 opacity-80" alt="" />}
42
+ {hasThemedIcon && (
43
+ <img
44
+ src={badge.iconURLLight}
45
+ class="w-4 h-4 flex-shrink-0 opacity-80 dark:hidden"
46
+ alt=""
47
+ onerror="this.style.display='none'"
48
+ />
49
+ )}
50
+ {hasThemedIcon && (
51
+ <img
52
+ src={badge.iconURLDark}
53
+ class="hidden w-4 h-4 flex-shrink-0 opacity-80 dark:inline-block"
54
+ alt=""
55
+ onerror="this.style.display='none'"
56
+ />
57
+ )}
58
+ {!hasThemedIcon && badge.iconURL && (
59
+ <img src={badge.iconURL} class="w-4 h-4 flex-shrink-0 opacity-80" alt="" onerror="this.style.display='none'" />
60
+ )}
40
61
  <span>{badge.content}</span>
41
62
  <ArrowTopRightOnSquareIcon className="w-3.5 h-3.5 flex-shrink-0 opacity-70" aria-hidden="true" />
42
63
  </a>
43
64
  ) : (
44
65
  <span id={badge.id || undefined} class={classes} style={getBadgeStyle(badge)} title={badge.content}>
45
66
  {Icon && <Icon className="w-4 h-4 flex-shrink-0" />}
46
- {badge.iconURL && <img src={badge.iconURL} class="w-4 h-4 flex-shrink-0 opacity-80" alt="" />}
67
+ {hasThemedIcon && (
68
+ <img
69
+ src={badge.iconURLLight}
70
+ class="w-4 h-4 flex-shrink-0 opacity-80 dark:hidden"
71
+ alt=""
72
+ onerror="this.style.display='none'"
73
+ />
74
+ )}
75
+ {hasThemedIcon && (
76
+ <img
77
+ src={badge.iconURLDark}
78
+ class="hidden w-4 h-4 flex-shrink-0 opacity-80 dark:inline-block"
79
+ alt=""
80
+ onerror="this.style.display='none'"
81
+ />
82
+ )}
83
+ {!hasThemedIcon && badge.iconURL && (
84
+ <img src={badge.iconURL} class="w-4 h-4 flex-shrink-0 opacity-80" alt="" onerror="this.style.display='none'" />
85
+ )}
47
86
  <span>{badge.content}</span>
48
87
  </span>
49
88
  )
@@ -15,7 +15,7 @@ import type { CollectionEntry } from 'astro:content';
15
15
  import { getSpecUrl, getSpecIcon, getSpecLabel, getSpecColor, type Specification } from './specification-utils';
16
16
 
17
17
  interface MessageGridV2Props {
18
- service: CollectionEntry<'services'>;
18
+ service: CollectionEntry<'agents'> | CollectionEntry<'services'>;
19
19
  embeded?: boolean;
20
20
  specifications?: Specification[];
21
21
  }
@@ -232,13 +232,16 @@ const CollapsibleContainerSection = memo(
232
232
 
233
233
  export default function MessageGridV2({ service, embeded = false, specifications = [] }: MessageGridV2Props) {
234
234
  const { sends = [], receives = [], writesTo = [], readsFrom = [] } = service.data;
235
+ const collection = service.collection || 'services';
236
+ const resourceLabel = collection === 'agents' ? 'agent' : 'service';
237
+ const hasVisualizer = true;
235
238
  const hasContainers = readsFrom.length > 0 || writesTo.length > 0;
236
239
  const hasMessages = receives.length > 0 || sends.length > 0;
237
240
  const hasSpecs = specifications.length > 0;
238
241
 
239
242
  return (
240
243
  <div className="w-full">
241
- {/* Service Header - Doc style */}
244
+ {/* Resource Header - Doc style */}
242
245
  <div className="border-b border-[rgb(var(--ec-page-border))] md:pb-4">
243
246
  <div className="flex items-start justify-between">
244
247
  <div>
@@ -249,19 +252,21 @@ export default function MessageGridV2({ service, embeded = false, specifications
249
252
  </div>
250
253
  <div className="flex items-center gap-2 flex-shrink-0">
251
254
  <a
252
- href={buildUrl(`/docs/services/${service.data.id}/${service.data.version}`)}
255
+ href={buildUrl(`/docs/${collection}/${service.data.id}/${service.data.version}`)}
253
256
  className="inline-flex items-center gap-1.5 px-3 py-2 text-sm font-medium text-[rgb(var(--ec-page-text))] bg-[rgb(var(--ec-card-bg,var(--ec-page-bg)))] border border-[rgb(var(--ec-page-border))] rounded-lg hover:bg-[rgb(var(--ec-content-hover))] hover:border-[rgb(var(--ec-page-text-muted))] transition-all"
254
257
  >
255
258
  View docs
256
259
  <ArrowTopRightOnSquareIcon className="h-4 w-4 text-[rgb(var(--ec-icon-color))]" />
257
260
  </a>
258
- <a
259
- href={buildUrl(`/visualiser/services/${service.data.id}/${service.data.version}`)}
260
- className="inline-flex items-center gap-1.5 px-3 py-2 text-sm font-medium text-white bg-zinc-800 dark:bg-zinc-700 rounded-lg hover:bg-zinc-900 dark:hover:bg-zinc-600 transition-all"
261
- >
262
- Visualizer
263
- <ArrowTopRightOnSquareIcon className="h-4 w-4 text-zinc-400" />
264
- </a>
261
+ {hasVisualizer && (
262
+ <a
263
+ href={buildUrl(`/visualiser/${collection}/${service.data.id}/${service.data.version}`)}
264
+ className="inline-flex items-center gap-1.5 px-3 py-2 text-sm font-medium text-white bg-zinc-800 dark:bg-zinc-700 rounded-lg hover:bg-zinc-900 dark:hover:bg-zinc-600 transition-all"
265
+ >
266
+ Visualizer
267
+ <ArrowTopRightOnSquareIcon className="h-4 w-4 text-zinc-400" />
268
+ </a>
269
+ )}
265
270
  </div>
266
271
  </div>
267
272
  </div>
@@ -349,7 +354,7 @@ export default function MessageGridV2({ service, embeded = false, specifications
349
354
  <ServerIcon className="h-8 w-8 text-[rgb(var(--ec-icon-color))]" />
350
355
  </div>
351
356
  <p className="text-[rgb(var(--ec-page-text-muted))]">
352
- This service has no message flows, container relationships, or specifications defined.
357
+ This {resourceLabel} has no message flows or container relationships defined.
353
358
  </p>
354
359
  </div>
355
360
  )}
@@ -0,0 +1,132 @@
1
+ ---
2
+ import type { CollectionEntry } from 'astro:content';
3
+ import Admonition from '../Admonition';
4
+ import { buildUrl } from '@utils/url-builder';
5
+
6
+ type AgentTool = {
7
+ name: string;
8
+ type: string;
9
+ icon?: string;
10
+ url?: string;
11
+ description?: string;
12
+ };
13
+
14
+ export interface Props extends CollectionEntry<'agents'> {}
15
+
16
+ const { data, collection } = Astro.props;
17
+ const tools = (data?.tools || []) as AgentTool[];
18
+ const isComponentEnabled = collection === 'agents';
19
+ const mcpLogoLightUrl = buildUrl('/icons/protocols/mcp-light.svg', true);
20
+ const mcpLogoDarkUrl = buildUrl('/icons/protocols/mcp-dark.svg', true);
21
+
22
+ const getToolUrlLabel = (url: string) => {
23
+ try {
24
+ const parsedUrl = new URL(url);
25
+ const pathParts = parsedUrl.pathname.split('/').filter(Boolean);
26
+ const compactPath =
27
+ pathParts.length > 1 ? `/.../${pathParts[pathParts.length - 1]}` : parsedUrl.pathname === '/' ? '' : parsedUrl.pathname;
28
+
29
+ return `${parsedUrl.hostname}${compactPath}`;
30
+ } catch {
31
+ return url;
32
+ }
33
+ };
34
+
35
+ const isMcpTool = (tool: AgentTool) => tool.type?.toLowerCase() === 'mcp';
36
+ ---
37
+
38
+ {
39
+ !isComponentEnabled && (
40
+ <Admonition type="warning">
41
+ <div>
42
+ <span class="font-bold">
43
+ {`<AgentTools/>`} component is not supported for resources of type {collection}.
44
+ </span>
45
+ <span class="block">This component is only supported for agents.</span>
46
+ </div>
47
+ </Admonition>
48
+ )
49
+ }
50
+
51
+ {
52
+ isComponentEnabled && tools.length > 0 ? (
53
+ <div class="overflow-x-auto relative not-prose">
54
+ <table class="w-full table-fixed text-sm text-left text-[rgb(var(--ec-page-text-muted))] border border-[rgb(var(--ec-page-border))] rounded-lg shadow-xs">
55
+ <colgroup>
56
+ <col class="w-[26%]" />
57
+ <col class="w-[12%]" />
58
+ <col class="w-[44%]" />
59
+ <col class="w-[18%]" />
60
+ </colgroup>
61
+ <thead class="text-xs text-[rgb(var(--ec-page-text))] uppercase bg-[rgb(var(--ec-content-hover))]">
62
+ <tr>
63
+ <th scope="col" class="py-3 px-6">
64
+ Name
65
+ </th>
66
+ <th scope="col" class="py-3 px-6">
67
+ Type
68
+ </th>
69
+ <th scope="col" class="py-3 px-6 min-w-[250px]">
70
+ Description
71
+ </th>
72
+ <th scope="col" class="py-3 px-6">
73
+ URL
74
+ </th>
75
+ </tr>
76
+ </thead>
77
+ <tbody>
78
+ {tools.map((tool) => (
79
+ <tr class="bg-[rgb(var(--ec-card-bg,var(--ec-page-bg)))] border-b border-[rgb(var(--ec-page-border))] hover:bg-[rgb(var(--ec-content-hover))] align-top">
80
+ <td class="py-4 px-6 font-medium text-[rgb(var(--ec-page-text))]">{tool.name}</td>
81
+ <td class="py-4 px-6">
82
+ <span class="inline-flex items-center rounded-md bg-sky-500/10 px-2 py-1 text-xs font-medium uppercase text-sky-500 ring-1 ring-inset ring-sky-500/20">
83
+ {isMcpTool(tool) && (
84
+ <>
85
+ <img
86
+ src={mcpLogoLightUrl}
87
+ alt=""
88
+ class="mr-1.5 h-3 w-3 shrink-0 object-contain dark:hidden"
89
+ loading="lazy"
90
+ />
91
+ <img
92
+ src={mcpLogoDarkUrl}
93
+ alt=""
94
+ class="mr-1.5 hidden h-3 w-3 shrink-0 object-contain dark:inline-block"
95
+ loading="lazy"
96
+ />
97
+ </>
98
+ )}
99
+ {isMcpTool(tool) ? 'MCP' : tool.type}
100
+ </span>
101
+ </td>
102
+ <td class="py-4 px-6 text-[rgb(var(--ec-page-text-muted))]">
103
+ {tool.description || <span class="text-[rgb(var(--ec-icon-color))] italic">No description provided.</span>}
104
+ </td>
105
+ <td class="py-4 px-6 text-[rgb(var(--ec-page-text-muted))]">
106
+ {tool.url ? (
107
+ <a
108
+ href={tool.url}
109
+ class="inline-flex max-w-full items-center rounded-md border border-[rgb(var(--ec-page-border))] bg-[rgb(var(--ec-content-hover))] px-2.5 py-1 text-xs font-medium text-[rgb(var(--ec-page-text))] hover:border-[rgb(var(--ec-accent))] hover:text-[rgb(var(--ec-accent))]"
110
+ target="_blank"
111
+ rel="noopener noreferrer"
112
+ title={tool.url}
113
+ >
114
+ <span class="truncate">{getToolUrlLabel(tool.url)}</span>
115
+ </a>
116
+ ) : (
117
+ <span class="text-[rgb(var(--ec-icon-color))]">-</span>
118
+ )}
119
+ </td>
120
+ </tr>
121
+ ))}
122
+ </tbody>
123
+ </table>
124
+ </div>
125
+ ) : (
126
+ isComponentEnabled && (
127
+ <Admonition type="note" title="No Tools Defined">
128
+ <p>There are no tools defined for this agent.</p>
129
+ </Admonition>
130
+ )
131
+ )
132
+ }
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  import AstroNodeGraph from './AstroNodeGraph';
3
+ import { getNodesAndEdges as getNodesAndEdgesForAgent } from '@utils/node-graphs/agents-node-graph';
3
4
  import { getNodesAndEdges as getNodesAndEdgesForService } from '@utils/node-graphs/services-node-graph';
4
5
  import {
5
6
  getNodesAndEdgesForCommands,
@@ -59,6 +60,7 @@ let nodes = [],
59
60
  edges = [];
60
61
 
61
62
  const getNodesAndEdgesFunctions = {
63
+ agents: getNodesAndEdgesForAgent,
62
64
  services: getNodesAndEdgesForService,
63
65
  events: getNodesAndEdgesForEvents,
64
66
  commands: getNodesAndEdgesForCommands,
@@ -19,6 +19,7 @@ import { isIconPath, resolveIconUrl } from '@utils/icon';
19
19
 
20
20
  interface Props {
21
21
  type:
22
+ | 'agent'
22
23
  | 'entity'
23
24
  | 'service'
24
25
  | 'event'
@@ -60,6 +61,7 @@ const normalizedResourceId = normalizeCustomDocPath(resourceId).toLowerCase();
60
61
  const collection = resourceToCollectionMap[type as keyof typeof resourceToCollectionMap];
61
62
 
62
63
  const typeLabels: Record<string, string> = {
64
+ agent: 'Agent',
63
65
  entity: 'Entity',
64
66
  service: 'Service',
65
67
  event: 'Event',
@@ -78,6 +80,8 @@ const typeLabels: Record<string, string> = {
78
80
 
79
81
  // SVG icons for each type (from heroicons outline)
80
82
  const typeIcons: Record<string, string> = {
83
+ agent:
84
+ '<path stroke-linecap="round" stroke-linejoin="round" d="M12 6V3m-4.5 7.5h9m-9 3h9M7.5 18h9A2.5 2.5 0 0019 15.5v-5A2.5 2.5 0 0016.5 8h-9A2.5 2.5 0 005 10.5v5A2.5 2.5 0 007.5 18zM9 21h6" />',
81
85
  entity:
82
86
  '<path stroke-linecap="round" stroke-linejoin="round" d="M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4" />', // Box/cube
83
87
  service:
@@ -172,7 +176,7 @@ const truncatedSummary = summary.length > maxSummaryLength ? summary.slice(0, ma
172
176
  const isVersionedResource = type !== 'doc';
173
177
 
174
178
  // Only these types have visualizers
175
- const hasVisualizer = ['domain', 'service', 'event', 'query', 'command', 'container'].includes(type);
179
+ const hasVisualizer = ['agent', 'domain', 'service', 'event', 'query', 'command', 'container'].includes(type);
176
180
 
177
181
  // Check deprecation status
178
182
  const deprecation = resource ? getDeprecatedDetails(resource) : null;
@@ -193,7 +197,8 @@ const repositoryUrl = resource?.data?.repository?.url;
193
197
  const maxMessages = 3;
194
198
  const sends = resource?.data?.sends || [];
195
199
  const receives = resource?.data?.receives || [];
196
- const isService = type === 'service';
200
+ const isService = type === 'service' || type === 'agent';
201
+ const supportsSpecifications = type === 'service';
197
202
 
198
203
  // Helper to resolve message version and collection - use specified version or fetch from collection
199
204
  const resolveMessage = async (msg: any): Promise<{ version: string | null; collection: string | null }> => {
@@ -233,7 +238,7 @@ const receivesWithVersions = await Promise.all(
233
238
  );
234
239
 
235
240
  // Get specifications for services
236
- const specifications = isService ? getServiceSpecifications(resource?.data) : [];
241
+ const specifications = supportsSpecifications ? getServiceSpecifications(resource?.data) : [];
237
242
  const hasSpecifications = specifications.length > 0;
238
243
 
239
244
  // Generate unique ID for this instance
@@ -15,6 +15,7 @@ import OpenAPI from '@components/MDX/OpenAPI/OpenAPI.astro';
15
15
  import AsyncAPI from '@components/MDX/AsyncAPI/AsyncAPI.astro';
16
16
  import ChannelInformation from '@components/MDX/ChannelInformation/ChannelInformation';
17
17
  import Attachments from '@components/MDX/Attachments.astro';
18
+ import AgentTools from '@components/MDX/AgentTools/AgentTools.astro';
18
19
  import MessageTable from '@components/MDX/MessageTable/MessageTable.astro';
19
20
  import ResourceGroupTable from '@components/MDX/ResourceGroupTable/ResourceGroupTable.astro';
20
21
  import EntityPropertiesTable from '@components/MDX/EntityPropertiesTable/EntityPropertiesTable.astro';
@@ -43,6 +44,7 @@ const components = (props: any) => {
43
44
  Accordion,
44
45
  AccordionGroup,
45
46
  Admonition,
47
+ AgentTools: (mdxProp: any) => jsx(AgentTools, { ...props, ...mdxProp }),
46
48
  AsyncAPI,
47
49
  ChannelInformation: (mdxProp: any) => ChannelInformation({ ...props.data, ...mdxProp }),
48
50
  Design: (mdxProp: any) => jsx(Design, { ...props, ...mdxProp }),
@@ -23,6 +23,7 @@ import {
23
23
  ArrowsRightLeftIcon,
24
24
  } from '@heroicons/react/24/outline';
25
25
  import { StarIcon as StarIconSolid, CircleStackIcon } from '@heroicons/react/24/solid';
26
+ import { Bot } from 'lucide-react';
26
27
  import { useStore } from '@nanostores/react';
27
28
  import { favoritesStore, toggleFavorite as toggleFavoriteAction } from '../../stores/favorites-store';
28
29
  import { buildUrl } from '@utils/url-builder';
@@ -41,6 +42,7 @@ const INDEXED_RESULT_LOAD_LIMIT = 50;
41
42
  const SEARCH_RESULT_DISPLAY_LIMIT = 25;
42
43
 
43
44
  const typeIcons: any = {
45
+ Agent: Bot,
44
46
  Domain: RectangleGroupIcon,
45
47
  Service: ServerIcon,
46
48
  Event: BoltIcon,
@@ -64,6 +66,7 @@ const typeIcons: any = {
64
66
  };
65
67
 
66
68
  const typeColors: any = {
69
+ Agent: 'text-sky-500 dark:text-sky-400 bg-sky-50 dark:bg-sky-500/10 ring-sky-200 dark:ring-sky-500/30',
67
70
  Domain: 'text-orange-500 dark:text-orange-400 bg-orange-50 dark:bg-orange-500/10 ring-orange-200 dark:ring-orange-500/30',
68
71
  Service: 'text-pink-500 dark:text-pink-400 bg-pink-50 dark:bg-pink-500/10 ring-pink-200 dark:ring-pink-500/30',
69
72
  Event: 'text-orange-500 dark:text-orange-400 bg-orange-50 dark:bg-orange-500/10 ring-orange-200 dark:ring-orange-500/30',
@@ -191,6 +191,7 @@ export const getSearchFilters = ({ items, query }: { items: Array<{ type: string
191
191
 
192
192
  const counts: Record<string, number> = {
193
193
  all: items.length,
194
+ Agent: 0,
194
195
  Domain: 0,
195
196
  Service: 0,
196
197
  Message: 0,
@@ -228,6 +229,7 @@ export const getSearchFilters = ({ items, query }: { items: Array<{ type: string
228
229
  };
229
230
 
230
231
  addFilter('Domain', 'Domains');
232
+ addFilter('Agent', 'Agents');
231
233
  addFilter('Service', 'Services');
232
234
  addFilter('Message', 'Messages');
233
235
  addFilter('Container', 'Data Stores');