mindroot 0.1.0__tar.gz

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 (1691) hide show
  1. mindroot-0.1.0/LICENSE +21 -0
  2. mindroot-0.1.0/MANIFEST.in +24 -0
  3. mindroot-0.1.0/PKG-INFO +95 -0
  4. mindroot-0.1.0/README.md +59 -0
  5. mindroot-0.1.0/pyproject.toml +60 -0
  6. mindroot-0.1.0/setup.cfg +4 -0
  7. mindroot-0.1.0/src/mindroot/__init__.py +1 -0
  8. mindroot-0.1.0/src/mindroot/coreplugins/admin/__init__.py +1 -0
  9. mindroot-0.1.0/src/mindroot/coreplugins/admin/agent_importer.py +173 -0
  10. mindroot-0.1.0/src/mindroot/coreplugins/admin/agent_router.py +163 -0
  11. mindroot-0.1.0/src/mindroot/coreplugins/admin/persona_handler.py +62 -0
  12. mindroot-0.1.0/src/mindroot/coreplugins/admin/persona_router.py +151 -0
  13. mindroot-0.1.0/src/mindroot/coreplugins/admin/plugin_manager.py +215 -0
  14. mindroot-0.1.0/src/mindroot/coreplugins/admin/plugin_router.py +36 -0
  15. mindroot-0.1.0/src/mindroot/coreplugins/admin/router.py +36 -0
  16. mindroot-0.1.0/src/mindroot/coreplugins/admin/server_router.py +148 -0
  17. mindroot-0.1.0/src/mindroot/coreplugins/admin/settings_router.py +140 -0
  18. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/admin-custom.css +314 -0
  19. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/dark.css +874 -0
  20. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/default.css +816 -0
  21. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/reset.css +46 -0
  22. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/css/update.css +164 -0
  23. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/about.txt +6 -0
  24. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/android-chrome-192x192.png +0 -0
  25. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/android-chrome-512x512.png +0 -0
  26. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/apple-touch-icon.png +0 -0
  27. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon-16x16.png +0 -0
  28. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon-32x32.png +0 -0
  29. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon.ico +0 -0
  30. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/about.txt +6 -0
  31. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/android-chrome-192x192.png +0 -0
  32. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/android-chrome-512x512.png +0 -0
  33. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/apple-touch-icon.png +0 -0
  34. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon-16x16.png +0 -0
  35. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon-32x32.png +0 -0
  36. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/favicon.ico +0 -0
  37. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/favicon_io (1)/site.webmanifest +1 -0
  38. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/logo.png +0 -0
  39. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/favicon/site.webmanifest +1 -0
  40. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-editor.js +156 -0
  41. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-form.js +386 -0
  42. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/agent-list.js +94 -0
  43. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/base.js +49 -0
  44. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/github-import.js +151 -0
  45. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/indexed-agents.js +211 -0
  46. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-core.min.js +29 -0
  47. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/LICENSE +28 -0
  48. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/README.md +70 -0
  49. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.d.ts +171 -0
  50. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.d.ts.map +1 -0
  51. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.js +7 -0
  52. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/async-directive.js.map +1 -0
  53. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.d.ts +171 -0
  54. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.d.ts.map +1 -0
  55. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.js +243 -0
  56. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/async-directive.js.map +1 -0
  57. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.d.ts +117 -0
  58. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
  59. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.js +180 -0
  60. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive-helpers.js.map +1 -0
  61. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.d.ts +66 -0
  62. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.d.ts.map +1 -0
  63. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.js +48 -0
  64. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directive.js.map +1 -0
  65. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.d.ts +39 -0
  66. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
  67. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.js +53 -0
  68. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-append.js.map +1 -0
  69. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
  70. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
  71. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.js +100 -0
  72. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/async-replace.js.map +1 -0
  73. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.d.ts +35 -0
  74. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
  75. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.js +88 -0
  76. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/cache.js.map +1 -0
  77. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.d.ts +32 -0
  78. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
  79. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.js +41 -0
  80. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/choose.js.map +1 -0
  81. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.d.ts +45 -0
  82. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
  83. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.js +86 -0
  84. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/class-map.js.map +1 -0
  85. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.d.ts +60 -0
  86. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
  87. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.js +80 -0
  88. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/guard.js.map +1 -0
  89. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
  90. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
  91. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.js +14 -0
  92. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/if-defined.js.map +1 -0
  93. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.d.ts +21 -0
  94. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.d.ts.map +1 -0
  95. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.js +19 -0
  96. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/join.js.map +1 -0
  97. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.d.ts +27 -0
  98. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
  99. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.js +39 -0
  100. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/keyed.js.map +1 -0
  101. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.d.ts +43 -0
  102. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.d.ts.map +1 -0
  103. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.js +77 -0
  104. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/live.js.map +1 -0
  105. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.d.ts +23 -0
  106. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.d.ts.map +1 -0
  107. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.js +30 -0
  108. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/map.js.map +1 -0
  109. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
  110. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
  111. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
  112. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
  113. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.d.ts +24 -0
  114. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.d.ts.map +1 -0
  115. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.js +13 -0
  116. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/range.js.map +1 -0
  117. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.d.ts +66 -0
  118. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
  119. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.js +124 -0
  120. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/ref.js.map +1 -0
  121. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.d.ts +64 -0
  122. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
  123. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.js +413 -0
  124. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/repeat.js.map +1 -0
  125. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.d.ts +50 -0
  126. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
  127. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.js +105 -0
  128. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/style-map.js.map +1 -0
  129. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.d.ts +26 -0
  130. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
  131. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.js +31 -0
  132. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/template-content.js.map +1 -0
  133. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
  134. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
  135. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.js +61 -0
  136. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
  137. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
  138. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
  139. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
  140. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
  141. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
  142. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
  143. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
  144. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
  145. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.d.ts +44 -0
  146. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.d.ts.map +1 -0
  147. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.js +123 -0
  148. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/until.js.map +1 -0
  149. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.d.ts +28 -0
  150. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.d.ts.map +1 -0
  151. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.js +9 -0
  152. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/directives/when.js.map +1 -0
  153. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.d.ts +15 -0
  154. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.d.ts.map +1 -0
  155. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.js +22 -0
  156. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/is-server.js.map +1 -0
  157. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.d.ts +617 -0
  158. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.d.ts.map +1 -0
  159. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.js +1508 -0
  160. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/lit-html.js.map +1 -0
  161. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.d.ts +27 -0
  162. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
  163. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.js +195 -0
  164. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/polyfill-support.js.map +1 -0
  165. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
  166. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
  167. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.js +81 -0
  168. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/private-ssr-support.js.map +1 -0
  169. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.d.ts +89 -0
  170. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.d.ts.map +1 -0
  171. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.js +149 -0
  172. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/development/static.js.map +1 -0
  173. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.d.ts +117 -0
  174. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.d.ts.map +1 -0
  175. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.js +7 -0
  176. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive-helpers.js.map +1 -0
  177. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.d.ts +66 -0
  178. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.d.ts.map +1 -0
  179. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.js +7 -0
  180. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directive.js.map +1 -0
  181. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.d.ts +39 -0
  182. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.d.ts.map +1 -0
  183. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.js +7 -0
  184. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-append.js.map +1 -0
  185. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.d.ts +39 -0
  186. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
  187. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.js +7 -0
  188. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/async-replace.js.map +1 -0
  189. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.d.ts +35 -0
  190. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.d.ts.map +1 -0
  191. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.js +7 -0
  192. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/cache.js.map +1 -0
  193. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.d.ts +32 -0
  194. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.d.ts.map +1 -0
  195. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.js +7 -0
  196. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/choose.js.map +1 -0
  197. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.d.ts +45 -0
  198. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.d.ts.map +1 -0
  199. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.js +7 -0
  200. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/class-map.js.map +1 -0
  201. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.d.ts +60 -0
  202. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.d.ts.map +1 -0
  203. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.js +8 -0
  204. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/guard.js.map +1 -0
  205. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.d.ts +14 -0
  206. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
  207. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.js +7 -0
  208. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/if-defined.js.map +1 -0
  209. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.d.ts +21 -0
  210. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.d.ts.map +1 -0
  211. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.js +7 -0
  212. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/join.js.map +1 -0
  213. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.d.ts +27 -0
  214. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.d.ts.map +1 -0
  215. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.js +7 -0
  216. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/keyed.js.map +1 -0
  217. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.d.ts +43 -0
  218. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.d.ts.map +1 -0
  219. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.js +7 -0
  220. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/live.js.map +1 -0
  221. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.d.ts +23 -0
  222. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.d.ts.map +1 -0
  223. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.js +7 -0
  224. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/map.js.map +1 -0
  225. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
  226. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
  227. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.js +7 -0
  228. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
  229. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.d.ts +24 -0
  230. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.d.ts.map +1 -0
  231. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.js +7 -0
  232. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/range.js.map +1 -0
  233. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.d.ts +66 -0
  234. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.d.ts.map +1 -0
  235. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.js +7 -0
  236. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/ref.js.map +1 -0
  237. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.d.ts +64 -0
  238. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.d.ts.map +1 -0
  239. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.js +8 -0
  240. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/repeat.js.map +1 -0
  241. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.d.ts +50 -0
  242. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.d.ts.map +1 -0
  243. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.js +7 -0
  244. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/style-map.js.map +1 -0
  245. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.d.ts +26 -0
  246. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.d.ts.map +1 -0
  247. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.js +7 -0
  248. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/template-content.js.map +1 -0
  249. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
  250. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
  251. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.js +7 -0
  252. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-html.js.map +1 -0
  253. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
  254. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
  255. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.js +7 -0
  256. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
  257. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
  258. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
  259. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.js +7 -0
  260. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
  261. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.d.ts +44 -0
  262. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.d.ts.map +1 -0
  263. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.js +7 -0
  264. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/until.js.map +1 -0
  265. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.d.ts +28 -0
  266. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.d.ts.map +1 -0
  267. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.js +7 -0
  268. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/directives/when.js.map +1 -0
  269. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.d.ts +15 -0
  270. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.d.ts.map +1 -0
  271. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.js +7 -0
  272. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/is-server.js.map +1 -0
  273. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.d.ts +617 -0
  274. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.d.ts.map +1 -0
  275. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.js +7 -0
  276. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/lit-html.js.map +1 -0
  277. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/async-directive.js +7 -0
  278. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/async-directive.js.map +1 -0
  279. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/async-directive.js +245 -0
  280. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/async-directive.js.map +1 -0
  281. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive-helpers.js +178 -0
  282. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
  283. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive.js +50 -0
  284. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directive.js.map +1 -0
  285. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-append.js +56 -0
  286. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
  287. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-replace.js +104 -0
  288. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
  289. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/cache.js +91 -0
  290. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/cache.js.map +1 -0
  291. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/choose.js +43 -0
  292. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/choose.js.map +1 -0
  293. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/class-map.js +89 -0
  294. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
  295. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/guard.js +83 -0
  296. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/guard.js.map +1 -0
  297. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/if-defined.js +17 -0
  298. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
  299. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/join.js +21 -0
  300. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/join.js.map +1 -0
  301. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/keyed.js +42 -0
  302. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
  303. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/live.js +80 -0
  304. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/live.js.map +1 -0
  305. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/map.js +32 -0
  306. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/map.js.map +1 -0
  307. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
  308. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
  309. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/range.js +15 -0
  310. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/range.js.map +1 -0
  311. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/ref.js +128 -0
  312. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/ref.js.map +1 -0
  313. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/repeat.js +416 -0
  314. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
  315. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/style-map.js +108 -0
  316. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
  317. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/template-content.js +34 -0
  318. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
  319. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
  320. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
  321. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
  322. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
  323. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
  324. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
  325. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/until.js +127 -0
  326. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/until.js.map +1 -0
  327. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/when.js +11 -0
  328. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/directives/when.js.map +1 -0
  329. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/is-server.js +24 -0
  330. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/is-server.js.map +1 -0
  331. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/lit-html.js +1485 -0
  332. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/lit-html.js.map +1 -0
  333. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/polyfill-support.js +186 -0
  334. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
  335. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/private-ssr-support.js +84 -0
  336. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
  337. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/static.js +152 -0
  338. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/development/static.js.map +1 -0
  339. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive-helpers.js +7 -0
  340. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive-helpers.js.map +1 -0
  341. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive.js +7 -0
  342. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directive.js.map +1 -0
  343. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-append.js +7 -0
  344. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-append.js.map +1 -0
  345. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-replace.js +7 -0
  346. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/async-replace.js.map +1 -0
  347. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/cache.js +7 -0
  348. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/cache.js.map +1 -0
  349. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/choose.js +7 -0
  350. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/choose.js.map +1 -0
  351. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/class-map.js +7 -0
  352. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/class-map.js.map +1 -0
  353. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/guard.js +8 -0
  354. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/guard.js.map +1 -0
  355. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/if-defined.js +7 -0
  356. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/if-defined.js.map +1 -0
  357. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/join.js +7 -0
  358. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/join.js.map +1 -0
  359. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/keyed.js +7 -0
  360. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/keyed.js.map +1 -0
  361. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/live.js +7 -0
  362. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/live.js.map +1 -0
  363. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/map.js +7 -0
  364. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/map.js.map +1 -0
  365. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
  366. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
  367. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/range.js +7 -0
  368. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/range.js.map +1 -0
  369. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/ref.js +7 -0
  370. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/ref.js.map +1 -0
  371. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/repeat.js +8 -0
  372. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/repeat.js.map +1 -0
  373. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/style-map.js +7 -0
  374. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/style-map.js.map +1 -0
  375. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/template-content.js +7 -0
  376. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/template-content.js.map +1 -0
  377. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-html.js +7 -0
  378. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
  379. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
  380. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
  381. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
  382. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
  383. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/until.js +7 -0
  384. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/until.js.map +1 -0
  385. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/when.js +7 -0
  386. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/directives/when.js.map +1 -0
  387. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/is-server.js +7 -0
  388. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/is-server.js.map +1 -0
  389. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/lit-html.js +7 -0
  390. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/lit-html.js.map +1 -0
  391. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/polyfill-support.js +7 -0
  392. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/polyfill-support.js.map +1 -0
  393. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/private-ssr-support.js +8 -0
  394. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/private-ssr-support.js.map +1 -0
  395. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/static.js +8 -0
  396. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/node/static.js.map +1 -0
  397. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/package.json +629 -0
  398. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.d.ts +27 -0
  399. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.d.ts.map +1 -0
  400. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.js +7 -0
  401. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/polyfill-support.js.map +1 -0
  402. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.d.ts +57 -0
  403. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
  404. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.js +8 -0
  405. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/private-ssr-support.js.map +1 -0
  406. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.d.ts +89 -0
  407. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.d.ts.map +1 -0
  408. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.js +8 -0
  409. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html/static.js.map +1 -0
  410. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/lit-html.js +0 -0
  411. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/model-preferences.js +113 -0
  412. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/persona-editor.js +166 -0
  413. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-advanced-install.js +160 -0
  414. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-base.js +225 -0
  415. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-index-browser.js +184 -0
  416. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-list.js +182 -0
  417. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-manager.js +135 -0
  418. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/plugin-toggle.js +163 -0
  419. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/server-control.js +211 -0
  420. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/js/toggle-switch.js +95 -0
  421. mindroot-0.1.0/src/mindroot/coreplugins/admin/static/logo.png +0 -0
  422. mindroot-0.1.0/src/mindroot/coreplugins/admin/templates/admin.jinja2 +114 -0
  423. mindroot-0.1.0/src/mindroot/coreplugins/agent/Assistant/agent.json +11 -0
  424. mindroot-0.1.0/src/mindroot/coreplugins/agent/agent.py +375 -0
  425. mindroot-0.1.0/src/mindroot/coreplugins/agent/command_parser.py +267 -0
  426. mindroot-0.1.0/src/mindroot/coreplugins/agent/ensure_msg_type.py +11 -0
  427. mindroot-0.1.0/src/mindroot/coreplugins/agent/equivalent_flags.default.json +1 -0
  428. mindroot-0.1.0/src/mindroot/coreplugins/agent/escaping.md +75 -0
  429. mindroot-0.1.0/src/mindroot/coreplugins/agent/init_models.py +29 -0
  430. mindroot-0.1.0/src/mindroot/coreplugins/agent/models.default.json +57 -0
  431. mindroot-0.1.0/src/mindroot/coreplugins/agent/preferred_models.default.json +12 -0
  432. mindroot-0.1.0/src/mindroot/coreplugins/agent/providers.default.json +62 -0
  433. mindroot-0.1.0/src/mindroot/coreplugins/agent/system.j2 +158 -0
  434. mindroot-0.1.0/src/mindroot/coreplugins/chat/__init__.py +4 -0
  435. mindroot-0.1.0/src/mindroot/coreplugins/chat/commands.py +278 -0
  436. mindroot-0.1.0/src/mindroot/coreplugins/chat/format_result_msgs.py +2 -0
  437. mindroot-0.1.0/src/mindroot/coreplugins/chat/mod.py +14 -0
  438. mindroot-0.1.0/src/mindroot/coreplugins/chat/models.py +24 -0
  439. mindroot-0.1.0/src/mindroot/coreplugins/chat/router.py +95 -0
  440. mindroot-0.1.0/src/mindroot/coreplugins/chat/services.py +277 -0
  441. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/assistant.png +0 -0
  442. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/admin-custom.css +178 -0
  443. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/budark.css +690 -0
  444. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/dark.css +961 -0
  445. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/dark.css.bak +746 -0
  446. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/default.css +961 -0
  447. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/css/reset.css +46 -0
  448. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/about.txt +6 -0
  449. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/android-chrome-192x192.png +0 -0
  450. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/android-chrome-512x512.png +0 -0
  451. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/apple-touch-icon.png +0 -0
  452. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon-16x16.png +0 -0
  453. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon-32x32.png +0 -0
  454. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon.ico +0 -0
  455. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/about.txt +6 -0
  456. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/android-chrome-192x192.png +0 -0
  457. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/android-chrome-512x512.png +0 -0
  458. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/apple-touch-icon.png +0 -0
  459. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon-16x16.png +0 -0
  460. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon-32x32.png +0 -0
  461. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/favicon.ico +0 -0
  462. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/favicon_io (1)/site.webmanifest +1 -0
  463. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/logo.png +0 -0
  464. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/favicon/site.webmanifest +1 -0
  465. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/action.js +151 -0
  466. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/auth.js +30 -0
  467. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/base.js +46 -0
  468. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/baseel.js +34 -0
  469. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chat.html +20 -0
  470. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chat.js +162 -0
  471. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chatform.js +52 -0
  472. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/chatmessage.js +34 -0
  473. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/lit-core.min.js +29 -0
  474. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/load-styles.js +9 -0
  475. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/shared-styles.js +7 -0
  476. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/backup/showaction.js +34 -0
  477. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/base.js +48 -0
  478. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chat.js +384 -0
  479. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chatform.js +211 -0
  480. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/chatmessage.js +46 -0
  481. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/code-copy-button.js +203 -0
  482. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-core.min.js +29 -0
  483. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/LICENSE +28 -0
  484. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/README.md +70 -0
  485. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.d.ts +171 -0
  486. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.d.ts.map +1 -0
  487. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.js +7 -0
  488. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/async-directive.js.map +1 -0
  489. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.d.ts +171 -0
  490. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.d.ts.map +1 -0
  491. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.js +243 -0
  492. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/async-directive.js.map +1 -0
  493. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.d.ts +117 -0
  494. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
  495. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.js +180 -0
  496. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive-helpers.js.map +1 -0
  497. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.d.ts +66 -0
  498. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.d.ts.map +1 -0
  499. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.js +48 -0
  500. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directive.js.map +1 -0
  501. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.d.ts +39 -0
  502. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
  503. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.js +53 -0
  504. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-append.js.map +1 -0
  505. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
  506. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
  507. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.js +100 -0
  508. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/async-replace.js.map +1 -0
  509. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.d.ts +35 -0
  510. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
  511. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.js +88 -0
  512. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/cache.js.map +1 -0
  513. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.d.ts +32 -0
  514. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
  515. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.js +41 -0
  516. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/choose.js.map +1 -0
  517. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.d.ts +45 -0
  518. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
  519. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.js +86 -0
  520. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/class-map.js.map +1 -0
  521. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.d.ts +60 -0
  522. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
  523. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.js +80 -0
  524. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/guard.js.map +1 -0
  525. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
  526. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
  527. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.js +14 -0
  528. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/if-defined.js.map +1 -0
  529. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.d.ts +21 -0
  530. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.d.ts.map +1 -0
  531. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.js +19 -0
  532. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/join.js.map +1 -0
  533. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.d.ts +27 -0
  534. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
  535. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.js +39 -0
  536. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/keyed.js.map +1 -0
  537. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.d.ts +43 -0
  538. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.d.ts.map +1 -0
  539. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.js +77 -0
  540. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/live.js.map +1 -0
  541. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.d.ts +23 -0
  542. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.d.ts.map +1 -0
  543. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.js +30 -0
  544. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/map.js.map +1 -0
  545. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
  546. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
  547. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
  548. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
  549. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.d.ts +24 -0
  550. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.d.ts.map +1 -0
  551. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.js +13 -0
  552. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/range.js.map +1 -0
  553. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.d.ts +66 -0
  554. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
  555. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.js +124 -0
  556. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/ref.js.map +1 -0
  557. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.d.ts +64 -0
  558. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
  559. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.js +413 -0
  560. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/repeat.js.map +1 -0
  561. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.d.ts +50 -0
  562. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
  563. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.js +105 -0
  564. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/style-map.js.map +1 -0
  565. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.d.ts +26 -0
  566. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
  567. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.js +31 -0
  568. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/template-content.js.map +1 -0
  569. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
  570. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
  571. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.js +61 -0
  572. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
  573. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
  574. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
  575. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
  576. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
  577. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
  578. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
  579. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
  580. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
  581. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.d.ts +44 -0
  582. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.d.ts.map +1 -0
  583. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.js +123 -0
  584. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/until.js.map +1 -0
  585. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.d.ts +28 -0
  586. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.d.ts.map +1 -0
  587. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.js +9 -0
  588. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/directives/when.js.map +1 -0
  589. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.d.ts +15 -0
  590. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.d.ts.map +1 -0
  591. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.js +22 -0
  592. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/is-server.js.map +1 -0
  593. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.d.ts +617 -0
  594. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.d.ts.map +1 -0
  595. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.js +1508 -0
  596. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/lit-html.js.map +1 -0
  597. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.d.ts +27 -0
  598. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
  599. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.js +195 -0
  600. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/polyfill-support.js.map +1 -0
  601. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
  602. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
  603. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.js +81 -0
  604. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/private-ssr-support.js.map +1 -0
  605. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.d.ts +89 -0
  606. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.d.ts.map +1 -0
  607. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.js +149 -0
  608. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/development/static.js.map +1 -0
  609. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.d.ts +117 -0
  610. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.d.ts.map +1 -0
  611. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.js +7 -0
  612. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive-helpers.js.map +1 -0
  613. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.d.ts +66 -0
  614. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.d.ts.map +1 -0
  615. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.js +7 -0
  616. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directive.js.map +1 -0
  617. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.d.ts +39 -0
  618. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.d.ts.map +1 -0
  619. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.js +7 -0
  620. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-append.js.map +1 -0
  621. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.d.ts +39 -0
  622. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
  623. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.js +7 -0
  624. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/async-replace.js.map +1 -0
  625. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.d.ts +35 -0
  626. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.d.ts.map +1 -0
  627. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.js +7 -0
  628. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/cache.js.map +1 -0
  629. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.d.ts +32 -0
  630. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.d.ts.map +1 -0
  631. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.js +7 -0
  632. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/choose.js.map +1 -0
  633. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.d.ts +45 -0
  634. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.d.ts.map +1 -0
  635. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.js +7 -0
  636. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/class-map.js.map +1 -0
  637. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.d.ts +60 -0
  638. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.d.ts.map +1 -0
  639. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.js +8 -0
  640. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/guard.js.map +1 -0
  641. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.d.ts +14 -0
  642. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
  643. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.js +7 -0
  644. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/if-defined.js.map +1 -0
  645. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.d.ts +21 -0
  646. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.d.ts.map +1 -0
  647. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.js +7 -0
  648. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/join.js.map +1 -0
  649. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.d.ts +27 -0
  650. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.d.ts.map +1 -0
  651. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.js +7 -0
  652. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/keyed.js.map +1 -0
  653. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.d.ts +43 -0
  654. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.d.ts.map +1 -0
  655. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.js +7 -0
  656. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/live.js.map +1 -0
  657. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.d.ts +23 -0
  658. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.d.ts.map +1 -0
  659. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.js +7 -0
  660. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/map.js.map +1 -0
  661. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
  662. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
  663. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.js +7 -0
  664. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
  665. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.d.ts +24 -0
  666. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.d.ts.map +1 -0
  667. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.js +7 -0
  668. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/range.js.map +1 -0
  669. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.d.ts +66 -0
  670. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.d.ts.map +1 -0
  671. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.js +7 -0
  672. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/ref.js.map +1 -0
  673. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.d.ts +64 -0
  674. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.d.ts.map +1 -0
  675. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.js +8 -0
  676. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/repeat.js.map +1 -0
  677. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.d.ts +50 -0
  678. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.d.ts.map +1 -0
  679. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.js +7 -0
  680. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/style-map.js.map +1 -0
  681. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.d.ts +26 -0
  682. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.d.ts.map +1 -0
  683. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.js +7 -0
  684. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/template-content.js.map +1 -0
  685. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
  686. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
  687. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.js +7 -0
  688. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-html.js.map +1 -0
  689. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
  690. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
  691. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.js +7 -0
  692. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
  693. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
  694. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
  695. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.js +7 -0
  696. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
  697. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.d.ts +44 -0
  698. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.d.ts.map +1 -0
  699. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.js +7 -0
  700. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/until.js.map +1 -0
  701. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.d.ts +28 -0
  702. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.d.ts.map +1 -0
  703. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.js +7 -0
  704. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/directives/when.js.map +1 -0
  705. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.d.ts +15 -0
  706. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.d.ts.map +1 -0
  707. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.js +7 -0
  708. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/is-server.js.map +1 -0
  709. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.d.ts +617 -0
  710. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.d.ts.map +1 -0
  711. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.js +7 -0
  712. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/lit-html.js.map +1 -0
  713. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/async-directive.js +7 -0
  714. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/async-directive.js.map +1 -0
  715. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/async-directive.js +245 -0
  716. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/async-directive.js.map +1 -0
  717. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive-helpers.js +178 -0
  718. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
  719. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive.js +50 -0
  720. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directive.js.map +1 -0
  721. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-append.js +56 -0
  722. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
  723. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-replace.js +104 -0
  724. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
  725. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/cache.js +91 -0
  726. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/cache.js.map +1 -0
  727. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/choose.js +43 -0
  728. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/choose.js.map +1 -0
  729. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/class-map.js +89 -0
  730. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
  731. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/guard.js +83 -0
  732. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/guard.js.map +1 -0
  733. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/if-defined.js +17 -0
  734. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
  735. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/join.js +21 -0
  736. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/join.js.map +1 -0
  737. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/keyed.js +42 -0
  738. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
  739. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/live.js +80 -0
  740. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/live.js.map +1 -0
  741. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/map.js +32 -0
  742. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/map.js.map +1 -0
  743. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
  744. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
  745. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/range.js +15 -0
  746. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/range.js.map +1 -0
  747. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/ref.js +128 -0
  748. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/ref.js.map +1 -0
  749. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/repeat.js +416 -0
  750. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
  751. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/style-map.js +108 -0
  752. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
  753. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/template-content.js +34 -0
  754. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
  755. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
  756. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
  757. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
  758. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
  759. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
  760. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
  761. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/until.js +127 -0
  762. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/until.js.map +1 -0
  763. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/when.js +11 -0
  764. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/directives/when.js.map +1 -0
  765. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/is-server.js +24 -0
  766. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/is-server.js.map +1 -0
  767. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/lit-html.js +1485 -0
  768. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/lit-html.js.map +1 -0
  769. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/polyfill-support.js +186 -0
  770. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
  771. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/private-ssr-support.js +84 -0
  772. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
  773. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/static.js +152 -0
  774. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/development/static.js.map +1 -0
  775. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive-helpers.js +7 -0
  776. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive-helpers.js.map +1 -0
  777. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive.js +7 -0
  778. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directive.js.map +1 -0
  779. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-append.js +7 -0
  780. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-append.js.map +1 -0
  781. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-replace.js +7 -0
  782. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/async-replace.js.map +1 -0
  783. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/cache.js +7 -0
  784. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/cache.js.map +1 -0
  785. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/choose.js +7 -0
  786. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/choose.js.map +1 -0
  787. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/class-map.js +7 -0
  788. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/class-map.js.map +1 -0
  789. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/guard.js +8 -0
  790. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/guard.js.map +1 -0
  791. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/if-defined.js +7 -0
  792. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/if-defined.js.map +1 -0
  793. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/join.js +7 -0
  794. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/join.js.map +1 -0
  795. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/keyed.js +7 -0
  796. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/keyed.js.map +1 -0
  797. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/live.js +7 -0
  798. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/live.js.map +1 -0
  799. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/map.js +7 -0
  800. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/map.js.map +1 -0
  801. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
  802. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
  803. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/range.js +7 -0
  804. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/range.js.map +1 -0
  805. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/ref.js +7 -0
  806. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/ref.js.map +1 -0
  807. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/repeat.js +8 -0
  808. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/repeat.js.map +1 -0
  809. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/style-map.js +7 -0
  810. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/style-map.js.map +1 -0
  811. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/template-content.js +7 -0
  812. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/template-content.js.map +1 -0
  813. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-html.js +7 -0
  814. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
  815. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
  816. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
  817. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
  818. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
  819. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/until.js +7 -0
  820. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/until.js.map +1 -0
  821. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/when.js +7 -0
  822. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/directives/when.js.map +1 -0
  823. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/is-server.js +7 -0
  824. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/is-server.js.map +1 -0
  825. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/lit-html.js +7 -0
  826. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/lit-html.js.map +1 -0
  827. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/polyfill-support.js +7 -0
  828. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/polyfill-support.js.map +1 -0
  829. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/private-ssr-support.js +8 -0
  830. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/private-ssr-support.js.map +1 -0
  831. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/static.js +8 -0
  832. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/node/static.js.map +1 -0
  833. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/package.json +629 -0
  834. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.d.ts +27 -0
  835. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.d.ts.map +1 -0
  836. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.js +7 -0
  837. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/polyfill-support.js.map +1 -0
  838. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.d.ts +57 -0
  839. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
  840. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.js +8 -0
  841. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/private-ssr-support.js.map +1 -0
  842. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.d.ts +89 -0
  843. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.d.ts.map +1 -0
  844. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.js +8 -0
  845. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html/static.js.map +1 -0
  846. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/lit-html.js +0 -0
  847. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/property-escape.js +15 -0
  848. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/throttle.js +22 -0
  849. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/unsafe-html.js +7 -0
  850. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/js/unsafe-html.js.1 +44 -0
  851. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindgen.png +0 -0
  852. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindroot_logo.png +0 -0
  853. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/mindroot_logo2.png +0 -0
  854. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/neon.css +37 -0
  855. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/site.webmanifest +1 -0
  856. mindroot-0.1.0/src/mindroot/coreplugins/chat/static/user.png +0 -0
  857. mindroot-0.1.0/src/mindroot/coreplugins/chat/templates/chat.jinja2 +73 -0
  858. mindroot-0.1.0/src/mindroot/coreplugins/chat/utils.py +2 -0
  859. mindroot-0.1.0/src/mindroot/coreplugins/events/__init__.py +1 -0
  860. mindroot-0.1.0/src/mindroot/coreplugins/events/mod.py +1 -0
  861. mindroot-0.1.0/src/mindroot/coreplugins/events/router.py +94 -0
  862. mindroot-0.1.0/src/mindroot/coreplugins/events/router_backup.py +8 -0
  863. mindroot-0.1.0/src/mindroot/coreplugins/home/mod.py +1 -0
  864. mindroot-0.1.0/src/mindroot/coreplugins/home/router.py +18 -0
  865. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/dark.css +836 -0
  866. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/default.css +776 -0
  867. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/enhanced.css +90 -0
  868. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/home.css +191 -0
  869. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/reset.css +46 -0
  870. mindroot-0.1.0/src/mindroot/coreplugins/home/static/css/update.css +164 -0
  871. mindroot-0.1.0/src/mindroot/coreplugins/home/static/imgs/logo.png +0 -0
  872. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/base.js +48 -0
  873. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-core.min.js +29 -0
  874. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/LICENSE +28 -0
  875. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/README.md +70 -0
  876. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.d.ts +171 -0
  877. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.d.ts.map +1 -0
  878. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.js +7 -0
  879. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/async-directive.js.map +1 -0
  880. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.d.ts +171 -0
  881. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.d.ts.map +1 -0
  882. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.js +243 -0
  883. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/async-directive.js.map +1 -0
  884. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.d.ts +117 -0
  885. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
  886. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.js +180 -0
  887. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive-helpers.js.map +1 -0
  888. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.d.ts +66 -0
  889. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.d.ts.map +1 -0
  890. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.js +48 -0
  891. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directive.js.map +1 -0
  892. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.d.ts +39 -0
  893. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
  894. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.js +53 -0
  895. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-append.js.map +1 -0
  896. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
  897. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
  898. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.js +100 -0
  899. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/async-replace.js.map +1 -0
  900. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.d.ts +35 -0
  901. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
  902. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.js +88 -0
  903. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/cache.js.map +1 -0
  904. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.d.ts +32 -0
  905. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
  906. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.js +41 -0
  907. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/choose.js.map +1 -0
  908. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.d.ts +45 -0
  909. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
  910. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.js +86 -0
  911. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/class-map.js.map +1 -0
  912. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.d.ts +60 -0
  913. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
  914. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.js +80 -0
  915. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/guard.js.map +1 -0
  916. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
  917. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
  918. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.js +14 -0
  919. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/if-defined.js.map +1 -0
  920. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.d.ts +21 -0
  921. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.d.ts.map +1 -0
  922. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.js +19 -0
  923. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/join.js.map +1 -0
  924. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.d.ts +27 -0
  925. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
  926. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.js +39 -0
  927. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/keyed.js.map +1 -0
  928. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.d.ts +43 -0
  929. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.d.ts.map +1 -0
  930. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.js +77 -0
  931. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/live.js.map +1 -0
  932. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.d.ts +23 -0
  933. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.d.ts.map +1 -0
  934. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.js +30 -0
  935. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/map.js.map +1 -0
  936. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
  937. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
  938. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
  939. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
  940. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.d.ts +24 -0
  941. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.d.ts.map +1 -0
  942. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.js +13 -0
  943. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/range.js.map +1 -0
  944. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.d.ts +66 -0
  945. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
  946. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.js +124 -0
  947. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/ref.js.map +1 -0
  948. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.d.ts +64 -0
  949. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
  950. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.js +413 -0
  951. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/repeat.js.map +1 -0
  952. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.d.ts +50 -0
  953. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
  954. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.js +105 -0
  955. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/style-map.js.map +1 -0
  956. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.d.ts +26 -0
  957. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
  958. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.js +31 -0
  959. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/template-content.js.map +1 -0
  960. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
  961. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
  962. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.js +61 -0
  963. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
  964. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
  965. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
  966. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
  967. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
  968. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
  969. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
  970. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
  971. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
  972. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.d.ts +44 -0
  973. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.d.ts.map +1 -0
  974. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.js +123 -0
  975. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/until.js.map +1 -0
  976. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.d.ts +28 -0
  977. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.d.ts.map +1 -0
  978. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.js +9 -0
  979. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/directives/when.js.map +1 -0
  980. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.d.ts +15 -0
  981. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.d.ts.map +1 -0
  982. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.js +22 -0
  983. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/is-server.js.map +1 -0
  984. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.d.ts +617 -0
  985. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.d.ts.map +1 -0
  986. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.js +1508 -0
  987. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/lit-html.js.map +1 -0
  988. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.d.ts +27 -0
  989. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
  990. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.js +195 -0
  991. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/polyfill-support.js.map +1 -0
  992. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
  993. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
  994. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.js +81 -0
  995. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/private-ssr-support.js.map +1 -0
  996. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.d.ts +89 -0
  997. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.d.ts.map +1 -0
  998. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.js +149 -0
  999. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/development/static.js.map +1 -0
  1000. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.d.ts +117 -0
  1001. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.d.ts.map +1 -0
  1002. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.js +7 -0
  1003. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive-helpers.js.map +1 -0
  1004. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.d.ts +66 -0
  1005. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.d.ts.map +1 -0
  1006. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.js +7 -0
  1007. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directive.js.map +1 -0
  1008. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.d.ts +39 -0
  1009. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.d.ts.map +1 -0
  1010. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.js +7 -0
  1011. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-append.js.map +1 -0
  1012. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.d.ts +39 -0
  1013. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
  1014. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.js +7 -0
  1015. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/async-replace.js.map +1 -0
  1016. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.d.ts +35 -0
  1017. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.d.ts.map +1 -0
  1018. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.js +7 -0
  1019. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/cache.js.map +1 -0
  1020. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.d.ts +32 -0
  1021. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.d.ts.map +1 -0
  1022. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.js +7 -0
  1023. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/choose.js.map +1 -0
  1024. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.d.ts +45 -0
  1025. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.d.ts.map +1 -0
  1026. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.js +7 -0
  1027. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/class-map.js.map +1 -0
  1028. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.d.ts +60 -0
  1029. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.d.ts.map +1 -0
  1030. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.js +8 -0
  1031. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/guard.js.map +1 -0
  1032. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.d.ts +14 -0
  1033. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
  1034. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.js +7 -0
  1035. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/if-defined.js.map +1 -0
  1036. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.d.ts +21 -0
  1037. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.d.ts.map +1 -0
  1038. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.js +7 -0
  1039. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/join.js.map +1 -0
  1040. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.d.ts +27 -0
  1041. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.d.ts.map +1 -0
  1042. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.js +7 -0
  1043. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/keyed.js.map +1 -0
  1044. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.d.ts +43 -0
  1045. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.d.ts.map +1 -0
  1046. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.js +7 -0
  1047. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/live.js.map +1 -0
  1048. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.d.ts +23 -0
  1049. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.d.ts.map +1 -0
  1050. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.js +7 -0
  1051. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/map.js.map +1 -0
  1052. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
  1053. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
  1054. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.js +7 -0
  1055. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
  1056. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.d.ts +24 -0
  1057. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.d.ts.map +1 -0
  1058. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.js +7 -0
  1059. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/range.js.map +1 -0
  1060. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.d.ts +66 -0
  1061. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.d.ts.map +1 -0
  1062. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.js +7 -0
  1063. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/ref.js.map +1 -0
  1064. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.d.ts +64 -0
  1065. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.d.ts.map +1 -0
  1066. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.js +8 -0
  1067. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/repeat.js.map +1 -0
  1068. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.d.ts +50 -0
  1069. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.d.ts.map +1 -0
  1070. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.js +7 -0
  1071. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/style-map.js.map +1 -0
  1072. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.d.ts +26 -0
  1073. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.d.ts.map +1 -0
  1074. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.js +7 -0
  1075. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/template-content.js.map +1 -0
  1076. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
  1077. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
  1078. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.js +7 -0
  1079. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-html.js.map +1 -0
  1080. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
  1081. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
  1082. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.js +7 -0
  1083. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
  1084. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
  1085. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
  1086. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.js +7 -0
  1087. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
  1088. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.d.ts +44 -0
  1089. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.d.ts.map +1 -0
  1090. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.js +7 -0
  1091. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/until.js.map +1 -0
  1092. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.d.ts +28 -0
  1093. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.d.ts.map +1 -0
  1094. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.js +7 -0
  1095. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/directives/when.js.map +1 -0
  1096. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.d.ts +15 -0
  1097. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.d.ts.map +1 -0
  1098. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.js +7 -0
  1099. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/is-server.js.map +1 -0
  1100. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.d.ts +617 -0
  1101. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.d.ts.map +1 -0
  1102. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.js +7 -0
  1103. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/lit-html.js.map +1 -0
  1104. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/async-directive.js +7 -0
  1105. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/async-directive.js.map +1 -0
  1106. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/async-directive.js +245 -0
  1107. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/async-directive.js.map +1 -0
  1108. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive-helpers.js +178 -0
  1109. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
  1110. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive.js +50 -0
  1111. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directive.js.map +1 -0
  1112. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-append.js +56 -0
  1113. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
  1114. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-replace.js +104 -0
  1115. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
  1116. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/cache.js +91 -0
  1117. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/cache.js.map +1 -0
  1118. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/choose.js +43 -0
  1119. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/choose.js.map +1 -0
  1120. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/class-map.js +89 -0
  1121. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
  1122. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/guard.js +83 -0
  1123. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/guard.js.map +1 -0
  1124. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/if-defined.js +17 -0
  1125. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
  1126. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/join.js +21 -0
  1127. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/join.js.map +1 -0
  1128. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/keyed.js +42 -0
  1129. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
  1130. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/live.js +80 -0
  1131. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/live.js.map +1 -0
  1132. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/map.js +32 -0
  1133. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/map.js.map +1 -0
  1134. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
  1135. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
  1136. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/range.js +15 -0
  1137. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/range.js.map +1 -0
  1138. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/ref.js +128 -0
  1139. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/ref.js.map +1 -0
  1140. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/repeat.js +416 -0
  1141. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
  1142. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/style-map.js +108 -0
  1143. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
  1144. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/template-content.js +34 -0
  1145. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
  1146. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
  1147. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
  1148. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
  1149. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
  1150. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
  1151. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
  1152. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/until.js +127 -0
  1153. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/until.js.map +1 -0
  1154. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/when.js +11 -0
  1155. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/directives/when.js.map +1 -0
  1156. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/is-server.js +24 -0
  1157. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/is-server.js.map +1 -0
  1158. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/lit-html.js +1485 -0
  1159. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/lit-html.js.map +1 -0
  1160. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/polyfill-support.js +186 -0
  1161. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
  1162. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/private-ssr-support.js +84 -0
  1163. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
  1164. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/static.js +152 -0
  1165. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/development/static.js.map +1 -0
  1166. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive-helpers.js +7 -0
  1167. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive-helpers.js.map +1 -0
  1168. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive.js +7 -0
  1169. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directive.js.map +1 -0
  1170. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-append.js +7 -0
  1171. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-append.js.map +1 -0
  1172. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-replace.js +7 -0
  1173. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/async-replace.js.map +1 -0
  1174. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/cache.js +7 -0
  1175. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/cache.js.map +1 -0
  1176. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/choose.js +7 -0
  1177. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/choose.js.map +1 -0
  1178. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/class-map.js +7 -0
  1179. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/class-map.js.map +1 -0
  1180. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/guard.js +8 -0
  1181. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/guard.js.map +1 -0
  1182. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/if-defined.js +7 -0
  1183. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/if-defined.js.map +1 -0
  1184. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/join.js +7 -0
  1185. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/join.js.map +1 -0
  1186. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/keyed.js +7 -0
  1187. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/keyed.js.map +1 -0
  1188. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/live.js +7 -0
  1189. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/live.js.map +1 -0
  1190. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/map.js +7 -0
  1191. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/map.js.map +1 -0
  1192. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
  1193. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
  1194. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/range.js +7 -0
  1195. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/range.js.map +1 -0
  1196. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/ref.js +7 -0
  1197. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/ref.js.map +1 -0
  1198. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/repeat.js +8 -0
  1199. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/repeat.js.map +1 -0
  1200. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/style-map.js +7 -0
  1201. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/style-map.js.map +1 -0
  1202. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/template-content.js +7 -0
  1203. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/template-content.js.map +1 -0
  1204. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-html.js +7 -0
  1205. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
  1206. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
  1207. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
  1208. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
  1209. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
  1210. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/until.js +7 -0
  1211. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/until.js.map +1 -0
  1212. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/when.js +7 -0
  1213. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/directives/when.js.map +1 -0
  1214. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/is-server.js +7 -0
  1215. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/is-server.js.map +1 -0
  1216. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/lit-html.js +7 -0
  1217. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/lit-html.js.map +1 -0
  1218. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/polyfill-support.js +7 -0
  1219. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/polyfill-support.js.map +1 -0
  1220. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/private-ssr-support.js +8 -0
  1221. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/private-ssr-support.js.map +1 -0
  1222. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/static.js +8 -0
  1223. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/node/static.js.map +1 -0
  1224. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/package.json +629 -0
  1225. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.d.ts +27 -0
  1226. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.d.ts.map +1 -0
  1227. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.js +7 -0
  1228. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/polyfill-support.js.map +1 -0
  1229. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.d.ts +57 -0
  1230. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
  1231. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.js +8 -0
  1232. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/private-ssr-support.js.map +1 -0
  1233. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.d.ts +89 -0
  1234. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.d.ts.map +1 -0
  1235. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.js +8 -0
  1236. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html/static.js.map +1 -0
  1237. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/lit-html.js +0 -0
  1238. mindroot-0.1.0/src/mindroot/coreplugins/home/static/js/toggle-switch.js +72 -0
  1239. mindroot-0.1.0/src/mindroot/coreplugins/home/templates/home.jinja2 +35 -0
  1240. mindroot-0.1.0/src/mindroot/coreplugins/index/.gitignore +1 -0
  1241. mindroot-0.1.0/src/mindroot/coreplugins/index/__init__.py +4 -0
  1242. mindroot-0.1.0/src/mindroot/coreplugins/index/default.json +70 -0
  1243. mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/__init__.py +16 -0
  1244. mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/agent_ops.py +88 -0
  1245. mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/index_ops.py +104 -0
  1246. mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/plugin_ops.py +138 -0
  1247. mindroot-0.1.0/src/mindroot/coreplugins/index/handlers/publish.py +118 -0
  1248. mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/index.json +172 -0
  1249. mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/avatar.png +0 -0
  1250. mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/faceref.png +0 -0
  1251. mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Assistant/persona.json +7 -0
  1252. mindroot-0.1.0/src/mindroot/coreplugins/index/indices/default/personas/Dr_Alex_Morgan/persona.json +10 -0
  1253. mindroot-0.1.0/src/mindroot/coreplugins/index/inject/admin.jinja2 +12 -0
  1254. mindroot-0.1.0/src/mindroot/coreplugins/index/mod.py +16 -0
  1255. mindroot-0.1.0/src/mindroot/coreplugins/index/models.py +38 -0
  1256. mindroot-0.1.0/src/mindroot/coreplugins/index/router.py +56 -0
  1257. mindroot-0.1.0/src/mindroot/coreplugins/index/static/css/index-manager.css +271 -0
  1258. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/agent-section.js +301 -0
  1259. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/base.js +48 -0
  1260. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/components/publish-button.js +142 -0
  1261. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/components/upload-area.js +172 -0
  1262. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-list.js +140 -0
  1263. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-manager.js +251 -0
  1264. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/index-metadata.js +94 -0
  1265. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-core.min.js +29 -0
  1266. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/LICENSE +28 -0
  1267. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/README.md +70 -0
  1268. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.d.ts +171 -0
  1269. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.d.ts.map +1 -0
  1270. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.js +7 -0
  1271. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/async-directive.js.map +1 -0
  1272. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.d.ts +171 -0
  1273. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.d.ts.map +1 -0
  1274. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.js +243 -0
  1275. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/async-directive.js.map +1 -0
  1276. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.d.ts +117 -0
  1277. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.d.ts.map +1 -0
  1278. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.js +180 -0
  1279. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive-helpers.js.map +1 -0
  1280. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.d.ts +66 -0
  1281. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.d.ts.map +1 -0
  1282. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.js +48 -0
  1283. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directive.js.map +1 -0
  1284. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.d.ts +39 -0
  1285. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.d.ts.map +1 -0
  1286. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.js +53 -0
  1287. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-append.js.map +1 -0
  1288. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.d.ts +39 -0
  1289. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.d.ts.map +1 -0
  1290. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.js +100 -0
  1291. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/async-replace.js.map +1 -0
  1292. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.d.ts +35 -0
  1293. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.d.ts.map +1 -0
  1294. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.js +88 -0
  1295. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/cache.js.map +1 -0
  1296. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.d.ts +32 -0
  1297. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.d.ts.map +1 -0
  1298. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.js +41 -0
  1299. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/choose.js.map +1 -0
  1300. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.d.ts +45 -0
  1301. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.d.ts.map +1 -0
  1302. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.js +86 -0
  1303. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/class-map.js.map +1 -0
  1304. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.d.ts +60 -0
  1305. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.d.ts.map +1 -0
  1306. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.js +80 -0
  1307. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/guard.js.map +1 -0
  1308. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.d.ts +14 -0
  1309. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.d.ts.map +1 -0
  1310. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.js +14 -0
  1311. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/if-defined.js.map +1 -0
  1312. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.d.ts +21 -0
  1313. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.d.ts.map +1 -0
  1314. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.js +19 -0
  1315. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/join.js.map +1 -0
  1316. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.d.ts +27 -0
  1317. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.d.ts.map +1 -0
  1318. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.js +39 -0
  1319. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/keyed.js.map +1 -0
  1320. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.d.ts +43 -0
  1321. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.d.ts.map +1 -0
  1322. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.js +77 -0
  1323. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/live.js.map +1 -0
  1324. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.d.ts +23 -0
  1325. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.d.ts.map +1 -0
  1326. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.js +30 -0
  1327. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/map.js.map +1 -0
  1328. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.d.ts +58 -0
  1329. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.d.ts.map +1 -0
  1330. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.js +83 -0
  1331. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/private-async-helpers.js.map +1 -0
  1332. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.d.ts +24 -0
  1333. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.d.ts.map +1 -0
  1334. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.js +13 -0
  1335. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/range.js.map +1 -0
  1336. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.d.ts +66 -0
  1337. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.d.ts.map +1 -0
  1338. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.js +124 -0
  1339. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/ref.js.map +1 -0
  1340. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.d.ts +64 -0
  1341. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.d.ts.map +1 -0
  1342. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.js +413 -0
  1343. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/repeat.js.map +1 -0
  1344. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.d.ts +50 -0
  1345. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.d.ts.map +1 -0
  1346. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.js +105 -0
  1347. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/style-map.js.map +1 -0
  1348. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.d.ts +26 -0
  1349. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.d.ts.map +1 -0
  1350. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.js +31 -0
  1351. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/template-content.js.map +1 -0
  1352. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.d.ts +27 -0
  1353. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.d.ts.map +1 -0
  1354. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.js +61 -0
  1355. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-html.js.map +1 -0
  1356. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.d.ts +27 -0
  1357. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.d.ts.map +1 -0
  1358. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.js +24 -0
  1359. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-mathml.js.map +1 -0
  1360. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.d.ts +27 -0
  1361. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.d.ts.map +1 -0
  1362. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.js +24 -0
  1363. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/unsafe-svg.js.map +1 -0
  1364. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.d.ts +44 -0
  1365. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.d.ts.map +1 -0
  1366. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.js +123 -0
  1367. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/until.js.map +1 -0
  1368. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.d.ts +28 -0
  1369. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.d.ts.map +1 -0
  1370. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.js +9 -0
  1371. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/directives/when.js.map +1 -0
  1372. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.d.ts +15 -0
  1373. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.d.ts.map +1 -0
  1374. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.js +22 -0
  1375. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/is-server.js.map +1 -0
  1376. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.d.ts +617 -0
  1377. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.d.ts.map +1 -0
  1378. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.js +1508 -0
  1379. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/lit-html.js.map +1 -0
  1380. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.d.ts +27 -0
  1381. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.d.ts.map +1 -0
  1382. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.js +195 -0
  1383. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/polyfill-support.js.map +1 -0
  1384. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.d.ts +57 -0
  1385. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.d.ts.map +1 -0
  1386. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.js +81 -0
  1387. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/private-ssr-support.js.map +1 -0
  1388. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.d.ts +89 -0
  1389. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.d.ts.map +1 -0
  1390. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.js +149 -0
  1391. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/development/static.js.map +1 -0
  1392. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.d.ts +117 -0
  1393. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.d.ts.map +1 -0
  1394. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.js +7 -0
  1395. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive-helpers.js.map +1 -0
  1396. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.d.ts +66 -0
  1397. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.d.ts.map +1 -0
  1398. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.js +7 -0
  1399. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directive.js.map +1 -0
  1400. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.d.ts +39 -0
  1401. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.d.ts.map +1 -0
  1402. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.js +7 -0
  1403. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-append.js.map +1 -0
  1404. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.d.ts +39 -0
  1405. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.d.ts.map +1 -0
  1406. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.js +7 -0
  1407. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/async-replace.js.map +1 -0
  1408. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.d.ts +35 -0
  1409. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.d.ts.map +1 -0
  1410. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.js +7 -0
  1411. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/cache.js.map +1 -0
  1412. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.d.ts +32 -0
  1413. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.d.ts.map +1 -0
  1414. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.js +7 -0
  1415. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/choose.js.map +1 -0
  1416. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.d.ts +45 -0
  1417. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.d.ts.map +1 -0
  1418. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.js +7 -0
  1419. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/class-map.js.map +1 -0
  1420. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.d.ts +60 -0
  1421. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.d.ts.map +1 -0
  1422. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.js +8 -0
  1423. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/guard.js.map +1 -0
  1424. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.d.ts +14 -0
  1425. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.d.ts.map +1 -0
  1426. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.js +7 -0
  1427. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/if-defined.js.map +1 -0
  1428. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.d.ts +21 -0
  1429. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.d.ts.map +1 -0
  1430. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.js +7 -0
  1431. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/join.js.map +1 -0
  1432. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.d.ts +27 -0
  1433. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.d.ts.map +1 -0
  1434. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.js +7 -0
  1435. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/keyed.js.map +1 -0
  1436. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.d.ts +43 -0
  1437. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.d.ts.map +1 -0
  1438. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.js +7 -0
  1439. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/live.js.map +1 -0
  1440. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.d.ts +23 -0
  1441. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.d.ts.map +1 -0
  1442. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.js +7 -0
  1443. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/map.js.map +1 -0
  1444. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.d.ts +58 -0
  1445. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.d.ts.map +1 -0
  1446. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.js +7 -0
  1447. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/private-async-helpers.js.map +1 -0
  1448. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.d.ts +24 -0
  1449. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.d.ts.map +1 -0
  1450. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.js +7 -0
  1451. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/range.js.map +1 -0
  1452. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.d.ts +66 -0
  1453. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.d.ts.map +1 -0
  1454. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.js +7 -0
  1455. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/ref.js.map +1 -0
  1456. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.d.ts +64 -0
  1457. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.d.ts.map +1 -0
  1458. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.js +8 -0
  1459. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/repeat.js.map +1 -0
  1460. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.d.ts +50 -0
  1461. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.d.ts.map +1 -0
  1462. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.js +7 -0
  1463. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/style-map.js.map +1 -0
  1464. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.d.ts +26 -0
  1465. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.d.ts.map +1 -0
  1466. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.js +7 -0
  1467. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/template-content.js.map +1 -0
  1468. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.d.ts +27 -0
  1469. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.d.ts.map +1 -0
  1470. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.js +7 -0
  1471. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-html.js.map +1 -0
  1472. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.d.ts +27 -0
  1473. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.d.ts.map +1 -0
  1474. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.js +7 -0
  1475. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-mathml.js.map +1 -0
  1476. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.d.ts +27 -0
  1477. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.d.ts.map +1 -0
  1478. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.js +7 -0
  1479. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/unsafe-svg.js.map +1 -0
  1480. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.d.ts +44 -0
  1481. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.d.ts.map +1 -0
  1482. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.js +7 -0
  1483. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/until.js.map +1 -0
  1484. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.d.ts +28 -0
  1485. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.d.ts.map +1 -0
  1486. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.js +7 -0
  1487. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/directives/when.js.map +1 -0
  1488. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.d.ts +15 -0
  1489. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.d.ts.map +1 -0
  1490. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.js +7 -0
  1491. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/is-server.js.map +1 -0
  1492. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.d.ts +617 -0
  1493. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.d.ts.map +1 -0
  1494. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.js +7 -0
  1495. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/lit-html.js.map +1 -0
  1496. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/async-directive.js +7 -0
  1497. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/async-directive.js.map +1 -0
  1498. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/async-directive.js +245 -0
  1499. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/async-directive.js.map +1 -0
  1500. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive-helpers.js +178 -0
  1501. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive-helpers.js.map +1 -0
  1502. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive.js +50 -0
  1503. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directive.js.map +1 -0
  1504. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-append.js +56 -0
  1505. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-append.js.map +1 -0
  1506. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-replace.js +104 -0
  1507. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/async-replace.js.map +1 -0
  1508. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/cache.js +91 -0
  1509. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/cache.js.map +1 -0
  1510. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/choose.js +43 -0
  1511. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/choose.js.map +1 -0
  1512. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/class-map.js +89 -0
  1513. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/class-map.js.map +1 -0
  1514. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/guard.js +83 -0
  1515. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/guard.js.map +1 -0
  1516. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/if-defined.js +17 -0
  1517. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/if-defined.js.map +1 -0
  1518. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/join.js +21 -0
  1519. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/join.js.map +1 -0
  1520. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/keyed.js +42 -0
  1521. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/keyed.js.map +1 -0
  1522. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/live.js +80 -0
  1523. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/live.js.map +1 -0
  1524. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/map.js +32 -0
  1525. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/map.js.map +1 -0
  1526. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/private-async-helpers.js +85 -0
  1527. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/private-async-helpers.js.map +1 -0
  1528. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/range.js +15 -0
  1529. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/range.js.map +1 -0
  1530. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/ref.js +128 -0
  1531. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/ref.js.map +1 -0
  1532. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/repeat.js +416 -0
  1533. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/repeat.js.map +1 -0
  1534. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/style-map.js +108 -0
  1535. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/style-map.js.map +1 -0
  1536. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/template-content.js +34 -0
  1537. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/template-content.js.map +1 -0
  1538. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-html.js +64 -0
  1539. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-html.js.map +1 -0
  1540. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-mathml.js +27 -0
  1541. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-mathml.js.map +1 -0
  1542. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-svg.js +27 -0
  1543. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/unsafe-svg.js.map +1 -0
  1544. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/until.js +127 -0
  1545. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/until.js.map +1 -0
  1546. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/when.js +11 -0
  1547. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/directives/when.js.map +1 -0
  1548. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/is-server.js +24 -0
  1549. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/is-server.js.map +1 -0
  1550. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/lit-html.js +1485 -0
  1551. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/lit-html.js.map +1 -0
  1552. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/polyfill-support.js +186 -0
  1553. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/polyfill-support.js.map +1 -0
  1554. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/private-ssr-support.js +84 -0
  1555. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/private-ssr-support.js.map +1 -0
  1556. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/static.js +152 -0
  1557. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/development/static.js.map +1 -0
  1558. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive-helpers.js +7 -0
  1559. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive-helpers.js.map +1 -0
  1560. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive.js +7 -0
  1561. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directive.js.map +1 -0
  1562. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-append.js +7 -0
  1563. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-append.js.map +1 -0
  1564. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-replace.js +7 -0
  1565. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/async-replace.js.map +1 -0
  1566. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/cache.js +7 -0
  1567. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/cache.js.map +1 -0
  1568. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/choose.js +7 -0
  1569. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/choose.js.map +1 -0
  1570. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/class-map.js +7 -0
  1571. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/class-map.js.map +1 -0
  1572. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/guard.js +8 -0
  1573. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/guard.js.map +1 -0
  1574. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/if-defined.js +7 -0
  1575. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/if-defined.js.map +1 -0
  1576. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/join.js +7 -0
  1577. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/join.js.map +1 -0
  1578. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/keyed.js +7 -0
  1579. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/keyed.js.map +1 -0
  1580. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/live.js +7 -0
  1581. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/live.js.map +1 -0
  1582. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/map.js +7 -0
  1583. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/map.js.map +1 -0
  1584. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/private-async-helpers.js +7 -0
  1585. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/private-async-helpers.js.map +1 -0
  1586. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/range.js +7 -0
  1587. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/range.js.map +1 -0
  1588. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/ref.js +7 -0
  1589. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/ref.js.map +1 -0
  1590. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/repeat.js +8 -0
  1591. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/repeat.js.map +1 -0
  1592. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/style-map.js +7 -0
  1593. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/style-map.js.map +1 -0
  1594. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/template-content.js +7 -0
  1595. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/template-content.js.map +1 -0
  1596. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-html.js +7 -0
  1597. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-html.js.map +1 -0
  1598. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-mathml.js +7 -0
  1599. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-mathml.js.map +1 -0
  1600. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-svg.js +7 -0
  1601. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/unsafe-svg.js.map +1 -0
  1602. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/until.js +7 -0
  1603. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/until.js.map +1 -0
  1604. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/when.js +7 -0
  1605. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/directives/when.js.map +1 -0
  1606. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/is-server.js +7 -0
  1607. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/is-server.js.map +1 -0
  1608. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/lit-html.js +7 -0
  1609. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/lit-html.js.map +1 -0
  1610. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/polyfill-support.js +7 -0
  1611. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/polyfill-support.js.map +1 -0
  1612. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/private-ssr-support.js +8 -0
  1613. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/private-ssr-support.js.map +1 -0
  1614. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/static.js +8 -0
  1615. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/node/static.js.map +1 -0
  1616. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/package.json +629 -0
  1617. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.d.ts +27 -0
  1618. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.d.ts.map +1 -0
  1619. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.js +7 -0
  1620. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/polyfill-support.js.map +1 -0
  1621. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.d.ts +57 -0
  1622. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.d.ts.map +1 -0
  1623. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.js +8 -0
  1624. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/private-ssr-support.js.map +1 -0
  1625. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.d.ts +89 -0
  1626. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.d.ts.map +1 -0
  1627. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.js +8 -0
  1628. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/lit-html/static.js.map +1 -0
  1629. mindroot-0.1.0/src/mindroot/coreplugins/index/static/js/plugin-section.js +211 -0
  1630. mindroot-0.1.0/src/mindroot/coreplugins/index/utils.py +56 -0
  1631. mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/__init__.py +2 -0
  1632. mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/middleware.py +104 -0
  1633. mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/mod.py +25 -0
  1634. mindroot-0.1.0/src/mindroot/coreplugins/jwt_auth/router.py +27 -0
  1635. mindroot-0.1.0/src/mindroot/coreplugins/login/mod.py +1 -0
  1636. mindroot-0.1.0/src/mindroot/coreplugins/login/router.py +19 -0
  1637. mindroot-0.1.0/src/mindroot/coreplugins/login/templates/login.jinja2 +83 -0
  1638. mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/avatar.png +0 -0
  1639. mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/faceref.png +0 -0
  1640. mindroot-0.1.0/src/mindroot/coreplugins/persona/Assistant/persona.json +7 -0
  1641. mindroot-0.1.0/src/mindroot/coreplugins/persona/README.md +25 -0
  1642. mindroot-0.1.0/src/mindroot/coreplugins/persona/__init__.py +1 -0
  1643. mindroot-0.1.0/src/mindroot/coreplugins/persona/init_persona.py +16 -0
  1644. mindroot-0.1.0/src/mindroot/coreplugins/persona/mod.py +84 -0
  1645. mindroot-0.1.0/src/mindroot/coreplugins/persona/plugin_info.json +17 -0
  1646. mindroot-0.1.0/src/mindroot/coreplugins/persona/pyproject.toml +17 -0
  1647. mindroot-0.1.0/src/mindroot/coreplugins/startup/__init__.py +2 -0
  1648. mindroot-0.1.0/src/mindroot/coreplugins/startup/mod.py +17 -0
  1649. mindroot-0.1.0/src/mindroot/lib/__init__.py +1 -0
  1650. mindroot-0.1.0/src/mindroot/lib/chatcontext.py +103 -0
  1651. mindroot-0.1.0/src/mindroot/lib/chatlog.py +102 -0
  1652. mindroot-0.1.0/src/mindroot/lib/db/organize_models.py +112 -0
  1653. mindroot-0.1.0/src/mindroot/lib/db/preferences.py +72 -0
  1654. mindroot-0.1.0/src/mindroot/lib/json_escape.py +37 -0
  1655. mindroot-0.1.0/src/mindroot/lib/json_str_block/__init__.py +1 -0
  1656. mindroot-0.1.0/src/mindroot/lib/json_str_block/json_str_block.py +91 -0
  1657. mindroot-0.1.0/src/mindroot/lib/logging/log_router.py +145 -0
  1658. mindroot-0.1.0/src/mindroot/lib/logging/logfiles.py +86 -0
  1659. mindroot-0.1.0/src/mindroot/lib/model_selector.py +36 -0
  1660. mindroot-0.1.0/src/mindroot/lib/pipelines/pipe.py +15 -0
  1661. mindroot-0.1.0/src/mindroot/lib/pipelines/pipelines.py +61 -0
  1662. mindroot-0.1.0/src/mindroot/lib/plugins/__init__.py +52 -0
  1663. mindroot-0.1.0/src/mindroot/lib/plugins/default_plugin_manifest.json +52 -0
  1664. mindroot-0.1.0/src/mindroot/lib/plugins/installation.py +176 -0
  1665. mindroot-0.1.0/src/mindroot/lib/plugins/loader.py +181 -0
  1666. mindroot-0.1.0/src/mindroot/lib/plugins/manifest.py +113 -0
  1667. mindroot-0.1.0/src/mindroot/lib/plugins/paths.py +109 -0
  1668. mindroot-0.1.0/src/mindroot/lib/plugins.py +60 -0
  1669. mindroot-0.1.0/src/mindroot/lib/plugins_install.py +64 -0
  1670. mindroot-0.1.0/src/mindroot/lib/providers/__init__.py +197 -0
  1671. mindroot-0.1.0/src/mindroot/lib/providers/commands.py +21 -0
  1672. mindroot-0.1.0/src/mindroot/lib/providers/hooks.py +15 -0
  1673. mindroot-0.1.0/src/mindroot/lib/providers/services.py +20 -0
  1674. mindroot-0.1.0/src/mindroot/lib/route_decorators.py +25 -0
  1675. mindroot-0.1.0/src/mindroot/lib/templates.py +285 -0
  1676. mindroot-0.1.0/src/mindroot/lib/utils/check_args.py +22 -0
  1677. mindroot-0.1.0/src/mindroot/lib/utils/dataurl.py +18 -0
  1678. mindroot-0.1.0/src/mindroot/lib/utils/merge_arrays.py +66 -0
  1679. mindroot-0.1.0/src/mindroot/lib/utils/not_working_merge_arrays.py +64 -0
  1680. mindroot-0.1.0/src/mindroot/lib/utils/parse_json_newlines_partial.py +25 -0
  1681. mindroot-0.1.0/src/mindroot/protocols/services/stream_chat.py +6 -0
  1682. mindroot-0.1.0/src/mindroot/registry/__init__.py +5 -0
  1683. mindroot-0.1.0/src/mindroot/registry/component_manager.py +24 -0
  1684. mindroot-0.1.0/src/mindroot/registry/data_access.py +138 -0
  1685. mindroot-0.1.0/src/mindroot/server.py +79 -0
  1686. mindroot-0.1.0/src/mindroot.egg-info/PKG-INFO +95 -0
  1687. mindroot-0.1.0/src/mindroot.egg-info/SOURCES.txt +1689 -0
  1688. mindroot-0.1.0/src/mindroot.egg-info/dependency_links.txt +1 -0
  1689. mindroot-0.1.0/src/mindroot.egg-info/entry_points.txt +2 -0
  1690. mindroot-0.1.0/src/mindroot.egg-info/requires.txt +19 -0
  1691. mindroot-0.1.0/src/mindroot.egg-info/top_level.txt +1 -0
mindroot-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Jason Livesay
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,24 @@
1
+ global-exclude *.py[cod]
2
+ prune src/ah/local
3
+ prune src/ah/data
4
+ prune src/ah/personas
5
+ prune src/ah/static
6
+ prune src/ah/imgs
7
+ prune src/ah/models
8
+
9
+ recursive-include src/mindroot/coreplugins/agent *.j2
10
+ recursive-include src/mindroot/coreplugins/chat/templates *
11
+ recursive-include src/mindroot/coreplugins/chat/static *
12
+ recursive-include src/mindroot/coreplugins/admin/templates *
13
+ recursive-include src/mindroot/coreplugins/admin/static *
14
+ recursive-include src/mindroot/coreplugins/index/static *
15
+ recursive-include src/mindroot/coreplugins/index/templates *
16
+ recursive-include srx/mindroot/coreplugins/index *.json
17
+ recursive-include src/mindroot/coreplugins/home/static *
18
+ recursive-include src/mindroot/coreplugins/home/templates *
19
+ recursive-include src/mindroot/coreplugins/index *
20
+ recursive-include src/mindroot/coreplugins/agent *
21
+ recursive-include src/mindroot/coreplugins/persona *
22
+ recursive-include src/mindroot/coreplugins/login *
23
+ recursive-include src/mindroot/lib/plugins *.json
24
+
@@ -0,0 +1,95 @@
1
+ Metadata-Version: 2.1
2
+ Name: mindroot
3
+ Version: 0.1.0
4
+ Summary: An agent framework using LLMs
5
+ Author-email: Jason Livesay <runvnc@gmail.com>
6
+ Project-URL: Homepage, https://github.com/runvncmindroot
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.7
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: fastapi
18
+ Requires-Dist: uvicorn
19
+ Requires-Dist: jinja2
20
+ Requires-Dist: nanoid
21
+ Requires-Dist: termcolor
22
+ Requires-Dist: colored
23
+ Requires-Dist: loguru
24
+ Requires-Dist: python-multipart
25
+ Requires-Dist: pytz
26
+ Requires-Dist: PyJWT
27
+ Requires-Dist: pluggy
28
+ Requires-Dist: sse_starlette
29
+ Requires-Dist: partial-json-parser
30
+ Requires-Dist: pydantic
31
+ Requires-Dist: setuptools
32
+ Requires-Dist: requests
33
+ Requires-Dist: aiohttp
34
+ Requires-Dist: Pillow
35
+ Requires-Dist: psutil
36
+
37
+
38
+ Mindroot
39
+
40
+ [![PyPI](https://img.shields.io/pypi/v/mindroot)](https://pypi.org/project/mindroot/)
41
+
42
+ **Note: some of the following is a work in progress and not yet functional. A few of them aren't really started.**
43
+
44
+ Mindroot is a powerful plugin-based Python framework for creating, deploying, and sharing AI agents and related models. It offers a flexible architecture with indices and a public registry (coming soon) for easily sharing and finding plugins, agents, personas, services, knowledgebases, and apps.
45
+
46
+ Installation
47
+ ------------
48
+
49
+ You can install Mindroot using pip:
50
+
51
+ ```bash
52
+ pip install mindroot
53
+ ```
54
+
55
+ For development, you can install the package in editable mode:
56
+
57
+ ```bash
58
+ git clone https://github.com/mindroot/mindroot.git
59
+ cd mindroot
60
+ pip install -e .
61
+ ```
62
+
63
+
64
+ Key Features:
65
+
66
+ - Public registry for sharing and finding plugins, agents, personas, models, and knowledgebases
67
+ - https://registry.agenthost.org (work in progress)
68
+ - Customizable and swappable for user-specific registries
69
+ - Extensible plugin architecture for adding services, commands, and building arbitrary web apps
70
+ - Customizable AI agents with persona definitions
71
+ - Intelligent service management based on agent requirements
72
+ - Flexible service providers for various AI capabilities
73
+ - Plugins can add/use hooks and pipelines such as for modifying prompts, running startup commands, or anything you want
74
+ - Easily customizable UI built on Jinja2 and Lit Web Components
75
+ - Support for both local and remote AI services
76
+ - RAG: easily share, find and use pre-generated embeddings and documents for topic knowledgebases
77
+
78
+ Core Concepts Overview
79
+ ----------------------
80
+
81
+ mindroot revolves around several key concepts:
82
+
83
+ 1. **Open Public Registry**: A flexible system for indexing and sharing plugins, agents, personas, and potentially models. It can be customized or replaced with user-specific registries.
84
+
85
+ 2. **Plugins**: Extend the functionality of mindroot, providing new features, services, or integrations.
86
+
87
+ 3. **Agents and Personas**: AI agents with defined capabilities and customizable personalities.
88
+
89
+ 4. **Services and Providers**: Backend services that power agent capabilities, with support for swapping between local and remote implementations.
90
+
91
+ 5. **Intelligent Service Management**: The system automatically determines and installs required services based on agent definitions.
92
+
93
+ 6. **UI Customization**: Easily modifiable user interface through theme overrides and injections.
94
+
95
+ 7. **RAG and Knowledgebases**: The community can easily share and search for topic embeddings and document sets rather than everyone rebuilding them per topic.
@@ -0,0 +1,59 @@
1
+
2
+ Mindroot
3
+
4
+ [![PyPI](https://img.shields.io/pypi/v/mindroot)](https://pypi.org/project/mindroot/)
5
+
6
+ **Note: some of the following is a work in progress and not yet functional. A few of them aren't really started.**
7
+
8
+ Mindroot is a powerful plugin-based Python framework for creating, deploying, and sharing AI agents and related models. It offers a flexible architecture with indices and a public registry (coming soon) for easily sharing and finding plugins, agents, personas, services, knowledgebases, and apps.
9
+
10
+ Installation
11
+ ------------
12
+
13
+ You can install Mindroot using pip:
14
+
15
+ ```bash
16
+ pip install mindroot
17
+ ```
18
+
19
+ For development, you can install the package in editable mode:
20
+
21
+ ```bash
22
+ git clone https://github.com/mindroot/mindroot.git
23
+ cd mindroot
24
+ pip install -e .
25
+ ```
26
+
27
+
28
+ Key Features:
29
+
30
+ - Public registry for sharing and finding plugins, agents, personas, models, and knowledgebases
31
+ - https://registry.agenthost.org (work in progress)
32
+ - Customizable and swappable for user-specific registries
33
+ - Extensible plugin architecture for adding services, commands, and building arbitrary web apps
34
+ - Customizable AI agents with persona definitions
35
+ - Intelligent service management based on agent requirements
36
+ - Flexible service providers for various AI capabilities
37
+ - Plugins can add/use hooks and pipelines such as for modifying prompts, running startup commands, or anything you want
38
+ - Easily customizable UI built on Jinja2 and Lit Web Components
39
+ - Support for both local and remote AI services
40
+ - RAG: easily share, find and use pre-generated embeddings and documents for topic knowledgebases
41
+
42
+ Core Concepts Overview
43
+ ----------------------
44
+
45
+ mindroot revolves around several key concepts:
46
+
47
+ 1. **Open Public Registry**: A flexible system for indexing and sharing plugins, agents, personas, and potentially models. It can be customized or replaced with user-specific registries.
48
+
49
+ 2. **Plugins**: Extend the functionality of mindroot, providing new features, services, or integrations.
50
+
51
+ 3. **Agents and Personas**: AI agents with defined capabilities and customizable personalities.
52
+
53
+ 4. **Services and Providers**: Backend services that power agent capabilities, with support for swapping between local and remote implementations.
54
+
55
+ 5. **Intelligent Service Management**: The system automatically determines and installs required services based on agent definitions.
56
+
57
+ 6. **UI Customization**: Easily modifiable user interface through theme overrides and injections.
58
+
59
+ 7. **RAG and Knowledgebases**: The community can easily share and search for topic embeddings and document sets rather than everyone rebuilding them per topic.
@@ -0,0 +1,60 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mindroot"
7
+ version = "0.1.0"
8
+ description = "An agent framework using LLMs"
9
+ authors = [{name = "Jason Livesay", email = "runvnc@gmail.com"}]
10
+ readme = "README.md"
11
+ requires-python = ">=3.7"
12
+ classifiers = [
13
+ "Development Status :: 3 - Alpha",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.7",
18
+ "Programming Language :: Python :: 3.8",
19
+ "Programming Language :: Python :: 3.9",
20
+ ]
21
+ dependencies = [
22
+ "fastapi",
23
+ "uvicorn",
24
+ "jinja2",
25
+ "nanoid",
26
+ "termcolor",
27
+ "colored",
28
+ "loguru",
29
+ "python-multipart",
30
+ "pytz",
31
+ "PyJWT",
32
+ "pluggy",
33
+ "sse_starlette",
34
+ "partial-json-parser",
35
+ "pydantic",
36
+ "setuptools",
37
+ "requests",
38
+ "aiohttp", # now ad python image library
39
+ "Pillow",
40
+ "psutil"
41
+ ]
42
+
43
+
44
+ [project.urls]
45
+ Homepage = "https://github.com/runvncmindroot"
46
+
47
+
48
+ [project.scripts]
49
+ mindroot = "mindroot.server:main"
50
+
51
+ [tool.setuptools]
52
+ package-dir = {"" = "src"}
53
+
54
+
55
+ [tool.setuptools.packages.find]
56
+ where = ["src"]
57
+ exclude = ["*local*", "*data*", "*personas*", "*static*", "*imgs*", "*models*"]
58
+
59
+
60
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ # This file is intentionally left empty to mark the directory as a Python package.
@@ -0,0 +1 @@
1
+ # This file is required to make Python treat the directory as a package.
@@ -0,0 +1,173 @@
1
+ from pathlib import Path
2
+ import json
3
+ import shutil
4
+ import logging
5
+ from typing import Dict, List
6
+ import os
7
+ import tempfile
8
+ import requests
9
+ import zipfile
10
+
11
+ # Configure logging
12
+ logging.basicConfig(level=logging.INFO)
13
+ logger = logging.getLogger(__name__)
14
+
15
+ # These should be moved to a config file or environment variables
16
+ AGENT_BASE_DIR = Path('data/agents')
17
+ PERSONA_BASE_DIR = Path('personas')
18
+
19
+ CONFIRM_OVERWRITE_AGENT = os.environ.get('CONFIRM_OVERWRITE_AGENT', 'false')
20
+ if CONFIRM_OVERWRITE_AGENT.lower() in ['true', '1']:
21
+ CONFIRM_OVERWRITE_AGENT = True
22
+ else:
23
+ CONFIRM_OVERWRITE_AGENT = False
24
+
25
+ def download_github_files(repo_path: str, tag: str = None) -> tuple[str, str]:
26
+ """Download GitHub repo files to temp directory"""
27
+ # Format the download URL
28
+ if tag:
29
+ download_url = f"https://github.com/{repo_path}/archive/refs/tags/{tag}.zip"
30
+ else:
31
+ download_url = f"https://github.com/{repo_path}/archive/refs/heads/main.zip"
32
+
33
+ # Create temp directory
34
+ temp_dir = tempfile.mkdtemp()
35
+ zip_path = os.path.join(temp_dir, 'repo.zip')
36
+
37
+ try:
38
+ # Download the zip file
39
+ response = requests.get(download_url)
40
+ response.raise_for_status()
41
+
42
+ with open(zip_path, 'wb') as f:
43
+ f.write(response.content)
44
+
45
+ # Extract zip
46
+ with zipfile.ZipFile(zip_path, 'r') as zip_ref:
47
+ zip_ref.extractall(temp_dir)
48
+
49
+ return temp_dir, os.path.dirname(zip_path)
50
+
51
+ except Exception as e:
52
+ shutil.rmtree(temp_dir)
53
+ raise e
54
+
55
+ def scan_for_agents(directory: Path) -> Dict[str, Dict]:
56
+ discovered_agents = {}
57
+ for agent_file in directory.rglob('agent.json'):
58
+ try:
59
+ with agent_file.open('r') as f:
60
+ agent_data = json.load(f)
61
+ agent_name = agent_data.get('name')
62
+ if agent_name:
63
+ discovered_agents[agent_name] = {
64
+ 'path': agent_file.parent,
65
+ 'data': agent_data
66
+ }
67
+ except json.JSONDecodeError:
68
+ logger.error(f"Failed to parse agent file: {agent_file}")
69
+ except PermissionError:
70
+ logger.error(f"Permission denied when reading: {agent_file}")
71
+ return discovered_agents
72
+
73
+ def validate_agent_structure(agent_data: Dict) -> bool:
74
+ required_fields = ['name', 'persona', 'commands']
75
+ return all(field in agent_data for field in required_fields)
76
+
77
+ def import_agent(agent_name: str, agent_info: Dict, scope: str) -> None:
78
+ target_dir = Path(AGENT_BASE_DIR) / scope / agent_name
79
+ if CONFIRM_OVERWRITE_AGENT and target_dir.exists():
80
+ logger.warning(f"Agent {agent_name} already exists in {scope} scope, skipping")
81
+ return
82
+
83
+ if not validate_agent_structure(agent_info['data']):
84
+ logger.error(f"Agent {agent_name} has invalid structure, skipping")
85
+ return
86
+
87
+ try:
88
+ shutil.copytree(agent_info['path'], target_dir, dirs_exist_ok=True)
89
+ logger.info(f"Imported agent {agent_name} to {target_dir}")
90
+
91
+ persona_name = agent_info['data'].get('persona')
92
+ if persona_name:
93
+ persona_dir = os.path.join(agent_info['path'].parent.parent, "personas")
94
+ import_persona(persona_name, persona_dir, scope)
95
+ except PermissionError:
96
+ logger.error(f"Permission denied when copying agent {agent_name}")
97
+ except shutil.Error as e:
98
+ logger.error(f"Error copying agent {agent_name}: {e}")
99
+
100
+ def import_persona(persona_name: str, source_dir: Path, scope: str) -> None:
101
+ persona_source = Path(source_dir) / persona_name
102
+ if not persona_source.exists():
103
+ logger.warning(f"Referenced persona {persona_name} not found in {source_dir}")
104
+ return
105
+
106
+ persona_target = PERSONA_BASE_DIR / scope / persona_name
107
+ if CONFIRM_OVERWRITE_AGENT and persona_target.exists():
108
+ logger.warning(f"Persona {persona_name} already exists, skipping import")
109
+ return
110
+
111
+ try:
112
+ shutil.copytree(persona_source, persona_target, dirs_exist_ok=True)
113
+ logger.info(f"Imported persona {persona_name} to {persona_target}")
114
+ except PermissionError:
115
+ logger.error(f"Permission denied when copying persona {persona_name}")
116
+ except shutil.Error as e:
117
+ logger.error(f"Error copying persona {persona_name}: {e}")
118
+
119
+ def scan_and_import_agents(directory: Path, scope: str) -> Dict[str, List[str]]:
120
+ if not directory.is_dir():
121
+ raise ValueError(f"Invalid directory path: {directory}")
122
+
123
+ if scope not in ['local', 'shared']:
124
+ raise ValueError(f"Invalid scope: {scope}")
125
+
126
+ discovered_agents = scan_for_agents(directory)
127
+
128
+ imported_agents = []
129
+ for agent_name, agent_info in discovered_agents.items():
130
+ try:
131
+ import_agent(agent_name, agent_info, scope)
132
+ imported_agents.append(agent_name)
133
+ except Exception as e:
134
+ logger.error(f"Failed to import agent {agent_name}: {e}")
135
+
136
+ return {
137
+ 'imported_agents': imported_agents,
138
+ 'total_imported': len(imported_agents),
139
+ 'total_discovered': len(discovered_agents)
140
+ }
141
+
142
+ def import_github_agent(repo_path: str, scope: str, tag: str = None) -> Dict[str, any]:
143
+ """Import an agent from a GitHub repository"""
144
+ try:
145
+ # Download and extract GitHub repository
146
+ temp_dir, extract_path = download_github_files(repo_path, tag)
147
+
148
+ try:
149
+ # Scan the downloaded directory for agents
150
+ discovered = scan_for_agents(Path(temp_dir))
151
+ if not discovered:
152
+ raise ValueError("No valid agents found in repository")
153
+
154
+ # Import each discovered agent
155
+ result = scan_and_import_agents(Path(temp_dir), scope)
156
+
157
+ return {
158
+ 'success': True,
159
+ 'message': f"Successfully imported {result['total_imported']} agents from GitHub",
160
+ 'imported_agents': result['imported_agents']
161
+ }
162
+
163
+ finally:
164
+ # Clean up temp directory
165
+ shutil.rmtree(temp_dir)
166
+
167
+ except Exception as e:
168
+ logger.error(f"Failed to import agent from GitHub: {str(e)}")
169
+ return {
170
+ 'success': False,
171
+ 'message': f"Failed to import agent: {str(e)}",
172
+ 'imported_agents': []
173
+ }
@@ -0,0 +1,163 @@
1
+ from fastapi import APIRouter, HTTPException, UploadFile, File, Form
2
+ from pydantic import BaseModel
3
+ from pathlib import Path
4
+ import json
5
+ from .agent_importer import scan_and_import_agents, import_github_agent
6
+ from .persona_handler import handle_persona_import
7
+
8
+ router = APIRouter()
9
+
10
+ BASE_DIR = Path('data/agents')
11
+ local_dir = BASE_DIR / "local"
12
+ shared_dir = BASE_DIR / "shared"
13
+ local_dir.mkdir(parents=True, exist_ok=True)
14
+ shared_dir.mkdir(parents=True, exist_ok=True)
15
+
16
+ class GitHubImportRequest(BaseModel):
17
+ repo_path: str # Format: "owner/repo"
18
+ scope: str
19
+ tag: str = None
20
+
21
+ async def load_persona_data(persona_name: str) -> dict:
22
+ """Load persona data from local or shared directory"""
23
+ persona_path = Path('personas/local') / persona_name / 'persona.json'
24
+ if not persona_path.exists():
25
+ persona_path = Path('personas/shared') / persona_name / 'persona.json'
26
+
27
+ if not persona_path.exists():
28
+ return {}
29
+
30
+ with open(persona_path, 'r') as f:
31
+ return json.load(f)
32
+
33
+ async def load_agent_data(agent_name: str) -> dict:
34
+ """Load agent data from local or shared directory"""
35
+ agent_path = BASE_DIR / 'local' / agent_name / 'agent.json'
36
+ if not agent_path.exists():
37
+ agent_path = BASE_DIR / 'shared' / agent_name / 'agent.json'
38
+ if not agent_path.exists():
39
+ raise FileNotFoundError(f'Agent {agent_name} not found')
40
+
41
+ with open(agent_path, 'r') as f:
42
+ agent_data = json.load(f)
43
+
44
+ # Get the persona data if specified
45
+ if 'persona' in agent_data:
46
+ persona_data = await load_persona_data(agent_data['persona'])
47
+ agent_data['persona'] = persona_data
48
+
49
+ return agent_data
50
+
51
+ @router.get('/agents/full/{scope}/{name}')
52
+ async def get_full_agent_data(scope: str, name: str):
53
+ """Get complete agent data including persona"""
54
+ if scope not in ['local', 'shared']:
55
+ raise HTTPException(status_code=400, detail='Invalid scope')
56
+
57
+ try:
58
+ agent_data = await load_agent_data(name)
59
+ return agent_data
60
+ except FileNotFoundError as e:
61
+ raise HTTPException(status_code=404, detail=str(e))
62
+ except Exception as e:
63
+ raise HTTPException(status_code=500, detail=str(e))
64
+
65
+ @router.get('/agents/{scope}/{name}')
66
+ def read_agent(scope: str, name: str):
67
+ if scope not in ['local', 'shared']:
68
+ raise HTTPException(status_code=400, detail='Invalid scope')
69
+ agent_path = BASE_DIR / scope / name / 'agent.json'
70
+ if not agent_path.exists():
71
+ raise HTTPException(status_code=404, detail='Agent not found')
72
+ with open(agent_path, 'r') as f:
73
+ agent = json.load(f)
74
+ return agent
75
+
76
+ @router.get('/agents/{scope}')
77
+ def list_agents(scope: str):
78
+ if scope not in ['local', 'shared']:
79
+ raise HTTPException(status_code=400, detail='Invalid scope')
80
+ scope_dir = BASE_DIR / scope
81
+ agents = [p.name for p in scope_dir.iterdir() if p.is_dir()]
82
+ return [{'name': name} for name in agents]
83
+
84
+ @router.post('/agents/{scope}')
85
+ def create_agent(scope: str, agent: str = Form(...)):
86
+ try:
87
+ agent_data = json.loads(agent)
88
+ if scope not in ['local', 'shared']:
89
+ raise HTTPException(status_code=400, detail='Invalid scope')
90
+
91
+ agent_name = agent_data.get('name')
92
+ if not agent_name:
93
+ raise HTTPException(status_code=400, detail='Agent name is required')
94
+
95
+ # Handle persona if present
96
+ if 'persona' in agent_data:
97
+ # This will either return the persona name or handle the import
98
+ # and return the name
99
+ persona_name = handle_persona_import(agent_data['persona'], scope)
100
+ agent_data['persona'] = persona_name
101
+
102
+ agent_path = BASE_DIR / scope / agent_name / 'agent.json'
103
+ if agent_path.exists():
104
+ raise HTTPException(status_code=400, detail='Agent already exists')
105
+
106
+ agent_path.parent.mkdir(parents=True, exist_ok=True)
107
+ with open(agent_path, 'w') as f:
108
+ json.dump(agent_data, f, indent=2)
109
+
110
+ return {'status': 'success'}
111
+ except Exception as e:
112
+ raise HTTPException(status_code=500, detail='Internal server error ' + str(e))
113
+
114
+ @router.put('/agents/{scope}/{name}')
115
+ def update_agent(scope: str, name: str, agent: str = Form(...)):
116
+ try:
117
+ agent = json.loads(agent)
118
+ if scope not in ['local', 'shared']:
119
+ raise HTTPException(status_code=400, detail='Invalid scope')
120
+ agent_path = BASE_DIR / scope / name / 'agent.json'
121
+ if not agent_path.exists():
122
+ raise HTTPException(status_code=404, detail='Agent not found')
123
+ with open(agent_path, 'w') as f:
124
+ json.dump(agent, f, indent=2)
125
+ return {'status': 'success'}
126
+ except Exception as e:
127
+ raise HTTPException(status_code=500, detail='Internal server error ' + str(e))
128
+
129
+ class ScanDirectoryRequest(BaseModel):
130
+ directory: str
131
+ scope: str
132
+
133
+ @router.post('/scan-and-import-agents')
134
+ def scan_and_import_agents_endpoint(request: ScanDirectoryRequest):
135
+ try:
136
+ result = scan_and_import_agents(Path(request.directory), request.scope)
137
+ return {
138
+ 'success': True,
139
+ 'message': f"Imported {result['total_imported']} out of {result['total_discovered']} discovered agents",
140
+ 'imported_agents': result['imported_agents']
141
+ }
142
+ except ValueError as e:
143
+ raise HTTPException(status_code=400, detail=str(e))
144
+ except Exception as e:
145
+ raise HTTPException(status_code=500, detail=f"Error during import: {str(e)}")
146
+
147
+ @router.post('/import-github-agent')
148
+ def import_github_agent_endpoint(request: GitHubImportRequest):
149
+ try:
150
+ if request.scope not in ['local', 'shared']:
151
+ raise HTTPException(status_code=400, detail='Invalid scope')
152
+
153
+ result = import_github_agent(request.repo_path, request.scope, request.tag)
154
+
155
+ if not result['success']:
156
+ raise HTTPException(status_code=400, detail=result['message'])
157
+
158
+ return result
159
+
160
+ except ValueError as e:
161
+ raise HTTPException(status_code=400, detail=str(e))
162
+ except Exception as e:
163
+ raise HTTPException(status_code=500, detail=f"Error during GitHub import: {str(e)}")
@@ -0,0 +1,62 @@
1
+ from pathlib import Path
2
+ import json
3
+ import logging
4
+ from fastapi import HTTPException
5
+
6
+ # Configure logging
7
+ logging.basicConfig(level=logging.INFO)
8
+ logger = logging.getLogger(__name__)
9
+
10
+ def handle_persona_import(persona_data: dict, scope: str) -> str:
11
+ """Handle importing a persona from embedded data in agent configuration.
12
+ Returns the persona name to be used in agent configuration.
13
+
14
+ Args:
15
+ persona_data: Dictionary containing persona data or string with persona name
16
+ scope: 'local' or 'shared'
17
+
18
+ Returns:
19
+ str: Name of the persona to reference in agent config
20
+ """
21
+
22
+ # If persona_data is already a string, just return it
23
+ if isinstance(persona_data, str):
24
+ return persona_data
25
+
26
+ # Validate persona data
27
+ if not isinstance(persona_data, dict):
28
+ raise HTTPException(
29
+ status_code=400,
30
+ detail='Persona data must be either a string name or a dictionary'
31
+ )
32
+
33
+ persona_name = persona_data.get('name')
34
+ if not persona_name:
35
+ raise HTTPException(
36
+ status_code=400,
37
+ detail='Persona name required in persona data'
38
+ )
39
+
40
+ # Create persona path
41
+ persona_path = Path('personas') / scope / persona_name / 'persona.json'
42
+
43
+ # Check if persona already exists
44
+ if persona_path.exists():
45
+ logger.warning(f"Persona '{persona_name}' already exists in {scope} scope - skipping import")
46
+ return persona_name
47
+
48
+ try:
49
+ # Create persona directory and save data
50
+ persona_path.parent.mkdir(parents=True, exist_ok=True)
51
+ with open(persona_path, 'w') as f:
52
+ json.dump(persona_data, f, indent=2)
53
+
54
+ logger.info(f"Successfully imported persona '{persona_name}' to {scope} scope")
55
+ return persona_name
56
+
57
+ except Exception as e:
58
+ logger.error(f"Failed to import persona '{persona_name}': {str(e)}")
59
+ raise HTTPException(
60
+ status_code=500,
61
+ detail=f"Failed to import persona: {str(e)}"
62
+ )