autosnippet 3.2.10 → 3.2.12

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 (1892) hide show
  1. package/README.md +37 -55
  2. package/config/default.json +19 -1
  3. package/dashboard/dist/assets/axios-42ANG6Sg.js +6 -0
  4. package/dashboard/dist/assets/framer-motion-CZfOSYpP.js +9 -0
  5. package/dashboard/dist/assets/icons-C1dUryS-.js +1 -0
  6. package/dashboard/dist/assets/index-CKMy5LY6.js +128 -0
  7. package/dashboard/dist/assets/index-D0whuycy.css +1 -0
  8. package/dashboard/dist/assets/vendor-BZEJEVBn.js +3068 -0
  9. package/dashboard/dist/index.html +6 -6
  10. package/dist/bin/api-server.d.ts +7 -0
  11. package/dist/bin/api-server.d.ts.map +1 -0
  12. package/dist/bin/api-server.js +87 -0
  13. package/dist/bin/api-server.js.map +1 -0
  14. package/dist/bin/cli.d.ts +20 -0
  15. package/dist/bin/cli.d.ts.map +1 -0
  16. package/dist/bin/cli.js +1169 -0
  17. package/dist/bin/cli.js.map +1 -0
  18. package/dist/bin/mcp-server.d.ts +28 -0
  19. package/dist/bin/mcp-server.d.ts.map +1 -0
  20. package/dist/bin/mcp-server.js +59 -0
  21. package/dist/bin/mcp-server.js.map +1 -0
  22. package/dist/lib/bootstrap.d.ts +92 -0
  23. package/dist/lib/bootstrap.d.ts.map +1 -0
  24. package/dist/lib/bootstrap.js +206 -0
  25. package/dist/lib/bootstrap.js.map +1 -0
  26. package/dist/lib/cli/AiScanService.d.ts +72 -0
  27. package/dist/lib/cli/AiScanService.d.ts.map +1 -0
  28. package/dist/lib/cli/AiScanService.js +252 -0
  29. package/dist/lib/cli/AiScanService.js.map +1 -0
  30. package/dist/lib/cli/CliLogger.d.ts +41 -0
  31. package/dist/lib/cli/CliLogger.d.ts.map +1 -0
  32. package/dist/lib/cli/CliLogger.js +73 -0
  33. package/dist/lib/cli/CliLogger.js.map +1 -0
  34. package/dist/lib/cli/KnowledgeSyncService.d.ts +156 -0
  35. package/dist/lib/cli/KnowledgeSyncService.d.ts.map +1 -0
  36. package/dist/lib/cli/KnowledgeSyncService.js +338 -0
  37. package/dist/lib/cli/KnowledgeSyncService.js.map +1 -0
  38. package/dist/lib/cli/SetupService.d.ts +136 -0
  39. package/dist/lib/cli/SetupService.d.ts.map +1 -0
  40. package/dist/lib/cli/SetupService.js +510 -0
  41. package/dist/lib/cli/SetupService.js.map +1 -0
  42. package/dist/lib/cli/UpgradeService.d.ts +30 -0
  43. package/dist/lib/cli/UpgradeService.d.ts.map +1 -0
  44. package/dist/lib/cli/UpgradeService.js +83 -0
  45. package/dist/lib/cli/UpgradeService.js.map +1 -0
  46. package/dist/lib/cli/deploy/FileDeployer.d.ts +108 -0
  47. package/dist/lib/cli/deploy/FileDeployer.d.ts.map +1 -0
  48. package/dist/lib/cli/deploy/FileDeployer.js +543 -0
  49. package/dist/lib/cli/deploy/FileDeployer.js.map +1 -0
  50. package/dist/lib/cli/deploy/FileManifest.d.ts +210 -0
  51. package/dist/lib/cli/deploy/FileManifest.d.ts.map +1 -0
  52. package/dist/lib/cli/deploy/FileManifest.js +252 -0
  53. package/dist/lib/cli/deploy/FileManifest.js.map +1 -0
  54. package/dist/lib/core/AstAnalyzer.d.ts +278 -0
  55. package/dist/lib/core/AstAnalyzer.d.ts.map +1 -0
  56. package/dist/lib/core/AstAnalyzer.js +774 -0
  57. package/dist/lib/core/AstAnalyzer.js.map +1 -0
  58. package/dist/lib/core/analysis/CallEdgeResolver.d.ts +145 -0
  59. package/dist/lib/core/analysis/CallEdgeResolver.d.ts.map +1 -0
  60. package/dist/lib/core/analysis/CallEdgeResolver.js +374 -0
  61. package/dist/lib/core/analysis/CallEdgeResolver.js.map +1 -0
  62. package/dist/lib/core/analysis/CallGraphAnalyzer.d.ts +139 -0
  63. package/dist/lib/core/analysis/CallGraphAnalyzer.d.ts.map +1 -0
  64. package/dist/lib/core/analysis/CallGraphAnalyzer.js +313 -0
  65. package/dist/lib/core/analysis/CallGraphAnalyzer.js.map +1 -0
  66. package/dist/lib/core/analysis/CallSiteExtractor.d.ts +79 -0
  67. package/dist/lib/core/analysis/CallSiteExtractor.d.ts.map +1 -0
  68. package/dist/lib/core/analysis/CallSiteExtractor.js +654 -0
  69. package/dist/lib/core/analysis/CallSiteExtractor.js.map +1 -0
  70. package/dist/lib/core/analysis/DataFlowInferrer.d.ts +37 -0
  71. package/dist/lib/core/analysis/DataFlowInferrer.d.ts.map +1 -0
  72. package/dist/lib/core/analysis/DataFlowInferrer.js +52 -0
  73. package/dist/lib/core/analysis/DataFlowInferrer.js.map +1 -0
  74. package/dist/lib/core/analysis/ImportPathResolver.d.ts +59 -0
  75. package/dist/lib/core/analysis/ImportPathResolver.d.ts.map +1 -0
  76. package/dist/lib/core/analysis/ImportPathResolver.js +189 -0
  77. package/dist/lib/core/analysis/ImportPathResolver.js.map +1 -0
  78. package/dist/lib/core/analysis/ImportRecord.d.ts +63 -0
  79. package/dist/lib/core/analysis/ImportRecord.d.ts.map +1 -0
  80. package/dist/lib/core/analysis/ImportRecord.js +93 -0
  81. package/dist/lib/core/analysis/ImportRecord.js.map +1 -0
  82. package/dist/lib/core/analysis/SymbolTableBuilder.d.ts +84 -0
  83. package/dist/lib/core/analysis/SymbolTableBuilder.d.ts.map +1 -0
  84. package/dist/lib/core/analysis/SymbolTableBuilder.js +194 -0
  85. package/dist/lib/core/analysis/SymbolTableBuilder.js.map +1 -0
  86. package/dist/lib/core/ast/ProjectGraph.d.ts +161 -0
  87. package/dist/lib/core/ast/ProjectGraph.d.ts.map +1 -0
  88. package/dist/lib/core/ast/ProjectGraph.js +729 -0
  89. package/dist/lib/core/ast/ProjectGraph.js.map +1 -0
  90. package/dist/lib/core/ast/ensure-grammars.d.ts +42 -0
  91. package/dist/lib/core/ast/ensure-grammars.d.ts.map +1 -0
  92. package/dist/lib/core/ast/ensure-grammars.js +114 -0
  93. package/dist/lib/core/ast/ensure-grammars.js.map +1 -0
  94. package/dist/lib/core/ast/index.d.ts +31 -0
  95. package/dist/lib/core/ast/index.d.ts.map +1 -0
  96. package/dist/lib/core/ast/index.js +155 -0
  97. package/dist/lib/core/ast/index.js.map +1 -0
  98. package/dist/lib/core/ast/lang-dart.d.ts +35 -0
  99. package/dist/lib/core/ast/lang-dart.d.ts.map +1 -0
  100. package/dist/lib/core/ast/lang-dart.js +873 -0
  101. package/dist/lib/core/ast/lang-dart.js.map +1 -0
  102. package/dist/lib/core/ast/lang-go.d.ts +32 -0
  103. package/dist/lib/core/ast/lang-go.d.ts.map +1 -0
  104. package/dist/lib/core/ast/lang-go.js +680 -0
  105. package/dist/lib/core/ast/lang-go.js.map +1 -0
  106. package/dist/lib/core/ast/lang-java.d.ts +25 -0
  107. package/dist/lib/core/ast/lang-java.d.ts.map +1 -0
  108. package/dist/lib/core/ast/lang-java.js +592 -0
  109. package/dist/lib/core/ast/lang-java.js.map +1 -0
  110. package/dist/lib/core/ast/lang-javascript.d.ts +18 -0
  111. package/dist/lib/core/ast/lang-javascript.d.ts.map +1 -0
  112. package/dist/lib/core/ast/lang-javascript.js +233 -0
  113. package/dist/lib/core/ast/lang-javascript.js.map +1 -0
  114. package/dist/lib/core/ast/lang-kotlin.d.ts +24 -0
  115. package/dist/lib/core/ast/lang-kotlin.d.ts.map +1 -0
  116. package/dist/lib/core/ast/lang-kotlin.js +699 -0
  117. package/dist/lib/core/ast/lang-kotlin.js.map +1 -0
  118. package/dist/lib/core/ast/lang-objc.d.ts +16 -0
  119. package/dist/lib/core/ast/lang-objc.d.ts.map +1 -0
  120. package/dist/lib/core/ast/lang-objc.js +341 -0
  121. package/dist/lib/core/ast/lang-objc.js.map +1 -0
  122. package/dist/lib/core/ast/lang-python.d.ts +23 -0
  123. package/dist/lib/core/ast/lang-python.d.ts.map +1 -0
  124. package/dist/lib/core/ast/lang-python.js +360 -0
  125. package/dist/lib/core/ast/lang-python.js.map +1 -0
  126. package/dist/lib/core/ast/lang-rust.d.ts +32 -0
  127. package/dist/lib/core/ast/lang-rust.d.ts.map +1 -0
  128. package/dist/lib/core/ast/lang-rust.js +919 -0
  129. package/dist/lib/core/ast/lang-rust.js.map +1 -0
  130. package/dist/lib/core/ast/lang-swift.d.ts +28 -0
  131. package/dist/lib/core/ast/lang-swift.d.ts.map +1 -0
  132. package/dist/lib/core/ast/lang-swift.js +456 -0
  133. package/dist/lib/core/ast/lang-swift.js.map +1 -0
  134. package/dist/lib/core/ast/lang-typescript.d.ts +32 -0
  135. package/dist/lib/core/ast/lang-typescript.d.ts.map +1 -0
  136. package/dist/lib/core/ast/lang-typescript.js +712 -0
  137. package/dist/lib/core/ast/lang-typescript.js.map +1 -0
  138. package/dist/lib/core/ast/parser-init.d.ts +33 -0
  139. package/dist/lib/core/ast/parser-init.d.ts.map +1 -0
  140. package/dist/lib/core/ast/parser-init.js +78 -0
  141. package/dist/lib/core/ast/parser-init.js.map +1 -0
  142. package/dist/lib/core/capability/CapabilityProbe.d.ts +105 -0
  143. package/dist/lib/core/capability/CapabilityProbe.d.ts.map +1 -0
  144. package/dist/lib/core/capability/CapabilityProbe.js +242 -0
  145. package/dist/lib/core/capability/CapabilityProbe.js.map +1 -0
  146. package/dist/lib/core/constitution/Constitution.d.ts +106 -0
  147. package/dist/lib/core/constitution/Constitution.d.ts.map +1 -0
  148. package/dist/lib/core/constitution/Constitution.js +132 -0
  149. package/dist/lib/core/constitution/Constitution.js.map +1 -0
  150. package/dist/lib/core/constitution/ConstitutionValidator.d.ts +60 -0
  151. package/dist/lib/core/constitution/ConstitutionValidator.d.ts.map +1 -0
  152. package/dist/lib/core/constitution/ConstitutionValidator.js +189 -0
  153. package/dist/lib/core/constitution/ConstitutionValidator.js.map +1 -0
  154. package/dist/lib/core/discovery/DartDiscoverer.d.ts +23 -0
  155. package/dist/lib/core/discovery/DartDiscoverer.d.ts.map +1 -0
  156. package/dist/lib/core/discovery/DartDiscoverer.js +490 -0
  157. package/dist/lib/core/discovery/DartDiscoverer.js.map +1 -0
  158. package/dist/lib/core/discovery/DiscovererRegistry.d.ts +38 -0
  159. package/dist/lib/core/discovery/DiscovererRegistry.d.ts.map +1 -0
  160. package/dist/lib/core/discovery/DiscovererRegistry.js +70 -0
  161. package/dist/lib/core/discovery/DiscovererRegistry.js.map +1 -0
  162. package/dist/lib/core/discovery/GenericDiscoverer.d.ts +27 -0
  163. package/dist/lib/core/discovery/GenericDiscoverer.d.ts.map +1 -0
  164. package/dist/lib/core/discovery/GenericDiscoverer.js +184 -0
  165. package/dist/lib/core/discovery/GenericDiscoverer.js.map +1 -0
  166. package/dist/lib/core/discovery/GoDiscoverer.d.ts +23 -0
  167. package/dist/lib/core/discovery/GoDiscoverer.d.ts.map +1 -0
  168. package/dist/lib/core/discovery/GoDiscoverer.js +507 -0
  169. package/dist/lib/core/discovery/GoDiscoverer.js.map +1 -0
  170. package/dist/lib/core/discovery/JvmDiscoverer.d.ts +25 -0
  171. package/dist/lib/core/discovery/JvmDiscoverer.d.ts.map +1 -0
  172. package/dist/lib/core/discovery/JvmDiscoverer.js +457 -0
  173. package/dist/lib/core/discovery/JvmDiscoverer.js.map +1 -0
  174. package/dist/lib/core/discovery/NodeDiscoverer.d.ts +23 -0
  175. package/dist/lib/core/discovery/NodeDiscoverer.d.ts.map +1 -0
  176. package/dist/lib/core/discovery/NodeDiscoverer.js +440 -0
  177. package/dist/lib/core/discovery/NodeDiscoverer.js.map +1 -0
  178. package/dist/lib/core/discovery/ProjectDiscoverer.d.ts +74 -0
  179. package/dist/lib/core/discovery/ProjectDiscoverer.d.ts.map +1 -0
  180. package/dist/lib/core/discovery/ProjectDiscoverer.js +52 -0
  181. package/dist/lib/core/discovery/ProjectDiscoverer.js.map +1 -0
  182. package/dist/lib/core/discovery/PythonDiscoverer.d.ts +23 -0
  183. package/dist/lib/core/discovery/PythonDiscoverer.d.ts.map +1 -0
  184. package/dist/lib/core/discovery/PythonDiscoverer.js +312 -0
  185. package/dist/lib/core/discovery/PythonDiscoverer.js.map +1 -0
  186. package/dist/lib/core/discovery/RustDiscoverer.d.ts +23 -0
  187. package/dist/lib/core/discovery/RustDiscoverer.d.ts.map +1 -0
  188. package/dist/lib/core/discovery/RustDiscoverer.js +492 -0
  189. package/dist/lib/core/discovery/RustDiscoverer.js.map +1 -0
  190. package/dist/lib/core/discovery/index.d.ts +25 -0
  191. package/dist/lib/core/discovery/index.d.ts.map +1 -0
  192. package/dist/lib/core/discovery/index.js +52 -0
  193. package/dist/lib/core/discovery/index.js.map +1 -0
  194. package/dist/lib/core/enhancement/EnhancementPack.d.ts +145 -0
  195. package/dist/lib/core/enhancement/EnhancementPack.d.ts.map +1 -0
  196. package/dist/lib/core/enhancement/EnhancementPack.js +64 -0
  197. package/dist/lib/core/enhancement/EnhancementPack.js.map +1 -0
  198. package/dist/lib/core/enhancement/EnhancementRegistry.d.ts +28 -0
  199. package/dist/lib/core/enhancement/EnhancementRegistry.d.ts.map +1 -0
  200. package/dist/lib/core/enhancement/EnhancementRegistry.js +43 -0
  201. package/dist/lib/core/enhancement/EnhancementRegistry.js.map +1 -0
  202. package/dist/lib/core/enhancement/android-enhancement.d.ts +30 -0
  203. package/dist/lib/core/enhancement/android-enhancement.d.ts.map +1 -0
  204. package/dist/lib/core/enhancement/android-enhancement.js +95 -0
  205. package/dist/lib/core/enhancement/android-enhancement.js.map +1 -0
  206. package/dist/lib/core/enhancement/django-enhancement.d.ts +48 -0
  207. package/dist/lib/core/enhancement/django-enhancement.d.ts.map +1 -0
  208. package/dist/lib/core/enhancement/django-enhancement.js +216 -0
  209. package/dist/lib/core/enhancement/django-enhancement.js.map +1 -0
  210. package/dist/lib/core/enhancement/fastapi-enhancement.d.ts +46 -0
  211. package/dist/lib/core/enhancement/fastapi-enhancement.d.ts.map +1 -0
  212. package/dist/lib/core/enhancement/fastapi-enhancement.js +189 -0
  213. package/dist/lib/core/enhancement/fastapi-enhancement.js.map +1 -0
  214. package/dist/lib/core/enhancement/go-grpc-enhancement.d.ts +45 -0
  215. package/dist/lib/core/enhancement/go-grpc-enhancement.d.ts.map +1 -0
  216. package/dist/lib/core/enhancement/go-grpc-enhancement.js +140 -0
  217. package/dist/lib/core/enhancement/go-grpc-enhancement.js.map +1 -0
  218. package/dist/lib/core/enhancement/go-web-enhancement.d.ts +42 -0
  219. package/dist/lib/core/enhancement/go-web-enhancement.d.ts.map +1 -0
  220. package/dist/lib/core/enhancement/go-web-enhancement.js +186 -0
  221. package/dist/lib/core/enhancement/go-web-enhancement.js.map +1 -0
  222. package/dist/lib/core/enhancement/index.d.ts +25 -0
  223. package/dist/lib/core/enhancement/index.d.ts.map +1 -0
  224. package/dist/lib/core/enhancement/index.js +63 -0
  225. package/dist/lib/core/enhancement/index.js.map +1 -0
  226. package/dist/lib/core/enhancement/langchain-enhancement.d.ts +47 -0
  227. package/dist/lib/core/enhancement/langchain-enhancement.d.ts.map +1 -0
  228. package/dist/lib/core/enhancement/langchain-enhancement.js +210 -0
  229. package/dist/lib/core/enhancement/langchain-enhancement.js.map +1 -0
  230. package/dist/lib/core/enhancement/ml-enhancement.d.ts +47 -0
  231. package/dist/lib/core/enhancement/ml-enhancement.d.ts.map +1 -0
  232. package/dist/lib/core/enhancement/ml-enhancement.js +240 -0
  233. package/dist/lib/core/enhancement/ml-enhancement.js.map +1 -0
  234. package/dist/lib/core/enhancement/nextjs-enhancement.d.ts +47 -0
  235. package/dist/lib/core/enhancement/nextjs-enhancement.d.ts.map +1 -0
  236. package/dist/lib/core/enhancement/nextjs-enhancement.js +201 -0
  237. package/dist/lib/core/enhancement/nextjs-enhancement.js.map +1 -0
  238. package/dist/lib/core/enhancement/node-server-enhancement.d.ts +45 -0
  239. package/dist/lib/core/enhancement/node-server-enhancement.d.ts.map +1 -0
  240. package/dist/lib/core/enhancement/node-server-enhancement.js +242 -0
  241. package/dist/lib/core/enhancement/node-server-enhancement.js.map +1 -0
  242. package/dist/lib/core/enhancement/react-enhancement.d.ts +46 -0
  243. package/dist/lib/core/enhancement/react-enhancement.d.ts.map +1 -0
  244. package/dist/lib/core/enhancement/react-enhancement.js +229 -0
  245. package/dist/lib/core/enhancement/react-enhancement.js.map +1 -0
  246. package/dist/lib/core/enhancement/rust-tokio-enhancement.d.ts +47 -0
  247. package/dist/lib/core/enhancement/rust-tokio-enhancement.d.ts.map +1 -0
  248. package/dist/lib/core/enhancement/rust-tokio-enhancement.js +207 -0
  249. package/dist/lib/core/enhancement/rust-tokio-enhancement.js.map +1 -0
  250. package/dist/lib/core/enhancement/rust-web-enhancement.d.ts +45 -0
  251. package/dist/lib/core/enhancement/rust-web-enhancement.d.ts.map +1 -0
  252. package/dist/lib/core/enhancement/rust-web-enhancement.js +229 -0
  253. package/dist/lib/core/enhancement/rust-web-enhancement.js.map +1 -0
  254. package/dist/lib/core/enhancement/spring-enhancement.d.ts +39 -0
  255. package/dist/lib/core/enhancement/spring-enhancement.d.ts.map +1 -0
  256. package/dist/lib/core/enhancement/spring-enhancement.js +108 -0
  257. package/dist/lib/core/enhancement/spring-enhancement.js.map +1 -0
  258. package/dist/lib/core/enhancement/vue-enhancement.d.ts +54 -0
  259. package/dist/lib/core/enhancement/vue-enhancement.d.ts.map +1 -0
  260. package/dist/lib/core/enhancement/vue-enhancement.js +214 -0
  261. package/dist/lib/core/enhancement/vue-enhancement.js.map +1 -0
  262. package/dist/lib/core/gateway/Gateway.d.ts +135 -0
  263. package/dist/lib/core/gateway/Gateway.d.ts.map +1 -0
  264. package/dist/lib/core/gateway/Gateway.js +261 -0
  265. package/dist/lib/core/gateway/Gateway.js.map +1 -0
  266. package/dist/lib/core/gateway/GatewayActionRegistry.d.ts +35 -0
  267. package/dist/lib/core/gateway/GatewayActionRegistry.d.ts.map +1 -0
  268. package/dist/lib/core/gateway/GatewayActionRegistry.js +195 -0
  269. package/dist/lib/core/gateway/GatewayActionRegistry.js.map +1 -0
  270. package/dist/lib/core/permission/PermissionManager.d.ts +63 -0
  271. package/dist/lib/core/permission/PermissionManager.d.ts.map +1 -0
  272. package/dist/lib/core/permission/PermissionManager.js +221 -0
  273. package/dist/lib/core/permission/PermissionManager.js.map +1 -0
  274. package/dist/lib/domain/index.d.ts +14 -0
  275. package/dist/lib/domain/index.d.ts.map +1 -0
  276. package/dist/lib/domain/index.js +16 -0
  277. package/dist/lib/domain/index.js.map +1 -0
  278. package/dist/lib/domain/knowledge/KnowledgeEntry.d.ts +297 -0
  279. package/dist/lib/domain/knowledge/KnowledgeEntry.d.ts.map +1 -0
  280. package/dist/lib/domain/knowledge/KnowledgeEntry.js +315 -0
  281. package/dist/lib/domain/knowledge/KnowledgeEntry.js.map +1 -0
  282. package/dist/lib/domain/knowledge/KnowledgeRepository.d.ts +36 -0
  283. package/dist/lib/domain/knowledge/KnowledgeRepository.d.ts.map +1 -0
  284. package/dist/lib/domain/knowledge/KnowledgeRepository.js +46 -0
  285. package/dist/lib/domain/knowledge/KnowledgeRepository.js.map +1 -0
  286. package/dist/lib/domain/knowledge/Lifecycle.d.ts +50 -0
  287. package/dist/lib/domain/knowledge/Lifecycle.d.ts.map +1 -0
  288. package/dist/lib/domain/knowledge/Lifecycle.js +91 -0
  289. package/dist/lib/domain/knowledge/Lifecycle.js.map +1 -0
  290. package/dist/lib/domain/knowledge/index.d.ts +13 -0
  291. package/dist/lib/domain/knowledge/index.d.ts.map +1 -0
  292. package/dist/lib/domain/knowledge/index.js +17 -0
  293. package/dist/lib/domain/knowledge/index.js.map +1 -0
  294. package/dist/lib/domain/knowledge/values/Constraints.d.ts +84 -0
  295. package/dist/lib/domain/knowledge/values/Constraints.d.ts.map +1 -0
  296. package/dist/lib/domain/knowledge/values/Constraints.js +115 -0
  297. package/dist/lib/domain/knowledge/values/Constraints.js.map +1 -0
  298. package/dist/lib/domain/knowledge/values/Content.d.ts +92 -0
  299. package/dist/lib/domain/knowledge/values/Content.d.ts.map +1 -0
  300. package/dist/lib/domain/knowledge/values/Content.js +74 -0
  301. package/dist/lib/domain/knowledge/values/Content.js.map +1 -0
  302. package/dist/lib/domain/knowledge/values/Quality.d.ts +55 -0
  303. package/dist/lib/domain/knowledge/values/Quality.d.ts.map +1 -0
  304. package/dist/lib/domain/knowledge/values/Quality.js +90 -0
  305. package/dist/lib/domain/knowledge/values/Quality.js.map +1 -0
  306. package/dist/lib/domain/knowledge/values/Reasoning.d.ts +47 -0
  307. package/dist/lib/domain/knowledge/values/Reasoning.d.ts.map +1 -0
  308. package/dist/lib/domain/knowledge/values/Reasoning.js +75 -0
  309. package/dist/lib/domain/knowledge/values/Reasoning.js.map +1 -0
  310. package/dist/lib/domain/knowledge/values/Relations.d.ts +72 -0
  311. package/dist/lib/domain/knowledge/values/Relations.d.ts.map +1 -0
  312. package/dist/lib/domain/knowledge/values/Relations.js +152 -0
  313. package/dist/lib/domain/knowledge/values/Relations.js.map +1 -0
  314. package/dist/lib/domain/knowledge/values/Stats.d.ts +55 -0
  315. package/dist/lib/domain/knowledge/values/Stats.d.ts.map +1 -0
  316. package/dist/lib/domain/knowledge/values/Stats.js +74 -0
  317. package/dist/lib/domain/knowledge/values/Stats.js.map +1 -0
  318. package/dist/lib/domain/knowledge/values/index.d.ts +10 -0
  319. package/dist/lib/domain/knowledge/values/index.d.ts.map +1 -0
  320. package/dist/lib/domain/knowledge/values/index.js +10 -0
  321. package/dist/lib/domain/knowledge/values/index.js.map +1 -0
  322. package/dist/lib/domain/snippet/Snippet.d.ts +95 -0
  323. package/dist/lib/domain/snippet/Snippet.d.ts.map +1 -0
  324. package/dist/lib/domain/snippet/Snippet.js +110 -0
  325. package/dist/lib/domain/snippet/Snippet.js.map +1 -0
  326. package/dist/lib/domain/task/Task.d.ts +145 -0
  327. package/dist/lib/domain/task/Task.d.ts.map +1 -0
  328. package/dist/lib/domain/task/Task.js +259 -0
  329. package/dist/lib/domain/task/Task.js.map +1 -0
  330. package/dist/lib/domain/task/TaskDependency.d.ts +32 -0
  331. package/dist/lib/domain/task/TaskDependency.d.ts.map +1 -0
  332. package/dist/lib/domain/task/TaskDependency.js +43 -0
  333. package/dist/lib/domain/task/TaskDependency.js.map +1 -0
  334. package/dist/lib/domain/task/TaskIdGenerator.d.ts +43 -0
  335. package/dist/lib/domain/task/TaskIdGenerator.d.ts.map +1 -0
  336. package/dist/lib/domain/task/TaskIdGenerator.js +78 -0
  337. package/dist/lib/domain/task/TaskIdGenerator.js.map +1 -0
  338. package/dist/lib/domain/task/index.d.ts +7 -0
  339. package/dist/lib/domain/task/index.d.ts.map +1 -0
  340. package/dist/lib/domain/task/index.js +7 -0
  341. package/dist/lib/domain/task/index.js.map +1 -0
  342. package/dist/lib/external/ai/AiFactory.d.ts +66 -0
  343. package/dist/lib/external/ai/AiFactory.d.ts.map +1 -0
  344. package/dist/lib/external/ai/AiFactory.js +219 -0
  345. package/dist/lib/external/ai/AiFactory.js.map +1 -0
  346. package/dist/lib/external/ai/AiProvider.d.ts +311 -0
  347. package/dist/lib/external/ai/AiProvider.d.ts.map +1 -0
  348. package/dist/lib/external/ai/AiProvider.js +756 -0
  349. package/dist/lib/external/ai/AiProvider.js.map +1 -0
  350. package/dist/lib/external/ai/providers/ClaudeProvider.d.ts +40 -0
  351. package/dist/lib/external/ai/providers/ClaudeProvider.d.ts.map +1 -0
  352. package/dist/lib/external/ai/providers/ClaudeProvider.js +269 -0
  353. package/dist/lib/external/ai/providers/ClaudeProvider.js.map +1 -0
  354. package/dist/lib/external/ai/providers/GoogleGeminiProvider.d.ts +46 -0
  355. package/dist/lib/external/ai/providers/GoogleGeminiProvider.d.ts.map +1 -0
  356. package/dist/lib/external/ai/providers/GoogleGeminiProvider.js +402 -0
  357. package/dist/lib/external/ai/providers/GoogleGeminiProvider.js.map +1 -0
  358. package/dist/lib/external/ai/providers/MockProvider.d.ts +34 -0
  359. package/dist/lib/external/ai/providers/MockProvider.d.ts.map +1 -0
  360. package/dist/lib/external/ai/providers/MockProvider.js +59 -0
  361. package/dist/lib/external/ai/providers/MockProvider.js.map +1 -0
  362. package/dist/lib/external/ai/providers/OpenAiProvider.d.ts +43 -0
  363. package/dist/lib/external/ai/providers/OpenAiProvider.d.ts.map +1 -0
  364. package/dist/lib/external/ai/providers/OpenAiProvider.js +271 -0
  365. package/dist/lib/external/ai/providers/OpenAiProvider.js.map +1 -0
  366. package/dist/lib/external/mcp/McpServer.d.ts +127 -0
  367. package/dist/lib/external/mcp/McpServer.d.ts.map +1 -0
  368. package/dist/lib/external/mcp/McpServer.js +429 -0
  369. package/dist/lib/external/mcp/McpServer.js.map +1 -0
  370. package/dist/lib/external/mcp/autoApproveInjector.d.ts +59 -0
  371. package/dist/lib/external/mcp/autoApproveInjector.d.ts.map +1 -0
  372. package/dist/lib/external/mcp/autoApproveInjector.js +148 -0
  373. package/dist/lib/external/mcp/autoApproveInjector.js.map +1 -0
  374. package/dist/lib/external/mcp/envelope.d.ts +41 -0
  375. package/dist/lib/external/mcp/envelope.d.ts.map +1 -0
  376. package/dist/lib/external/mcp/envelope.js +24 -0
  377. package/dist/lib/external/mcp/envelope.js.map +1 -0
  378. package/dist/lib/external/mcp/errorHandler.d.ts +33 -0
  379. package/dist/lib/external/mcp/errorHandler.d.ts.map +1 -0
  380. package/dist/lib/external/mcp/errorHandler.js +123 -0
  381. package/dist/lib/external/mcp/errorHandler.js.map +1 -0
  382. package/dist/lib/external/mcp/handlers/LanguageExtensions.d.ts +33 -0
  383. package/dist/lib/external/mcp/handlers/LanguageExtensions.d.ts.map +1 -0
  384. package/dist/lib/external/mcp/handlers/LanguageExtensions.js +941 -0
  385. package/dist/lib/external/mcp/handlers/LanguageExtensions.js.map +1 -0
  386. package/dist/lib/external/mcp/handlers/TargetClassifier.d.ts +12 -0
  387. package/dist/lib/external/mcp/handlers/TargetClassifier.d.ts.map +1 -0
  388. package/dist/lib/external/mcp/handlers/TargetClassifier.js +69 -0
  389. package/dist/lib/external/mcp/handlers/TargetClassifier.js.map +1 -0
  390. package/dist/lib/external/mcp/handlers/bootstrap/BootstrapSession.d.ts +165 -0
  391. package/dist/lib/external/mcp/handlers/bootstrap/BootstrapSession.d.ts.map +1 -0
  392. package/dist/lib/external/mcp/handlers/bootstrap/BootstrapSession.js +230 -0
  393. package/dist/lib/external/mcp/handlers/bootstrap/BootstrapSession.js.map +1 -0
  394. package/dist/lib/external/mcp/handlers/bootstrap/ExternalSubmissionTracker.d.ts +186 -0
  395. package/dist/lib/external/mcp/handlers/bootstrap/ExternalSubmissionTracker.d.ts.map +1 -0
  396. package/dist/lib/external/mcp/handlers/bootstrap/ExternalSubmissionTracker.js +317 -0
  397. package/dist/lib/external/mcp/handlers/bootstrap/ExternalSubmissionTracker.js.map +1 -0
  398. package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.d.ts +299 -0
  399. package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.d.ts.map +1 -0
  400. package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.js +817 -0
  401. package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.js.map +1 -0
  402. package/dist/lib/external/mcp/handlers/bootstrap/base-dimensions.d.ts +110 -0
  403. package/dist/lib/external/mcp/handlers/bootstrap/base-dimensions.d.ts.map +1 -0
  404. package/dist/lib/external/mcp/handlers/bootstrap/base-dimensions.js +219 -0
  405. package/dist/lib/external/mcp/handlers/bootstrap/base-dimensions.js.map +1 -0
  406. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/BootstrapSnapshot.d.ts +168 -0
  407. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/BootstrapSnapshot.d.ts.map +1 -0
  408. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/BootstrapSnapshot.js +535 -0
  409. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/BootstrapSnapshot.js.map +1 -0
  410. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/IncrementalBootstrap.d.ts +87 -0
  411. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/IncrementalBootstrap.d.ts.map +1 -0
  412. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/IncrementalBootstrap.js +190 -0
  413. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/IncrementalBootstrap.js.map +1 -0
  414. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/checkpoint.d.ts +33 -0
  415. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/checkpoint.d.ts.map +1 -0
  416. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/checkpoint.js +86 -0
  417. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/checkpoint.js.map +1 -0
  418. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-configs.d.ts +148 -0
  419. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-configs.d.ts.map +1 -0
  420. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-configs.js +186 -0
  421. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-configs.js.map +1 -0
  422. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-context.d.ts +154 -0
  423. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-context.d.ts.map +1 -0
  424. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-context.js +213 -0
  425. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/dimension-context.js.map +1 -0
  426. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/noAiFallback.d.ts +170 -0
  427. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/noAiFallback.d.ts.map +1 -0
  428. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/noAiFallback.js +728 -0
  429. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/noAiFallback.js.map +1 -0
  430. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.d.ts +53 -0
  431. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.d.ts.map +1 -0
  432. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.js +1287 -0
  433. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.js.map +1 -0
  434. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/tier-scheduler.d.ts +65 -0
  435. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/tier-scheduler.d.ts.map +1 -0
  436. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/tier-scheduler.js +154 -0
  437. package/dist/lib/external/mcp/handlers/bootstrap/pipeline/tier-scheduler.js.map +1 -0
  438. package/dist/lib/external/mcp/handlers/bootstrap/refine.d.ts +35 -0
  439. package/dist/lib/external/mcp/handlers/bootstrap/refine.d.ts.map +1 -0
  440. package/dist/lib/external/mcp/handlers/bootstrap/refine.js +343 -0
  441. package/dist/lib/external/mcp/handlers/bootstrap/refine.js.map +1 -0
  442. package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.d.ts +378 -0
  443. package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.d.ts.map +1 -0
  444. package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.js +786 -0
  445. package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.js.map +1 -0
  446. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-sop.d.ts +371 -0
  447. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-sop.d.ts.map +1 -0
  448. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-sop.js +809 -0
  449. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-sop.js.map +1 -0
  450. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-text.d.ts +172 -0
  451. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-text.d.ts.map +1 -0
  452. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-text.js +212 -0
  453. package/dist/lib/external/mcp/handlers/bootstrap/shared/dimension-text.js.map +1 -0
  454. package/dist/lib/external/mcp/handlers/bootstrap/shared/skill-generator.d.ts +43 -0
  455. package/dist/lib/external/mcp/handlers/bootstrap/shared/skill-generator.d.ts.map +1 -0
  456. package/dist/lib/external/mcp/handlers/bootstrap/shared/skill-generator.js +237 -0
  457. package/dist/lib/external/mcp/handlers/bootstrap/shared/skill-generator.js.map +1 -0
  458. package/dist/lib/external/mcp/handlers/bootstrap/skills.d.ts +68 -0
  459. package/dist/lib/external/mcp/handlers/bootstrap/skills.d.ts.map +1 -0
  460. package/dist/lib/external/mcp/handlers/bootstrap/skills.js +102 -0
  461. package/dist/lib/external/mcp/handlers/bootstrap/skills.js.map +1 -0
  462. package/dist/lib/external/mcp/handlers/bootstrap-external.d.ts +82 -0
  463. package/dist/lib/external/mcp/handlers/bootstrap-external.d.ts.map +1 -0
  464. package/dist/lib/external/mcp/handlers/bootstrap-external.js +180 -0
  465. package/dist/lib/external/mcp/handlers/bootstrap-external.js.map +1 -0
  466. package/dist/lib/external/mcp/handlers/bootstrap-internal.d.ts +111 -0
  467. package/dist/lib/external/mcp/handlers/bootstrap-internal.d.ts.map +1 -0
  468. package/dist/lib/external/mcp/handlers/bootstrap-internal.js +393 -0
  469. package/dist/lib/external/mcp/handlers/bootstrap-internal.js.map +1 -0
  470. package/dist/lib/external/mcp/handlers/browse.d.ts +151 -0
  471. package/dist/lib/external/mcp/handlers/browse.d.ts.map +1 -0
  472. package/dist/lib/external/mcp/handlers/browse.js +287 -0
  473. package/dist/lib/external/mcp/handlers/browse.js.map +1 -0
  474. package/dist/lib/external/mcp/handlers/candidate.d.ts +66 -0
  475. package/dist/lib/external/mcp/handlers/candidate.d.ts.map +1 -0
  476. package/dist/lib/external/mcp/handlers/candidate.js +225 -0
  477. package/dist/lib/external/mcp/handlers/candidate.js.map +1 -0
  478. package/dist/lib/external/mcp/handlers/consolidated.d.ts +446 -0
  479. package/dist/lib/external/mcp/handlers/consolidated.d.ts.map +1 -0
  480. package/dist/lib/external/mcp/handlers/consolidated.js +292 -0
  481. package/dist/lib/external/mcp/handlers/consolidated.js.map +1 -0
  482. package/dist/lib/external/mcp/handlers/dimension-complete-external.d.ts +57 -0
  483. package/dist/lib/external/mcp/handlers/dimension-complete-external.d.ts.map +1 -0
  484. package/dist/lib/external/mcp/handlers/dimension-complete-external.js +407 -0
  485. package/dist/lib/external/mcp/handlers/dimension-complete-external.js.map +1 -0
  486. package/dist/lib/external/mcp/handlers/guard.d.ts +275 -0
  487. package/dist/lib/external/mcp/handlers/guard.d.ts.map +1 -0
  488. package/dist/lib/external/mcp/handlers/guard.js +619 -0
  489. package/dist/lib/external/mcp/handlers/guard.js.map +1 -0
  490. package/dist/lib/external/mcp/handlers/knowledge.d.ts +110 -0
  491. package/dist/lib/external/mcp/handlers/knowledge.d.ts.map +1 -0
  492. package/dist/lib/external/mcp/handlers/knowledge.js +338 -0
  493. package/dist/lib/external/mcp/handlers/knowledge.js.map +1 -0
  494. package/dist/lib/external/mcp/handlers/search.d.ts +139 -0
  495. package/dist/lib/external/mcp/handlers/search.d.ts.map +1 -0
  496. package/dist/lib/external/mcp/handlers/search.js +265 -0
  497. package/dist/lib/external/mcp/handlers/search.js.map +1 -0
  498. package/dist/lib/external/mcp/handlers/skill.d.ts +83 -0
  499. package/dist/lib/external/mcp/handlers/skill.d.ts.map +1 -0
  500. package/dist/lib/external/mcp/handlers/skill.js +633 -0
  501. package/dist/lib/external/mcp/handlers/skill.js.map +1 -0
  502. package/dist/lib/external/mcp/handlers/structure.d.ts +189 -0
  503. package/dist/lib/external/mcp/handlers/structure.d.ts.map +1 -0
  504. package/dist/lib/external/mcp/handlers/structure.js +596 -0
  505. package/dist/lib/external/mcp/handlers/structure.js.map +1 -0
  506. package/dist/lib/external/mcp/handlers/system.d.ts +95 -0
  507. package/dist/lib/external/mcp/handlers/system.d.ts.map +1 -0
  508. package/dist/lib/external/mcp/handlers/system.js +260 -0
  509. package/dist/lib/external/mcp/handlers/system.js.map +1 -0
  510. package/dist/lib/external/mcp/handlers/task.d.ts +58 -0
  511. package/dist/lib/external/mcp/handlers/task.d.ts.map +1 -0
  512. package/dist/lib/external/mcp/handlers/task.js +652 -0
  513. package/dist/lib/external/mcp/handlers/task.js.map +1 -0
  514. package/dist/lib/external/mcp/handlers/types.d.ts +325 -0
  515. package/dist/lib/external/mcp/handlers/types.d.ts.map +1 -0
  516. package/dist/lib/external/mcp/handlers/types.js +6 -0
  517. package/dist/lib/external/mcp/handlers/types.js.map +1 -0
  518. package/dist/lib/external/mcp/handlers/wiki-external.d.ts +93 -0
  519. package/dist/lib/external/mcp/handlers/wiki-external.d.ts.map +1 -0
  520. package/dist/lib/external/mcp/handlers/wiki-external.js +572 -0
  521. package/dist/lib/external/mcp/handlers/wiki-external.js.map +1 -0
  522. package/dist/lib/external/mcp/tools.d.ts +75 -0
  523. package/dist/lib/external/mcp/tools.d.ts.map +1 -0
  524. package/dist/lib/external/mcp/tools.js +241 -0
  525. package/dist/lib/external/mcp/tools.js.map +1 -0
  526. package/dist/lib/external/mcp/zodToMcpSchema.d.ts +32 -0
  527. package/dist/lib/external/mcp/zodToMcpSchema.d.ts.map +1 -0
  528. package/dist/lib/external/mcp/zodToMcpSchema.js +84 -0
  529. package/dist/lib/external/mcp/zodToMcpSchema.js.map +1 -0
  530. package/dist/lib/http/HttpServer.d.ts +83 -0
  531. package/dist/lib/http/HttpServer.d.ts.map +1 -0
  532. package/dist/lib/http/HttpServer.js +437 -0
  533. package/dist/lib/http/HttpServer.js.map +1 -0
  534. package/dist/lib/http/api-spec.d.ts +232 -0
  535. package/dist/lib/http/api-spec.d.ts.map +1 -0
  536. package/dist/lib/http/api-spec.js +191 -0
  537. package/dist/lib/http/api-spec.js.map +1 -0
  538. package/dist/lib/http/middleware/RateLimiter.d.ts +31 -0
  539. package/dist/lib/http/middleware/RateLimiter.d.ts.map +1 -0
  540. package/dist/lib/http/middleware/RateLimiter.js +60 -0
  541. package/dist/lib/http/middleware/RateLimiter.js.map +1 -0
  542. package/dist/lib/http/middleware/errorHandler.d.ts +25 -0
  543. package/dist/lib/http/middleware/errorHandler.d.ts.map +1 -0
  544. package/dist/lib/http/middleware/errorHandler.js +72 -0
  545. package/dist/lib/http/middleware/errorHandler.js.map +1 -0
  546. package/dist/lib/http/middleware/gatewayMiddleware.d.ts +17 -0
  547. package/dist/lib/http/middleware/gatewayMiddleware.d.ts.map +1 -0
  548. package/dist/lib/http/middleware/gatewayMiddleware.js +63 -0
  549. package/dist/lib/http/middleware/gatewayMiddleware.js.map +1 -0
  550. package/dist/lib/http/middleware/requestLogger.d.ts +25 -0
  551. package/dist/lib/http/middleware/requestLogger.d.ts.map +1 -0
  552. package/dist/lib/http/middleware/requestLogger.js +67 -0
  553. package/dist/lib/http/middleware/requestLogger.js.map +1 -0
  554. package/dist/lib/http/middleware/roleResolver.d.ts +23 -0
  555. package/dist/lib/http/middleware/roleResolver.d.ts.map +1 -0
  556. package/dist/lib/http/middleware/roleResolver.js +107 -0
  557. package/dist/lib/http/middleware/roleResolver.js.map +1 -0
  558. package/dist/lib/http/middleware/validate.d.ts +41 -0
  559. package/dist/lib/http/middleware/validate.d.ts.map +1 -0
  560. package/dist/lib/http/middleware/validate.js +92 -0
  561. package/dist/lib/http/middleware/validate.js.map +1 -0
  562. package/dist/lib/http/routes/ai.d.ts +7 -0
  563. package/dist/lib/http/routes/ai.d.ts.map +1 -0
  564. package/dist/lib/http/routes/ai.js +763 -0
  565. package/dist/lib/http/routes/ai.js.map +1 -0
  566. package/dist/lib/http/routes/auth.d.ts +15 -0
  567. package/dist/lib/http/routes/auth.d.ts.map +1 -0
  568. package/dist/lib/http/routes/auth.js +125 -0
  569. package/dist/lib/http/routes/auth.js.map +1 -0
  570. package/dist/lib/http/routes/candidates.d.ts +7 -0
  571. package/dist/lib/http/routes/candidates.d.ts.map +1 -0
  572. package/dist/lib/http/routes/candidates.js +720 -0
  573. package/dist/lib/http/routes/candidates.js.map +1 -0
  574. package/dist/lib/http/routes/commands.d.ts +7 -0
  575. package/dist/lib/http/routes/commands.d.ts.map +1 -0
  576. package/dist/lib/http/routes/commands.js +280 -0
  577. package/dist/lib/http/routes/commands.js.map +1 -0
  578. package/dist/lib/http/routes/extract.d.ts +7 -0
  579. package/dist/lib/http/routes/extract.d.ts.map +1 -0
  580. package/dist/lib/http/routes/extract.js +162 -0
  581. package/dist/lib/http/routes/extract.js.map +1 -0
  582. package/dist/lib/http/routes/guard.d.ts +13 -0
  583. package/dist/lib/http/routes/guard.d.ts.map +1 -0
  584. package/dist/lib/http/routes/guard.js +227 -0
  585. package/dist/lib/http/routes/guard.js.map +1 -0
  586. package/dist/lib/http/routes/guardRules.d.ts +7 -0
  587. package/dist/lib/http/routes/guardRules.d.ts.map +1 -0
  588. package/dist/lib/http/routes/guardRules.js +306 -0
  589. package/dist/lib/http/routes/guardRules.js.map +1 -0
  590. package/dist/lib/http/routes/health.d.ts +6 -0
  591. package/dist/lib/http/routes/health.d.ts.map +1 -0
  592. package/dist/lib/http/routes/health.js +31 -0
  593. package/dist/lib/http/routes/health.js.map +1 -0
  594. package/dist/lib/http/routes/knowledge.d.ts +8 -0
  595. package/dist/lib/http/routes/knowledge.d.ts.map +1 -0
  596. package/dist/lib/http/routes/knowledge.js +213 -0
  597. package/dist/lib/http/routes/knowledge.js.map +1 -0
  598. package/dist/lib/http/routes/modules.d.ts +9 -0
  599. package/dist/lib/http/routes/modules.d.ts.map +1 -0
  600. package/dist/lib/http/routes/modules.js +458 -0
  601. package/dist/lib/http/routes/modules.js.map +1 -0
  602. package/dist/lib/http/routes/monitoring.d.ts +7 -0
  603. package/dist/lib/http/routes/monitoring.d.ts.map +1 -0
  604. package/dist/lib/http/routes/monitoring.js +311 -0
  605. package/dist/lib/http/routes/monitoring.js.map +1 -0
  606. package/dist/lib/http/routes/recipes.d.ts +10 -0
  607. package/dist/lib/http/routes/recipes.d.ts.map +1 -0
  608. package/dist/lib/http/routes/recipes.js +144 -0
  609. package/dist/lib/http/routes/recipes.js.map +1 -0
  610. package/dist/lib/http/routes/remote.d.ts +41 -0
  611. package/dist/lib/http/routes/remote.d.ts.map +1 -0
  612. package/dist/lib/http/routes/remote.js +967 -0
  613. package/dist/lib/http/routes/remote.js.map +1 -0
  614. package/dist/lib/http/routes/search.d.ts +7 -0
  615. package/dist/lib/http/routes/search.d.ts.map +1 -0
  616. package/dist/lib/http/routes/search.js +330 -0
  617. package/dist/lib/http/routes/search.js.map +1 -0
  618. package/dist/lib/http/routes/skills.d.ts +7 -0
  619. package/dist/lib/http/routes/skills.d.ts.map +1 -0
  620. package/dist/lib/http/routes/skills.js +196 -0
  621. package/dist/lib/http/routes/skills.js.map +1 -0
  622. package/dist/lib/http/routes/snippets.d.ts +7 -0
  623. package/dist/lib/http/routes/snippets.d.ts.map +1 -0
  624. package/dist/lib/http/routes/snippets.js +50 -0
  625. package/dist/lib/http/routes/snippets.js.map +1 -0
  626. package/dist/lib/http/routes/task.d.ts +13 -0
  627. package/dist/lib/http/routes/task.d.ts.map +1 -0
  628. package/dist/lib/http/routes/task.js +383 -0
  629. package/dist/lib/http/routes/task.js.map +1 -0
  630. package/dist/lib/http/routes/violations.d.ts +7 -0
  631. package/dist/lib/http/routes/violations.d.ts.map +1 -0
  632. package/dist/lib/http/routes/violations.js +70 -0
  633. package/dist/lib/http/routes/violations.js.map +1 -0
  634. package/dist/lib/http/routes/wiki.d.ts +27 -0
  635. package/dist/lib/http/routes/wiki.d.ts.map +1 -0
  636. package/dist/lib/http/routes/wiki.js +312 -0
  637. package/dist/lib/http/routes/wiki.js.map +1 -0
  638. package/dist/lib/http/utils/routeHelpers.d.ts +48 -0
  639. package/dist/lib/http/utils/routeHelpers.d.ts.map +1 -0
  640. package/dist/lib/http/utils/routeHelpers.js +61 -0
  641. package/dist/lib/http/utils/routeHelpers.js.map +1 -0
  642. package/dist/lib/http/utils/sse-sessions.d.ts +59 -0
  643. package/dist/lib/http/utils/sse-sessions.d.ts.map +1 -0
  644. package/dist/lib/http/utils/sse-sessions.js +111 -0
  645. package/dist/lib/http/utils/sse-sessions.js.map +1 -0
  646. package/dist/lib/http/utils/sse.d.ts +50 -0
  647. package/dist/lib/http/utils/sse.d.ts.map +1 -0
  648. package/dist/lib/http/utils/sse.js +125 -0
  649. package/dist/lib/http/utils/sse.js.map +1 -0
  650. package/dist/lib/infrastructure/audit/AuditLogger.d.ts +123 -0
  651. package/dist/lib/infrastructure/audit/AuditLogger.d.ts.map +1 -0
  652. package/dist/lib/infrastructure/audit/AuditLogger.js +110 -0
  653. package/dist/lib/infrastructure/audit/AuditLogger.js.map +1 -0
  654. package/dist/lib/infrastructure/audit/AuditStore.d.ts +126 -0
  655. package/dist/lib/infrastructure/audit/AuditStore.d.ts.map +1 -0
  656. package/dist/lib/infrastructure/audit/AuditStore.js +194 -0
  657. package/dist/lib/infrastructure/audit/AuditStore.js.map +1 -0
  658. package/dist/lib/infrastructure/cache/CacheService.d.ts +69 -0
  659. package/dist/lib/infrastructure/cache/CacheService.d.ts.map +1 -0
  660. package/dist/lib/infrastructure/cache/CacheService.js +132 -0
  661. package/dist/lib/infrastructure/cache/CacheService.js.map +1 -0
  662. package/dist/lib/infrastructure/cache/GraphCache.d.ts +66 -0
  663. package/dist/lib/infrastructure/cache/GraphCache.d.ts.map +1 -0
  664. package/dist/lib/infrastructure/cache/GraphCache.js +141 -0
  665. package/dist/lib/infrastructure/cache/GraphCache.js.map +1 -0
  666. package/dist/lib/infrastructure/cache/UnifiedCacheAdapter.d.ts +61 -0
  667. package/dist/lib/infrastructure/cache/UnifiedCacheAdapter.d.ts.map +1 -0
  668. package/dist/lib/infrastructure/cache/UnifiedCacheAdapter.js +110 -0
  669. package/dist/lib/infrastructure/cache/UnifiedCacheAdapter.js.map +1 -0
  670. package/dist/lib/infrastructure/config/ConfigLoader.d.ts +20 -0
  671. package/dist/lib/infrastructure/config/ConfigLoader.d.ts.map +1 -0
  672. package/dist/lib/infrastructure/config/ConfigLoader.js +130 -0
  673. package/dist/lib/infrastructure/config/ConfigLoader.js.map +1 -0
  674. package/dist/lib/infrastructure/config/Defaults.d.ts +76 -0
  675. package/dist/lib/infrastructure/config/Defaults.d.ts.map +1 -0
  676. package/dist/lib/infrastructure/config/Defaults.js +84 -0
  677. package/dist/lib/infrastructure/config/Defaults.js.map +1 -0
  678. package/dist/lib/infrastructure/config/Paths.d.ts +97 -0
  679. package/dist/lib/infrastructure/config/Paths.d.ts.map +1 -0
  680. package/dist/lib/infrastructure/config/Paths.js +154 -0
  681. package/dist/lib/infrastructure/config/Paths.js.map +1 -0
  682. package/dist/lib/infrastructure/config/TriggerSymbol.d.ts +21 -0
  683. package/dist/lib/infrastructure/config/TriggerSymbol.d.ts.map +1 -0
  684. package/dist/lib/infrastructure/config/TriggerSymbol.js +67 -0
  685. package/dist/lib/infrastructure/config/TriggerSymbol.js.map +1 -0
  686. package/dist/lib/infrastructure/database/DatabaseConnection.d.ts +44 -0
  687. package/dist/lib/infrastructure/database/DatabaseConnection.d.ts.map +1 -0
  688. package/dist/lib/infrastructure/database/DatabaseConnection.js +152 -0
  689. package/dist/lib/infrastructure/database/DatabaseConnection.js.map +1 -0
  690. package/dist/lib/infrastructure/database/drizzle/index.d.ts +29 -0
  691. package/dist/lib/infrastructure/database/drizzle/index.d.ts.map +1 -0
  692. package/dist/lib/infrastructure/database/drizzle/index.js +40 -0
  693. package/dist/lib/infrastructure/database/drizzle/index.js.map +1 -0
  694. package/dist/lib/infrastructure/database/drizzle/schema.d.ts +3716 -0
  695. package/dist/lib/infrastructure/database/drizzle/schema.d.ts.map +1 -0
  696. package/dist/lib/infrastructure/database/drizzle/schema.js +373 -0
  697. package/dist/lib/infrastructure/database/drizzle/schema.js.map +1 -0
  698. package/dist/lib/infrastructure/database/migrations/001_initial_schema.d.ts +20 -0
  699. package/dist/lib/infrastructure/database/migrations/001_initial_schema.d.ts.map +1 -0
  700. package/dist/lib/infrastructure/database/migrations/001_initial_schema.js +306 -0
  701. package/dist/lib/infrastructure/database/migrations/001_initial_schema.js.map +1 -0
  702. package/dist/lib/infrastructure/database/migrations/002_add_tasks.d.ts +12 -0
  703. package/dist/lib/infrastructure/database/migrations/002_add_tasks.d.ts.map +1 -0
  704. package/dist/lib/infrastructure/database/migrations/002_add_tasks.js +87 -0
  705. package/dist/lib/infrastructure/database/migrations/002_add_tasks.js.map +1 -0
  706. package/dist/lib/infrastructure/database/migrations/003_add_remote_commands.d.ts +8 -0
  707. package/dist/lib/infrastructure/database/migrations/003_add_remote_commands.d.ts.map +1 -0
  708. package/dist/lib/infrastructure/database/migrations/003_add_remote_commands.js +28 -0
  709. package/dist/lib/infrastructure/database/migrations/003_add_remote_commands.js.map +1 -0
  710. package/dist/lib/infrastructure/event/EventBus.d.ts +45 -0
  711. package/dist/lib/infrastructure/event/EventBus.d.ts.map +1 -0
  712. package/dist/lib/infrastructure/event/EventBus.js +75 -0
  713. package/dist/lib/infrastructure/event/EventBus.js.map +1 -0
  714. package/dist/lib/infrastructure/external/ClipboardManager.d.ts +29 -0
  715. package/dist/lib/infrastructure/external/ClipboardManager.d.ts.map +1 -0
  716. package/dist/lib/infrastructure/external/ClipboardManager.js +151 -0
  717. package/dist/lib/infrastructure/external/ClipboardManager.js.map +1 -0
  718. package/dist/lib/infrastructure/external/NativeUi.d.ts +59 -0
  719. package/dist/lib/infrastructure/external/NativeUi.d.ts.map +1 -0
  720. package/dist/lib/infrastructure/external/NativeUi.js +290 -0
  721. package/dist/lib/infrastructure/external/NativeUi.js.map +1 -0
  722. package/dist/lib/infrastructure/external/OpenBrowser.d.ts +20 -0
  723. package/dist/lib/infrastructure/external/OpenBrowser.d.ts.map +1 -0
  724. package/dist/lib/infrastructure/external/OpenBrowser.js +122 -0
  725. package/dist/lib/infrastructure/external/OpenBrowser.js.map +1 -0
  726. package/dist/lib/infrastructure/logging/Logger.d.ts +34 -0
  727. package/dist/lib/infrastructure/logging/Logger.d.ts.map +1 -0
  728. package/dist/lib/infrastructure/logging/Logger.js +156 -0
  729. package/dist/lib/infrastructure/logging/Logger.js.map +1 -0
  730. package/dist/lib/infrastructure/monitoring/ErrorTracker.d.ts +158 -0
  731. package/dist/lib/infrastructure/monitoring/ErrorTracker.d.ts.map +1 -0
  732. package/dist/lib/infrastructure/monitoring/ErrorTracker.js +295 -0
  733. package/dist/lib/infrastructure/monitoring/ErrorTracker.js.map +1 -0
  734. package/dist/lib/infrastructure/monitoring/PerformanceMonitor.d.ts +121 -0
  735. package/dist/lib/infrastructure/monitoring/PerformanceMonitor.d.ts.map +1 -0
  736. package/dist/lib/infrastructure/monitoring/PerformanceMonitor.js +250 -0
  737. package/dist/lib/infrastructure/monitoring/PerformanceMonitor.js.map +1 -0
  738. package/dist/lib/infrastructure/paths/HeaderResolver.d.ts +45 -0
  739. package/dist/lib/infrastructure/paths/HeaderResolver.d.ts.map +1 -0
  740. package/dist/lib/infrastructure/paths/HeaderResolver.js +102 -0
  741. package/dist/lib/infrastructure/paths/HeaderResolver.js.map +1 -0
  742. package/dist/lib/infrastructure/paths/PathFinder.d.ts +38 -0
  743. package/dist/lib/infrastructure/paths/PathFinder.d.ts.map +1 -0
  744. package/dist/lib/infrastructure/paths/PathFinder.js +127 -0
  745. package/dist/lib/infrastructure/paths/PathFinder.js.map +1 -0
  746. package/dist/lib/infrastructure/realtime/RealtimeService.d.ts +59 -0
  747. package/dist/lib/infrastructure/realtime/RealtimeService.d.ts.map +1 -0
  748. package/dist/lib/infrastructure/realtime/RealtimeService.js +160 -0
  749. package/dist/lib/infrastructure/realtime/RealtimeService.js.map +1 -0
  750. package/dist/lib/infrastructure/vector/ASTChunker.d.ts +73 -0
  751. package/dist/lib/infrastructure/vector/ASTChunker.d.ts.map +1 -0
  752. package/dist/lib/infrastructure/vector/ASTChunker.js +389 -0
  753. package/dist/lib/infrastructure/vector/ASTChunker.js.map +1 -0
  754. package/dist/lib/infrastructure/vector/AsyncPersistence.d.ts +90 -0
  755. package/dist/lib/infrastructure/vector/AsyncPersistence.d.ts.map +1 -0
  756. package/dist/lib/infrastructure/vector/AsyncPersistence.js +292 -0
  757. package/dist/lib/infrastructure/vector/AsyncPersistence.js.map +1 -0
  758. package/dist/lib/infrastructure/vector/BatchEmbedder.d.ts +42 -0
  759. package/dist/lib/infrastructure/vector/BatchEmbedder.d.ts.map +1 -0
  760. package/dist/lib/infrastructure/vector/BatchEmbedder.js +130 -0
  761. package/dist/lib/infrastructure/vector/BatchEmbedder.js.map +1 -0
  762. package/dist/lib/infrastructure/vector/BinaryPersistence.d.ts +169 -0
  763. package/dist/lib/infrastructure/vector/BinaryPersistence.d.ts.map +1 -0
  764. package/dist/lib/infrastructure/vector/BinaryPersistence.js +394 -0
  765. package/dist/lib/infrastructure/vector/BinaryPersistence.js.map +1 -0
  766. package/dist/lib/infrastructure/vector/Chunker.d.ts +34 -0
  767. package/dist/lib/infrastructure/vector/Chunker.d.ts.map +1 -0
  768. package/dist/lib/infrastructure/vector/Chunker.js +203 -0
  769. package/dist/lib/infrastructure/vector/Chunker.js.map +1 -0
  770. package/dist/lib/infrastructure/vector/HnswIndex.d.ts +208 -0
  771. package/dist/lib/infrastructure/vector/HnswIndex.d.ts.map +1 -0
  772. package/dist/lib/infrastructure/vector/HnswIndex.js +660 -0
  773. package/dist/lib/infrastructure/vector/HnswIndex.js.map +1 -0
  774. package/dist/lib/infrastructure/vector/HnswVectorAdapter.d.ts +145 -0
  775. package/dist/lib/infrastructure/vector/HnswVectorAdapter.d.ts.map +1 -0
  776. package/dist/lib/infrastructure/vector/HnswVectorAdapter.js +747 -0
  777. package/dist/lib/infrastructure/vector/HnswVectorAdapter.js.map +1 -0
  778. package/dist/lib/infrastructure/vector/IndexingPipeline.d.ts +68 -0
  779. package/dist/lib/infrastructure/vector/IndexingPipeline.d.ts.map +1 -0
  780. package/dist/lib/infrastructure/vector/IndexingPipeline.js +236 -0
  781. package/dist/lib/infrastructure/vector/IndexingPipeline.js.map +1 -0
  782. package/dist/lib/infrastructure/vector/JsonVectorAdapter.d.ts +80 -0
  783. package/dist/lib/infrastructure/vector/JsonVectorAdapter.d.ts.map +1 -0
  784. package/dist/lib/infrastructure/vector/JsonVectorAdapter.js +253 -0
  785. package/dist/lib/infrastructure/vector/JsonVectorAdapter.js.map +1 -0
  786. package/dist/lib/infrastructure/vector/ScalarQuantizer.d.ts +88 -0
  787. package/dist/lib/infrastructure/vector/ScalarQuantizer.d.ts.map +1 -0
  788. package/dist/lib/infrastructure/vector/ScalarQuantizer.js +202 -0
  789. package/dist/lib/infrastructure/vector/ScalarQuantizer.js.map +1 -0
  790. package/dist/lib/infrastructure/vector/VectorMigration.d.ts +34 -0
  791. package/dist/lib/infrastructure/vector/VectorMigration.d.ts.map +1 -0
  792. package/dist/lib/infrastructure/vector/VectorMigration.js +87 -0
  793. package/dist/lib/infrastructure/vector/VectorMigration.js.map +1 -0
  794. package/dist/lib/infrastructure/vector/VectorStore.d.ts +81 -0
  795. package/dist/lib/infrastructure/vector/VectorStore.d.ts.map +1 -0
  796. package/dist/lib/infrastructure/vector/VectorStore.js +89 -0
  797. package/dist/lib/infrastructure/vector/VectorStore.js.map +1 -0
  798. package/dist/lib/injection/ServiceContainer.d.ts +99 -0
  799. package/dist/lib/injection/ServiceContainer.d.ts.map +1 -0
  800. package/dist/lib/injection/ServiceContainer.js +463 -0
  801. package/dist/lib/injection/ServiceContainer.js.map +1 -0
  802. package/dist/lib/injection/modules/AgentModule.d.ts +11 -0
  803. package/dist/lib/injection/modules/AgentModule.d.ts.map +1 -0
  804. package/dist/lib/injection/modules/AgentModule.js +34 -0
  805. package/dist/lib/injection/modules/AgentModule.js.map +1 -0
  806. package/dist/lib/injection/modules/AppModule.d.ts +20 -0
  807. package/dist/lib/injection/modules/AppModule.d.ts.map +1 -0
  808. package/dist/lib/injection/modules/AppModule.js +100 -0
  809. package/dist/lib/injection/modules/AppModule.js.map +1 -0
  810. package/dist/lib/injection/modules/GuardModule.d.ts +13 -0
  811. package/dist/lib/injection/modules/GuardModule.d.ts.map +1 -0
  812. package/dist/lib/injection/modules/GuardModule.js +56 -0
  813. package/dist/lib/injection/modules/GuardModule.js.map +1 -0
  814. package/dist/lib/injection/modules/InfraModule.d.ts +14 -0
  815. package/dist/lib/injection/modules/InfraModule.d.ts.map +1 -0
  816. package/dist/lib/injection/modules/InfraModule.js +76 -0
  817. package/dist/lib/injection/modules/InfraModule.js.map +1 -0
  818. package/dist/lib/injection/modules/KnowledgeModule.d.ts +14 -0
  819. package/dist/lib/injection/modules/KnowledgeModule.d.ts.map +1 -0
  820. package/dist/lib/injection/modules/KnowledgeModule.js +133 -0
  821. package/dist/lib/injection/modules/KnowledgeModule.js.map +1 -0
  822. package/dist/lib/platform/ScreenCaptureService.d.ts +74 -0
  823. package/dist/lib/platform/ScreenCaptureService.d.ts.map +1 -0
  824. package/dist/lib/platform/ScreenCaptureService.js +161 -0
  825. package/dist/lib/platform/ScreenCaptureService.js.map +1 -0
  826. package/dist/lib/platform/ios/index.d.ts +39 -0
  827. package/dist/lib/platform/ios/index.d.ts.map +1 -0
  828. package/dist/lib/platform/ios/index.js +43 -0
  829. package/dist/lib/platform/ios/index.js.map +1 -0
  830. package/dist/lib/platform/ios/routes/spm.d.ts +10 -0
  831. package/dist/lib/platform/ios/routes/spm.d.ts.map +1 -0
  832. package/dist/lib/platform/ios/routes/spm.js +374 -0
  833. package/dist/lib/platform/ios/routes/spm.js.map +1 -0
  834. package/dist/lib/platform/ios/snippet/PlaceholderConverter.d.ts +30 -0
  835. package/dist/lib/platform/ios/snippet/PlaceholderConverter.d.ts.map +1 -0
  836. package/dist/lib/platform/ios/snippet/PlaceholderConverter.js +57 -0
  837. package/dist/lib/platform/ios/snippet/PlaceholderConverter.js.map +1 -0
  838. package/dist/lib/platform/ios/snippet/XcodeCodec.d.ts +30 -0
  839. package/dist/lib/platform/ios/snippet/XcodeCodec.d.ts.map +1 -0
  840. package/dist/lib/platform/ios/snippet/XcodeCodec.js +103 -0
  841. package/dist/lib/platform/ios/snippet/XcodeCodec.js.map +1 -0
  842. package/dist/lib/platform/ios/spm/DependencyGraph.d.ts +71 -0
  843. package/dist/lib/platform/ios/spm/DependencyGraph.d.ts.map +1 -0
  844. package/dist/lib/platform/ios/spm/DependencyGraph.js +210 -0
  845. package/dist/lib/platform/ios/spm/DependencyGraph.js.map +1 -0
  846. package/dist/lib/platform/ios/spm/PackageSwiftParser.d.ts +76 -0
  847. package/dist/lib/platform/ios/spm/PackageSwiftParser.d.ts.map +1 -0
  848. package/dist/lib/platform/ios/spm/PackageSwiftParser.js +238 -0
  849. package/dist/lib/platform/ios/spm/PackageSwiftParser.js.map +1 -0
  850. package/dist/lib/platform/ios/spm/PolicyEngine.d.ts +49 -0
  851. package/dist/lib/platform/ios/spm/PolicyEngine.d.ts.map +1 -0
  852. package/dist/lib/platform/ios/spm/PolicyEngine.js +84 -0
  853. package/dist/lib/platform/ios/spm/PolicyEngine.js.map +1 -0
  854. package/dist/lib/platform/ios/spm/SpmDiscoverer.d.ts +56 -0
  855. package/dist/lib/platform/ios/spm/SpmDiscoverer.d.ts.map +1 -0
  856. package/dist/lib/platform/ios/spm/SpmDiscoverer.js +312 -0
  857. package/dist/lib/platform/ios/spm/SpmDiscoverer.js.map +1 -0
  858. package/dist/lib/platform/ios/spm/SpmHelper.d.ts +106 -0
  859. package/dist/lib/platform/ios/spm/SpmHelper.d.ts.map +1 -0
  860. package/dist/lib/platform/ios/spm/SpmHelper.js +479 -0
  861. package/dist/lib/platform/ios/spm/SpmHelper.js.map +1 -0
  862. package/dist/lib/platform/ios/xcode/SaveEventFilter.d.ts +69 -0
  863. package/dist/lib/platform/ios/xcode/SaveEventFilter.d.ts.map +1 -0
  864. package/dist/lib/platform/ios/xcode/SaveEventFilter.js +145 -0
  865. package/dist/lib/platform/ios/xcode/SaveEventFilter.js.map +1 -0
  866. package/dist/lib/platform/ios/xcode/XcodeAutomation.d.ts +76 -0
  867. package/dist/lib/platform/ios/xcode/XcodeAutomation.d.ts.map +1 -0
  868. package/dist/lib/platform/ios/xcode/XcodeAutomation.js +333 -0
  869. package/dist/lib/platform/ios/xcode/XcodeAutomation.js.map +1 -0
  870. package/dist/lib/platform/ios/xcode/XcodeImportResolver.d.ts +138 -0
  871. package/dist/lib/platform/ios/xcode/XcodeImportResolver.d.ts.map +1 -0
  872. package/dist/lib/platform/ios/xcode/XcodeImportResolver.js +412 -0
  873. package/dist/lib/platform/ios/xcode/XcodeImportResolver.js.map +1 -0
  874. package/dist/lib/platform/ios/xcode/XcodeIntegration.d.ts +98 -0
  875. package/dist/lib/platform/ios/xcode/XcodeIntegration.d.ts.map +1 -0
  876. package/dist/lib/platform/ios/xcode/XcodeIntegration.js +597 -0
  877. package/dist/lib/platform/ios/xcode/XcodeIntegration.js.map +1 -0
  878. package/dist/lib/platform/ios/xcode/XcodeWriteUtils.d.ts +105 -0
  879. package/dist/lib/platform/ios/xcode/XcodeWriteUtils.d.ts.map +1 -0
  880. package/dist/lib/platform/ios/xcode/XcodeWriteUtils.js +196 -0
  881. package/dist/lib/platform/ios/xcode/XcodeWriteUtils.js.map +1 -0
  882. package/dist/lib/repository/base/BaseRepository.d.ts +72 -0
  883. package/dist/lib/repository/base/BaseRepository.d.ts.map +1 -0
  884. package/dist/lib/repository/base/BaseRepository.js +245 -0
  885. package/dist/lib/repository/base/BaseRepository.js.map +1 -0
  886. package/dist/lib/repository/knowledge/KnowledgeRepository.impl.d.ts +200 -0
  887. package/dist/lib/repository/knowledge/KnowledgeRepository.impl.d.ts.map +1 -0
  888. package/dist/lib/repository/knowledge/KnowledgeRepository.impl.js +321 -0
  889. package/dist/lib/repository/knowledge/KnowledgeRepository.impl.js.map +1 -0
  890. package/dist/lib/repository/remote/RemoteCommandRepository.d.ts +115 -0
  891. package/dist/lib/repository/remote/RemoteCommandRepository.d.ts.map +1 -0
  892. package/dist/lib/repository/remote/RemoteCommandRepository.js +242 -0
  893. package/dist/lib/repository/remote/RemoteCommandRepository.js.map +1 -0
  894. package/dist/lib/repository/task/TaskRepository.impl.d.ts +189 -0
  895. package/dist/lib/repository/task/TaskRepository.impl.d.ts.map +1 -0
  896. package/dist/lib/repository/task/TaskRepository.impl.js +369 -0
  897. package/dist/lib/repository/task/TaskRepository.impl.js.map +1 -0
  898. package/dist/lib/repository/token/TokenUsageStore.d.ts +91 -0
  899. package/dist/lib/repository/token/TokenUsageStore.d.ts.map +1 -0
  900. package/dist/lib/repository/token/TokenUsageStore.js +160 -0
  901. package/dist/lib/repository/token/TokenUsageStore.js.map +1 -0
  902. package/dist/lib/service/agent/AgentEventBus.d.ts +103 -0
  903. package/dist/lib/service/agent/AgentEventBus.d.ts.map +1 -0
  904. package/dist/lib/service/agent/AgentEventBus.js +187 -0
  905. package/dist/lib/service/agent/AgentEventBus.js.map +1 -0
  906. package/dist/lib/service/agent/AgentFactory.d.ts +251 -0
  907. package/dist/lib/service/agent/AgentFactory.d.ts.map +1 -0
  908. package/dist/lib/service/agent/AgentFactory.js +494 -0
  909. package/dist/lib/service/agent/AgentFactory.js.map +1 -0
  910. package/dist/lib/service/agent/AgentMessage.d.ts +226 -0
  911. package/dist/lib/service/agent/AgentMessage.d.ts.map +1 -0
  912. package/dist/lib/service/agent/AgentMessage.js +227 -0
  913. package/dist/lib/service/agent/AgentMessage.js.map +1 -0
  914. package/dist/lib/service/agent/AgentRouter.d.ts +86 -0
  915. package/dist/lib/service/agent/AgentRouter.d.ts.map +1 -0
  916. package/dist/lib/service/agent/AgentRouter.js +224 -0
  917. package/dist/lib/service/agent/AgentRouter.js.map +1 -0
  918. package/dist/lib/service/agent/AgentRuntime.d.ts +247 -0
  919. package/dist/lib/service/agent/AgentRuntime.d.ts.map +1 -0
  920. package/dist/lib/service/agent/AgentRuntime.js +947 -0
  921. package/dist/lib/service/agent/AgentRuntime.js.map +1 -0
  922. package/dist/lib/service/agent/AgentState.d.ts +120 -0
  923. package/dist/lib/service/agent/AgentState.d.ts.map +1 -0
  924. package/dist/lib/service/agent/AgentState.js +198 -0
  925. package/dist/lib/service/agent/AgentState.js.map +1 -0
  926. package/dist/lib/service/agent/ConversationStore.d.ts +120 -0
  927. package/dist/lib/service/agent/ConversationStore.d.ts.map +1 -0
  928. package/dist/lib/service/agent/ConversationStore.js +373 -0
  929. package/dist/lib/service/agent/ConversationStore.js.map +1 -0
  930. package/dist/lib/service/agent/IntentClassifier.d.ts +64 -0
  931. package/dist/lib/service/agent/IntentClassifier.d.ts.map +1 -0
  932. package/dist/lib/service/agent/IntentClassifier.js +307 -0
  933. package/dist/lib/service/agent/IntentClassifier.js.map +1 -0
  934. package/dist/lib/service/agent/LarkTransport.d.ts +104 -0
  935. package/dist/lib/service/agent/LarkTransport.d.ts.map +1 -0
  936. package/dist/lib/service/agent/LarkTransport.js +486 -0
  937. package/dist/lib/service/agent/LarkTransport.js.map +1 -0
  938. package/dist/lib/service/agent/PipelineStrategy.d.ts +114 -0
  939. package/dist/lib/service/agent/PipelineStrategy.d.ts.map +1 -0
  940. package/dist/lib/service/agent/PipelineStrategy.js +402 -0
  941. package/dist/lib/service/agent/PipelineStrategy.js.map +1 -0
  942. package/dist/lib/service/agent/capabilities.d.ts +207 -0
  943. package/dist/lib/service/agent/capabilities.d.ts.map +1 -0
  944. package/dist/lib/service/agent/capabilities.js +405 -0
  945. package/dist/lib/service/agent/capabilities.js.map +1 -0
  946. package/dist/lib/service/agent/context/ContextWindow.d.ts +192 -0
  947. package/dist/lib/service/agent/context/ContextWindow.d.ts.map +1 -0
  948. package/dist/lib/service/agent/context/ContextWindow.js +610 -0
  949. package/dist/lib/service/agent/context/ContextWindow.js.map +1 -0
  950. package/dist/lib/service/agent/context/ExplorationTracker.d.ts +181 -0
  951. package/dist/lib/service/agent/context/ExplorationTracker.d.ts.map +1 -0
  952. package/dist/lib/service/agent/context/ExplorationTracker.js +494 -0
  953. package/dist/lib/service/agent/context/ExplorationTracker.js.map +1 -0
  954. package/dist/lib/service/agent/context/exploration/ExplorationStrategies.d.ts +173 -0
  955. package/dist/lib/service/agent/context/exploration/ExplorationStrategies.d.ts.map +1 -0
  956. package/dist/lib/service/agent/context/exploration/ExplorationStrategies.js +119 -0
  957. package/dist/lib/service/agent/context/exploration/ExplorationStrategies.js.map +1 -0
  958. package/dist/lib/service/agent/context/exploration/NudgeGenerator.d.ts +79 -0
  959. package/dist/lib/service/agent/context/exploration/NudgeGenerator.d.ts.map +1 -0
  960. package/dist/lib/service/agent/context/exploration/NudgeGenerator.js +307 -0
  961. package/dist/lib/service/agent/context/exploration/NudgeGenerator.js.map +1 -0
  962. package/dist/lib/service/agent/context/exploration/PlanTracker.d.ts +91 -0
  963. package/dist/lib/service/agent/context/exploration/PlanTracker.d.ts.map +1 -0
  964. package/dist/lib/service/agent/context/exploration/PlanTracker.js +303 -0
  965. package/dist/lib/service/agent/context/exploration/PlanTracker.js.map +1 -0
  966. package/dist/lib/service/agent/context/exploration/SignalDetector.d.ts +38 -0
  967. package/dist/lib/service/agent/context/exploration/SignalDetector.d.ts.map +1 -0
  968. package/dist/lib/service/agent/context/exploration/SignalDetector.js +164 -0
  969. package/dist/lib/service/agent/context/exploration/SignalDetector.js.map +1 -0
  970. package/dist/lib/service/agent/core/ChatAgentPrompts.d.ts +52 -0
  971. package/dist/lib/service/agent/core/ChatAgentPrompts.d.ts.map +1 -0
  972. package/dist/lib/service/agent/core/ChatAgentPrompts.js +151 -0
  973. package/dist/lib/service/agent/core/ChatAgentPrompts.js.map +1 -0
  974. package/dist/lib/service/agent/core/LLMResultType.d.ts +32 -0
  975. package/dist/lib/service/agent/core/LLMResultType.d.ts.map +1 -0
  976. package/dist/lib/service/agent/core/LLMResultType.js +32 -0
  977. package/dist/lib/service/agent/core/LLMResultType.js.map +1 -0
  978. package/dist/lib/service/agent/core/LoopContext.d.ts +158 -0
  979. package/dist/lib/service/agent/core/LoopContext.d.ts.map +1 -0
  980. package/dist/lib/service/agent/core/LoopContext.js +139 -0
  981. package/dist/lib/service/agent/core/LoopContext.js.map +1 -0
  982. package/dist/lib/service/agent/core/MessageAdapter.d.ts +154 -0
  983. package/dist/lib/service/agent/core/MessageAdapter.d.ts.map +1 -0
  984. package/dist/lib/service/agent/core/MessageAdapter.js +206 -0
  985. package/dist/lib/service/agent/core/MessageAdapter.js.map +1 -0
  986. package/dist/lib/service/agent/core/SystemPromptBuilder.d.ts +86 -0
  987. package/dist/lib/service/agent/core/SystemPromptBuilder.d.ts.map +1 -0
  988. package/dist/lib/service/agent/core/SystemPromptBuilder.js +115 -0
  989. package/dist/lib/service/agent/core/SystemPromptBuilder.js.map +1 -0
  990. package/dist/lib/service/agent/core/ToolExecutionPipeline.d.ts +186 -0
  991. package/dist/lib/service/agent/core/ToolExecutionPipeline.d.ts.map +1 -0
  992. package/dist/lib/service/agent/core/ToolExecutionPipeline.js +334 -0
  993. package/dist/lib/service/agent/core/ToolExecutionPipeline.js.map +1 -0
  994. package/dist/lib/service/agent/domain/ChatAgentTasks.d.ts +134 -0
  995. package/dist/lib/service/agent/domain/ChatAgentTasks.d.ts.map +1 -0
  996. package/dist/lib/service/agent/domain/ChatAgentTasks.js +182 -0
  997. package/dist/lib/service/agent/domain/ChatAgentTasks.js.map +1 -0
  998. package/dist/lib/service/agent/domain/EpisodicConsolidator.d.ts +110 -0
  999. package/dist/lib/service/agent/domain/EpisodicConsolidator.d.ts.map +1 -0
  1000. package/dist/lib/service/agent/domain/EpisodicConsolidator.js +317 -0
  1001. package/dist/lib/service/agent/domain/EpisodicConsolidator.js.map +1 -0
  1002. package/dist/lib/service/agent/domain/EvidenceCollector.d.ts +152 -0
  1003. package/dist/lib/service/agent/domain/EvidenceCollector.d.ts.map +1 -0
  1004. package/dist/lib/service/agent/domain/EvidenceCollector.js +478 -0
  1005. package/dist/lib/service/agent/domain/EvidenceCollector.js.map +1 -0
  1006. package/dist/lib/service/agent/domain/insight-analyst.d.ts +96 -0
  1007. package/dist/lib/service/agent/domain/insight-analyst.d.ts.map +1 -0
  1008. package/dist/lib/service/agent/domain/insight-analyst.js +224 -0
  1009. package/dist/lib/service/agent/domain/insight-analyst.js.map +1 -0
  1010. package/dist/lib/service/agent/domain/insight-gate.d.ts +223 -0
  1011. package/dist/lib/service/agent/domain/insight-gate.d.ts.map +1 -0
  1012. package/dist/lib/service/agent/domain/insight-gate.js +417 -0
  1013. package/dist/lib/service/agent/domain/insight-gate.js.map +1 -0
  1014. package/dist/lib/service/agent/domain/insight-producer.d.ts +123 -0
  1015. package/dist/lib/service/agent/domain/insight-producer.d.ts.map +1 -0
  1016. package/dist/lib/service/agent/domain/insight-producer.js +243 -0
  1017. package/dist/lib/service/agent/domain/insight-producer.js.map +1 -0
  1018. package/dist/lib/service/agent/domain/scan-prompts.d.ts +145 -0
  1019. package/dist/lib/service/agent/domain/scan-prompts.d.ts.map +1 -0
  1020. package/dist/lib/service/agent/domain/scan-prompts.js +413 -0
  1021. package/dist/lib/service/agent/domain/scan-prompts.js.map +1 -0
  1022. package/dist/lib/service/agent/forced-summary.d.ts +79 -0
  1023. package/dist/lib/service/agent/forced-summary.d.ts.map +1 -0
  1024. package/dist/lib/service/agent/forced-summary.js +310 -0
  1025. package/dist/lib/service/agent/forced-summary.js.map +1 -0
  1026. package/dist/lib/service/agent/index.d.ts +61 -0
  1027. package/dist/lib/service/agent/index.d.ts.map +1 -0
  1028. package/dist/lib/service/agent/index.js +67 -0
  1029. package/dist/lib/service/agent/index.js.map +1 -0
  1030. package/dist/lib/service/agent/memory/ActiveContext.d.ts +383 -0
  1031. package/dist/lib/service/agent/memory/ActiveContext.d.ts.map +1 -0
  1032. package/dist/lib/service/agent/memory/ActiveContext.js +890 -0
  1033. package/dist/lib/service/agent/memory/ActiveContext.js.map +1 -0
  1034. package/dist/lib/service/agent/memory/MemoryConsolidator.d.ts +70 -0
  1035. package/dist/lib/service/agent/memory/MemoryConsolidator.d.ts.map +1 -0
  1036. package/dist/lib/service/agent/memory/MemoryConsolidator.js +335 -0
  1037. package/dist/lib/service/agent/memory/MemoryConsolidator.js.map +1 -0
  1038. package/dist/lib/service/agent/memory/MemoryCoordinator.d.ts +245 -0
  1039. package/dist/lib/service/agent/memory/MemoryCoordinator.d.ts.map +1 -0
  1040. package/dist/lib/service/agent/memory/MemoryCoordinator.js +637 -0
  1041. package/dist/lib/service/agent/memory/MemoryCoordinator.js.map +1 -0
  1042. package/dist/lib/service/agent/memory/MemoryRetriever.d.ts +123 -0
  1043. package/dist/lib/service/agent/memory/MemoryRetriever.d.ts.map +1 -0
  1044. package/dist/lib/service/agent/memory/MemoryRetriever.js +260 -0
  1045. package/dist/lib/service/agent/memory/MemoryRetriever.js.map +1 -0
  1046. package/dist/lib/service/agent/memory/MemoryStore.d.ts +230 -0
  1047. package/dist/lib/service/agent/memory/MemoryStore.d.ts.map +1 -0
  1048. package/dist/lib/service/agent/memory/MemoryStore.js +481 -0
  1049. package/dist/lib/service/agent/memory/MemoryStore.js.map +1 -0
  1050. package/dist/lib/service/agent/memory/PersistentMemory.d.ts +117 -0
  1051. package/dist/lib/service/agent/memory/PersistentMemory.d.ts.map +1 -0
  1052. package/dist/lib/service/agent/memory/PersistentMemory.js +162 -0
  1053. package/dist/lib/service/agent/memory/PersistentMemory.js.map +1 -0
  1054. package/dist/lib/service/agent/memory/SessionStore.d.ts +298 -0
  1055. package/dist/lib/service/agent/memory/SessionStore.d.ts.map +1 -0
  1056. package/dist/lib/service/agent/memory/SessionStore.js +803 -0
  1057. package/dist/lib/service/agent/memory/SessionStore.js.map +1 -0
  1058. package/dist/lib/service/agent/memory/index.d.ts +17 -0
  1059. package/dist/lib/service/agent/memory/index.d.ts.map +1 -0
  1060. package/dist/lib/service/agent/memory/index.js +18 -0
  1061. package/dist/lib/service/agent/memory/index.js.map +1 -0
  1062. package/dist/lib/service/agent/policies.d.ts +294 -0
  1063. package/dist/lib/service/agent/policies.d.ts.map +1 -0
  1064. package/dist/lib/service/agent/policies.js +424 -0
  1065. package/dist/lib/service/agent/policies.js.map +1 -0
  1066. package/dist/lib/service/agent/presets.d.ts +381 -0
  1067. package/dist/lib/service/agent/presets.d.ts.map +1 -0
  1068. package/dist/lib/service/agent/presets.js +308 -0
  1069. package/dist/lib/service/agent/presets.js.map +1 -0
  1070. package/dist/lib/service/agent/strategies.d.ts +208 -0
  1071. package/dist/lib/service/agent/strategies.d.ts.map +1 -0
  1072. package/dist/lib/service/agent/strategies.js +316 -0
  1073. package/dist/lib/service/agent/strategies.js.map +1 -0
  1074. package/dist/lib/service/agent/tools/ToolRegistry.d.ts +68 -0
  1075. package/dist/lib/service/agent/tools/ToolRegistry.d.ts.map +1 -0
  1076. package/dist/lib/service/agent/tools/ToolRegistry.js +200 -0
  1077. package/dist/lib/service/agent/tools/ToolRegistry.js.map +1 -0
  1078. package/dist/lib/service/agent/tools/_shared.d.ts +73 -0
  1079. package/dist/lib/service/agent/tools/_shared.d.ts.map +1 -0
  1080. package/dist/lib/service/agent/tools/_shared.js +50 -0
  1081. package/dist/lib/service/agent/tools/_shared.js.map +1 -0
  1082. package/dist/lib/service/agent/tools/ai-analysis.d.ts +81 -0
  1083. package/dist/lib/service/agent/tools/ai-analysis.d.ts.map +1 -0
  1084. package/dist/lib/service/agent/tools/ai-analysis.js +63 -0
  1085. package/dist/lib/service/agent/tools/ai-analysis.js.map +1 -0
  1086. package/dist/lib/service/agent/tools/ast-graph.d.ts +242 -0
  1087. package/dist/lib/service/agent/tools/ast-graph.d.ts.map +1 -0
  1088. package/dist/lib/service/agent/tools/ast-graph.js +799 -0
  1089. package/dist/lib/service/agent/tools/ast-graph.js.map +1 -0
  1090. package/dist/lib/service/agent/tools/composite.d.ts +397 -0
  1091. package/dist/lib/service/agent/tools/composite.d.ts.map +1 -0
  1092. package/dist/lib/service/agent/tools/composite.js +522 -0
  1093. package/dist/lib/service/agent/tools/composite.js.map +1 -0
  1094. package/dist/lib/service/agent/tools/guard.d.ts +125 -0
  1095. package/dist/lib/service/agent/tools/guard.d.ts.map +1 -0
  1096. package/dist/lib/service/agent/tools/guard.js +125 -0
  1097. package/dist/lib/service/agent/tools/guard.js.map +1 -0
  1098. package/dist/lib/service/agent/tools/index.d.ts +1908 -0
  1099. package/dist/lib/service/agent/tools/index.d.ts.map +1 -0
  1100. package/dist/lib/service/agent/tools/index.js +137 -0
  1101. package/dist/lib/service/agent/tools/index.js.map +1 -0
  1102. package/dist/lib/service/agent/tools/infrastructure.d.ts +198 -0
  1103. package/dist/lib/service/agent/tools/infrastructure.d.ts.map +1 -0
  1104. package/dist/lib/service/agent/tools/infrastructure.js +223 -0
  1105. package/dist/lib/service/agent/tools/infrastructure.js.map +1 -0
  1106. package/dist/lib/service/agent/tools/knowledge-graph.d.ts +91 -0
  1107. package/dist/lib/service/agent/tools/knowledge-graph.d.ts.map +1 -0
  1108. package/dist/lib/service/agent/tools/knowledge-graph.js +97 -0
  1109. package/dist/lib/service/agent/tools/knowledge-graph.js.map +1 -0
  1110. package/dist/lib/service/agent/tools/lifecycle.d.ts +382 -0
  1111. package/dist/lib/service/agent/tools/lifecycle.d.ts.map +1 -0
  1112. package/dist/lib/service/agent/tools/lifecycle.js +453 -0
  1113. package/dist/lib/service/agent/tools/lifecycle.js.map +1 -0
  1114. package/dist/lib/service/agent/tools/project-access.d.ts +392 -0
  1115. package/dist/lib/service/agent/tools/project-access.d.ts.map +1 -0
  1116. package/dist/lib/service/agent/tools/project-access.js +823 -0
  1117. package/dist/lib/service/agent/tools/project-access.js.map +1 -0
  1118. package/dist/lib/service/agent/tools/query.d.ts +181 -0
  1119. package/dist/lib/service/agent/tools/query.d.ts.map +1 -0
  1120. package/dist/lib/service/agent/tools/query.js +244 -0
  1121. package/dist/lib/service/agent/tools/query.js.map +1 -0
  1122. package/dist/lib/service/agent/tools/scan-recipe.d.ts +186 -0
  1123. package/dist/lib/service/agent/tools/scan-recipe.d.ts.map +1 -0
  1124. package/dist/lib/service/agent/tools/scan-recipe.js +195 -0
  1125. package/dist/lib/service/agent/tools/scan-recipe.js.map +1 -0
  1126. package/dist/lib/service/agent/tools/system-interaction.d.ts +154 -0
  1127. package/dist/lib/service/agent/tools/system-interaction.d.ts.map +1 -0
  1128. package/dist/lib/service/agent/tools/system-interaction.js +457 -0
  1129. package/dist/lib/service/agent/tools/system-interaction.js.map +1 -0
  1130. package/dist/lib/service/automation/ActionPipeline.d.ts +38 -0
  1131. package/dist/lib/service/automation/ActionPipeline.d.ts.map +1 -0
  1132. package/dist/lib/service/automation/ActionPipeline.js +57 -0
  1133. package/dist/lib/service/automation/ActionPipeline.js.map +1 -0
  1134. package/dist/lib/service/automation/AutomationOrchestrator.d.ts +93 -0
  1135. package/dist/lib/service/automation/AutomationOrchestrator.d.ts.map +1 -0
  1136. package/dist/lib/service/automation/AutomationOrchestrator.js +64 -0
  1137. package/dist/lib/service/automation/AutomationOrchestrator.js.map +1 -0
  1138. package/dist/lib/service/automation/ContextCollector.d.ts +25 -0
  1139. package/dist/lib/service/automation/ContextCollector.d.ts.map +1 -0
  1140. package/dist/lib/service/automation/ContextCollector.js +36 -0
  1141. package/dist/lib/service/automation/ContextCollector.js.map +1 -0
  1142. package/dist/lib/service/automation/DirectiveDetector.d.ts +56 -0
  1143. package/dist/lib/service/automation/DirectiveDetector.d.ts.map +1 -0
  1144. package/dist/lib/service/automation/DirectiveDetector.js +121 -0
  1145. package/dist/lib/service/automation/DirectiveDetector.js.map +1 -0
  1146. package/dist/lib/service/automation/FileWatcher.d.ts +68 -0
  1147. package/dist/lib/service/automation/FileWatcher.d.ts.map +1 -0
  1148. package/dist/lib/service/automation/FileWatcher.js +385 -0
  1149. package/dist/lib/service/automation/FileWatcher.js.map +1 -0
  1150. package/dist/lib/service/automation/TriggerResolver.d.ts +38 -0
  1151. package/dist/lib/service/automation/TriggerResolver.d.ts.map +1 -0
  1152. package/dist/lib/service/automation/TriggerResolver.js +64 -0
  1153. package/dist/lib/service/automation/TriggerResolver.js.map +1 -0
  1154. package/dist/lib/service/automation/handlers/AlinkHandler.d.ts +11 -0
  1155. package/dist/lib/service/automation/handlers/AlinkHandler.d.ts.map +1 -0
  1156. package/dist/lib/service/automation/handlers/AlinkHandler.js +84 -0
  1157. package/dist/lib/service/automation/handlers/AlinkHandler.js.map +1 -0
  1158. package/dist/lib/service/automation/handlers/CreateHandler.d.ts +17 -0
  1159. package/dist/lib/service/automation/handlers/CreateHandler.d.ts.map +1 -0
  1160. package/dist/lib/service/automation/handlers/CreateHandler.js +178 -0
  1161. package/dist/lib/service/automation/handlers/CreateHandler.js.map +1 -0
  1162. package/dist/lib/service/automation/handlers/GuardHandler.d.ts +18 -0
  1163. package/dist/lib/service/automation/handlers/GuardHandler.d.ts.map +1 -0
  1164. package/dist/lib/service/automation/handlers/GuardHandler.js +223 -0
  1165. package/dist/lib/service/automation/handlers/GuardHandler.js.map +1 -0
  1166. package/dist/lib/service/automation/handlers/HeaderHandler.d.ts +12 -0
  1167. package/dist/lib/service/automation/handlers/HeaderHandler.d.ts.map +1 -0
  1168. package/dist/lib/service/automation/handlers/HeaderHandler.js +42 -0
  1169. package/dist/lib/service/automation/handlers/HeaderHandler.js.map +1 -0
  1170. package/dist/lib/service/automation/handlers/SearchHandler.d.ts +22 -0
  1171. package/dist/lib/service/automation/handlers/SearchHandler.d.ts.map +1 -0
  1172. package/dist/lib/service/automation/handlers/SearchHandler.js +289 -0
  1173. package/dist/lib/service/automation/handlers/SearchHandler.js.map +1 -0
  1174. package/dist/lib/service/bootstrap/BootstrapTaskManager.d.ts +189 -0
  1175. package/dist/lib/service/bootstrap/BootstrapTaskManager.d.ts.map +1 -0
  1176. package/dist/lib/service/bootstrap/BootstrapTaskManager.js +398 -0
  1177. package/dist/lib/service/bootstrap/BootstrapTaskManager.js.map +1 -0
  1178. package/dist/lib/service/candidate/CandidateAggregator.d.ts +32 -0
  1179. package/dist/lib/service/candidate/CandidateAggregator.d.ts.map +1 -0
  1180. package/dist/lib/service/candidate/CandidateAggregator.js +44 -0
  1181. package/dist/lib/service/candidate/CandidateAggregator.js.map +1 -0
  1182. package/dist/lib/service/candidate/SimilarityService.d.ts +32 -0
  1183. package/dist/lib/service/candidate/SimilarityService.d.ts.map +1 -0
  1184. package/dist/lib/service/candidate/SimilarityService.js +82 -0
  1185. package/dist/lib/service/candidate/SimilarityService.js.map +1 -0
  1186. package/dist/lib/service/context/RecipeExtractor.d.ts +69 -0
  1187. package/dist/lib/service/context/RecipeExtractor.d.ts.map +1 -0
  1188. package/dist/lib/service/context/RecipeExtractor.js +307 -0
  1189. package/dist/lib/service/context/RecipeExtractor.js.map +1 -0
  1190. package/dist/lib/service/cursor/AgentInstructionsGenerator.d.ts +133 -0
  1191. package/dist/lib/service/cursor/AgentInstructionsGenerator.d.ts.map +1 -0
  1192. package/dist/lib/service/cursor/AgentInstructionsGenerator.js +410 -0
  1193. package/dist/lib/service/cursor/AgentInstructionsGenerator.js.map +1 -0
  1194. package/dist/lib/service/cursor/CursorDeliveryPipeline.d.ts +305 -0
  1195. package/dist/lib/service/cursor/CursorDeliveryPipeline.d.ts.map +1 -0
  1196. package/dist/lib/service/cursor/CursorDeliveryPipeline.js +677 -0
  1197. package/dist/lib/service/cursor/CursorDeliveryPipeline.js.map +1 -0
  1198. package/dist/lib/service/cursor/FileProtection.d.ts +66 -0
  1199. package/dist/lib/service/cursor/FileProtection.d.ts.map +1 -0
  1200. package/dist/lib/service/cursor/FileProtection.js +101 -0
  1201. package/dist/lib/service/cursor/FileProtection.js.map +1 -0
  1202. package/dist/lib/service/cursor/KnowledgeCompressor.d.ts +79 -0
  1203. package/dist/lib/service/cursor/KnowledgeCompressor.d.ts.map +1 -0
  1204. package/dist/lib/service/cursor/KnowledgeCompressor.js +169 -0
  1205. package/dist/lib/service/cursor/KnowledgeCompressor.js.map +1 -0
  1206. package/dist/lib/service/cursor/RulesGenerator.d.ts +59 -0
  1207. package/dist/lib/service/cursor/RulesGenerator.d.ts.map +1 -0
  1208. package/dist/lib/service/cursor/RulesGenerator.js +161 -0
  1209. package/dist/lib/service/cursor/RulesGenerator.js.map +1 -0
  1210. package/dist/lib/service/cursor/SkillsSyncer.d.ts +61 -0
  1211. package/dist/lib/service/cursor/SkillsSyncer.d.ts.map +1 -0
  1212. package/dist/lib/service/cursor/SkillsSyncer.js +287 -0
  1213. package/dist/lib/service/cursor/SkillsSyncer.js.map +1 -0
  1214. package/dist/lib/service/cursor/TokenBudget.d.ts +27 -0
  1215. package/dist/lib/service/cursor/TokenBudget.d.ts.map +1 -0
  1216. package/dist/lib/service/cursor/TokenBudget.js +38 -0
  1217. package/dist/lib/service/cursor/TokenBudget.js.map +1 -0
  1218. package/dist/lib/service/cursor/TopicClassifier.d.ts +48 -0
  1219. package/dist/lib/service/cursor/TopicClassifier.d.ts.map +1 -0
  1220. package/dist/lib/service/cursor/TopicClassifier.js +176 -0
  1221. package/dist/lib/service/cursor/TopicClassifier.js.map +1 -0
  1222. package/dist/lib/service/guard/ComplianceReporter.d.ts +156 -0
  1223. package/dist/lib/service/guard/ComplianceReporter.d.ts.map +1 -0
  1224. package/dist/lib/service/guard/ComplianceReporter.js +317 -0
  1225. package/dist/lib/service/guard/ComplianceReporter.js.map +1 -0
  1226. package/dist/lib/service/guard/ExclusionManager.d.ts +108 -0
  1227. package/dist/lib/service/guard/ExclusionManager.d.ts.map +1 -0
  1228. package/dist/lib/service/guard/ExclusionManager.js +256 -0
  1229. package/dist/lib/service/guard/ExclusionManager.js.map +1 -0
  1230. package/dist/lib/service/guard/GuardCheckEngine.d.ts +216 -0
  1231. package/dist/lib/service/guard/GuardCheckEngine.d.ts.map +1 -0
  1232. package/dist/lib/service/guard/GuardCheckEngine.js +982 -0
  1233. package/dist/lib/service/guard/GuardCheckEngine.js.map +1 -0
  1234. package/dist/lib/service/guard/GuardCodeChecks.d.ts +34 -0
  1235. package/dist/lib/service/guard/GuardCodeChecks.d.ts.map +1 -0
  1236. package/dist/lib/service/guard/GuardCodeChecks.js +351 -0
  1237. package/dist/lib/service/guard/GuardCodeChecks.js.map +1 -0
  1238. package/dist/lib/service/guard/GuardCrossFileChecks.d.ts +43 -0
  1239. package/dist/lib/service/guard/GuardCrossFileChecks.d.ts.map +1 -0
  1240. package/dist/lib/service/guard/GuardCrossFileChecks.js +290 -0
  1241. package/dist/lib/service/guard/GuardCrossFileChecks.js.map +1 -0
  1242. package/dist/lib/service/guard/GuardFeedbackLoop.d.ts +91 -0
  1243. package/dist/lib/service/guard/GuardFeedbackLoop.d.ts.map +1 -0
  1244. package/dist/lib/service/guard/GuardFeedbackLoop.js +141 -0
  1245. package/dist/lib/service/guard/GuardFeedbackLoop.js.map +1 -0
  1246. package/dist/lib/service/guard/GuardPatternUtils.d.ts +47 -0
  1247. package/dist/lib/service/guard/GuardPatternUtils.d.ts.map +1 -0
  1248. package/dist/lib/service/guard/GuardPatternUtils.js +171 -0
  1249. package/dist/lib/service/guard/GuardPatternUtils.js.map +1 -0
  1250. package/dist/lib/service/guard/GuardService.d.ts +217 -0
  1251. package/dist/lib/service/guard/GuardService.d.ts.map +1 -0
  1252. package/dist/lib/service/guard/GuardService.js +305 -0
  1253. package/dist/lib/service/guard/GuardService.js.map +1 -0
  1254. package/dist/lib/service/guard/RuleLearner.d.ts +98 -0
  1255. package/dist/lib/service/guard/RuleLearner.d.ts.map +1 -0
  1256. package/dist/lib/service/guard/RuleLearner.js +298 -0
  1257. package/dist/lib/service/guard/RuleLearner.js.map +1 -0
  1258. package/dist/lib/service/guard/SourceFileCollector.d.ts +42 -0
  1259. package/dist/lib/service/guard/SourceFileCollector.d.ts.map +1 -0
  1260. package/dist/lib/service/guard/SourceFileCollector.js +106 -0
  1261. package/dist/lib/service/guard/SourceFileCollector.js.map +1 -0
  1262. package/dist/lib/service/guard/ViolationsStore.d.ts +119 -0
  1263. package/dist/lib/service/guard/ViolationsStore.d.ts.map +1 -0
  1264. package/dist/lib/service/guard/ViolationsStore.js +228 -0
  1265. package/dist/lib/service/guard/ViolationsStore.js.map +1 -0
  1266. package/dist/lib/service/knowledge/CodeEntityGraph.d.ts +418 -0
  1267. package/dist/lib/service/knowledge/CodeEntityGraph.d.ts.map +1 -0
  1268. package/dist/lib/service/knowledge/CodeEntityGraph.js +1050 -0
  1269. package/dist/lib/service/knowledge/CodeEntityGraph.js.map +1 -0
  1270. package/dist/lib/service/knowledge/ConfidenceRouter.d.ts +63 -0
  1271. package/dist/lib/service/knowledge/ConfidenceRouter.d.ts.map +1 -0
  1272. package/dist/lib/service/knowledge/ConfidenceRouter.js +155 -0
  1273. package/dist/lib/service/knowledge/ConfidenceRouter.js.map +1 -0
  1274. package/dist/lib/service/knowledge/KnowledgeFileWriter.d.ts +100 -0
  1275. package/dist/lib/service/knowledge/KnowledgeFileWriter.d.ts.map +1 -0
  1276. package/dist/lib/service/knowledge/KnowledgeFileWriter.js +658 -0
  1277. package/dist/lib/service/knowledge/KnowledgeFileWriter.js.map +1 -0
  1278. package/dist/lib/service/knowledge/KnowledgeGraphService.d.ts +121 -0
  1279. package/dist/lib/service/knowledge/KnowledgeGraphService.d.ts.map +1 -0
  1280. package/dist/lib/service/knowledge/KnowledgeGraphService.js +230 -0
  1281. package/dist/lib/service/knowledge/KnowledgeGraphService.js.map +1 -0
  1282. package/dist/lib/service/knowledge/KnowledgeService.d.ts +225 -0
  1283. package/dist/lib/service/knowledge/KnowledgeService.d.ts.map +1 -0
  1284. package/dist/lib/service/knowledge/KnowledgeService.js +852 -0
  1285. package/dist/lib/service/knowledge/KnowledgeService.js.map +1 -0
  1286. package/dist/lib/service/module/ModuleService.d.ts +156 -0
  1287. package/dist/lib/service/module/ModuleService.d.ts.map +1 -0
  1288. package/dist/lib/service/module/ModuleService.js +951 -0
  1289. package/dist/lib/service/module/ModuleService.js.map +1 -0
  1290. package/dist/lib/service/quality/FeedbackCollector.d.ts +55 -0
  1291. package/dist/lib/service/quality/FeedbackCollector.d.ts.map +1 -0
  1292. package/dist/lib/service/quality/FeedbackCollector.js +137 -0
  1293. package/dist/lib/service/quality/FeedbackCollector.js.map +1 -0
  1294. package/dist/lib/service/quality/QualityScorer.d.ts +70 -0
  1295. package/dist/lib/service/quality/QualityScorer.d.ts.map +1 -0
  1296. package/dist/lib/service/quality/QualityScorer.js +183 -0
  1297. package/dist/lib/service/quality/QualityScorer.js.map +1 -0
  1298. package/dist/lib/service/recipe/RecipeCandidateValidator.d.ts +80 -0
  1299. package/dist/lib/service/recipe/RecipeCandidateValidator.d.ts.map +1 -0
  1300. package/dist/lib/service/recipe/RecipeCandidateValidator.js +184 -0
  1301. package/dist/lib/service/recipe/RecipeCandidateValidator.js.map +1 -0
  1302. package/dist/lib/service/recipe/RecipeParser.d.ts +88 -0
  1303. package/dist/lib/service/recipe/RecipeParser.d.ts.map +1 -0
  1304. package/dist/lib/service/recipe/RecipeParser.js +280 -0
  1305. package/dist/lib/service/recipe/RecipeParser.js.map +1 -0
  1306. package/dist/lib/service/search/CoarseRanker.d.ts +64 -0
  1307. package/dist/lib/service/search/CoarseRanker.d.ts.map +1 -0
  1308. package/dist/lib/service/search/CoarseRanker.js +114 -0
  1309. package/dist/lib/service/search/CoarseRanker.js.map +1 -0
  1310. package/dist/lib/service/search/CrossEncoderReranker.d.ts +60 -0
  1311. package/dist/lib/service/search/CrossEncoderReranker.d.ts.map +1 -0
  1312. package/dist/lib/service/search/CrossEncoderReranker.js +158 -0
  1313. package/dist/lib/service/search/CrossEncoderReranker.js.map +1 -0
  1314. package/dist/lib/service/search/HybridRetriever.d.ts +80 -0
  1315. package/dist/lib/service/search/HybridRetriever.d.ts.map +1 -0
  1316. package/dist/lib/service/search/HybridRetriever.js +123 -0
  1317. package/dist/lib/service/search/HybridRetriever.js.map +1 -0
  1318. package/dist/lib/service/search/InvertedIndex.d.ts +34 -0
  1319. package/dist/lib/service/search/InvertedIndex.d.ts.map +1 -0
  1320. package/dist/lib/service/search/InvertedIndex.js +83 -0
  1321. package/dist/lib/service/search/InvertedIndex.js.map +1 -0
  1322. package/dist/lib/service/search/MultiSignalRanker.d.ts +109 -0
  1323. package/dist/lib/service/search/MultiSignalRanker.d.ts.map +1 -0
  1324. package/dist/lib/service/search/MultiSignalRanker.js +257 -0
  1325. package/dist/lib/service/search/MultiSignalRanker.js.map +1 -0
  1326. package/dist/lib/service/search/RetrievalFunnel.d.ts +26 -0
  1327. package/dist/lib/service/search/RetrievalFunnel.d.ts.map +1 -0
  1328. package/dist/lib/service/search/RetrievalFunnel.js +77 -0
  1329. package/dist/lib/service/search/RetrievalFunnel.js.map +1 -0
  1330. package/dist/lib/service/search/SearchEngine.d.ts +389 -0
  1331. package/dist/lib/service/search/SearchEngine.d.ts.map +1 -0
  1332. package/dist/lib/service/search/SearchEngine.js +971 -0
  1333. package/dist/lib/service/search/SearchEngine.js.map +1 -0
  1334. package/dist/lib/service/search/contextBoost.d.ts +47 -0
  1335. package/dist/lib/service/search/contextBoost.d.ts.map +1 -0
  1336. package/dist/lib/service/search/contextBoost.js +45 -0
  1337. package/dist/lib/service/search/contextBoost.js.map +1 -0
  1338. package/dist/lib/service/skills/EventAggregator.d.ts +63 -0
  1339. package/dist/lib/service/skills/EventAggregator.d.ts.map +1 -0
  1340. package/dist/lib/service/skills/EventAggregator.js +178 -0
  1341. package/dist/lib/service/skills/EventAggregator.js.map +1 -0
  1342. package/dist/lib/service/skills/SignalCollector.d.ts +125 -0
  1343. package/dist/lib/service/skills/SignalCollector.d.ts.map +1 -0
  1344. package/dist/lib/service/skills/SignalCollector.js +575 -0
  1345. package/dist/lib/service/skills/SignalCollector.js.map +1 -0
  1346. package/dist/lib/service/skills/SkillAdvisor.d.ts +64 -0
  1347. package/dist/lib/service/skills/SkillAdvisor.d.ts.map +1 -0
  1348. package/dist/lib/service/skills/SkillAdvisor.js +338 -0
  1349. package/dist/lib/service/skills/SkillAdvisor.js.map +1 -0
  1350. package/dist/lib/service/skills/SkillHooks.d.ts +45 -0
  1351. package/dist/lib/service/skills/SkillHooks.d.ts.map +1 -0
  1352. package/dist/lib/service/skills/SkillHooks.js +131 -0
  1353. package/dist/lib/service/skills/SkillHooks.js.map +1 -0
  1354. package/dist/lib/service/snippet/SnippetFactory.d.ts +120 -0
  1355. package/dist/lib/service/snippet/SnippetFactory.d.ts.map +1 -0
  1356. package/dist/lib/service/snippet/SnippetFactory.js +169 -0
  1357. package/dist/lib/service/snippet/SnippetFactory.js.map +1 -0
  1358. package/dist/lib/service/snippet/SnippetInstaller.d.ts +100 -0
  1359. package/dist/lib/service/snippet/SnippetInstaller.d.ts.map +1 -0
  1360. package/dist/lib/service/snippet/SnippetInstaller.js +291 -0
  1361. package/dist/lib/service/snippet/SnippetInstaller.js.map +1 -0
  1362. package/dist/lib/service/snippet/codecs/SnippetCodec.d.ts +61 -0
  1363. package/dist/lib/service/snippet/codecs/SnippetCodec.d.ts.map +1 -0
  1364. package/dist/lib/service/snippet/codecs/SnippetCodec.js +52 -0
  1365. package/dist/lib/service/snippet/codecs/SnippetCodec.js.map +1 -0
  1366. package/dist/lib/service/snippet/codecs/VSCodeCodec.d.ts +32 -0
  1367. package/dist/lib/service/snippet/codecs/VSCodeCodec.d.ts.map +1 -0
  1368. package/dist/lib/service/snippet/codecs/VSCodeCodec.js +89 -0
  1369. package/dist/lib/service/snippet/codecs/VSCodeCodec.js.map +1 -0
  1370. package/dist/lib/service/task/TaskGraphService.d.ts +269 -0
  1371. package/dist/lib/service/task/TaskGraphService.d.ts.map +1 -0
  1372. package/dist/lib/service/task/TaskGraphService.js +603 -0
  1373. package/dist/lib/service/task/TaskGraphService.js.map +1 -0
  1374. package/dist/lib/service/task/TaskKnowledgeBridge.d.ts +53 -0
  1375. package/dist/lib/service/task/TaskKnowledgeBridge.d.ts.map +1 -0
  1376. package/dist/lib/service/task/TaskKnowledgeBridge.js +92 -0
  1377. package/dist/lib/service/task/TaskKnowledgeBridge.js.map +1 -0
  1378. package/dist/lib/service/task/TaskReadyEngine.d.ts +93 -0
  1379. package/dist/lib/service/task/TaskReadyEngine.d.ts.map +1 -0
  1380. package/dist/lib/service/task/TaskReadyEngine.js +124 -0
  1381. package/dist/lib/service/task/TaskReadyEngine.js.map +1 -0
  1382. package/dist/lib/service/wiki/WikiGenerator.d.ts +407 -0
  1383. package/dist/lib/service/wiki/WikiGenerator.d.ts.map +1 -0
  1384. package/dist/lib/service/wiki/WikiGenerator.js +912 -0
  1385. package/dist/lib/service/wiki/WikiGenerator.js.map +1 -0
  1386. package/dist/lib/service/wiki/WikiRenderers.d.ts +219 -0
  1387. package/dist/lib/service/wiki/WikiRenderers.d.ts.map +1 -0
  1388. package/dist/lib/service/wiki/WikiRenderers.js +1627 -0
  1389. package/dist/lib/service/wiki/WikiRenderers.js.map +1 -0
  1390. package/dist/lib/service/wiki/WikiUtils.d.ts +164 -0
  1391. package/dist/lib/service/wiki/WikiUtils.d.ts.map +1 -0
  1392. package/dist/lib/service/wiki/WikiUtils.js +971 -0
  1393. package/dist/lib/service/wiki/WikiUtils.js.map +1 -0
  1394. package/dist/lib/shared/BootstrapEventEmitter.d.ts +59 -0
  1395. package/dist/lib/shared/BootstrapEventEmitter.d.ts.map +1 -0
  1396. package/dist/lib/shared/BootstrapEventEmitter.js +140 -0
  1397. package/dist/lib/shared/BootstrapEventEmitter.js.map +1 -0
  1398. package/dist/lib/shared/DimensionCopyRegistry.d.ts +76 -0
  1399. package/dist/lib/shared/DimensionCopyRegistry.d.ts.map +1 -0
  1400. package/dist/lib/shared/DimensionCopyRegistry.js +402 -0
  1401. package/dist/lib/shared/DimensionCopyRegistry.js.map +1 -0
  1402. package/dist/lib/shared/FieldSpec.d.ts +169 -0
  1403. package/dist/lib/shared/FieldSpec.d.ts.map +1 -0
  1404. package/dist/lib/shared/FieldSpec.js +348 -0
  1405. package/dist/lib/shared/FieldSpec.js.map +1 -0
  1406. package/dist/lib/shared/LanguageService.d.ts +203 -0
  1407. package/dist/lib/shared/LanguageService.d.ts.map +1 -0
  1408. package/dist/lib/shared/LanguageService.js +687 -0
  1409. package/dist/lib/shared/LanguageService.js.map +1 -0
  1410. package/dist/lib/shared/PathGuard.d.ts +105 -0
  1411. package/dist/lib/shared/PathGuard.d.ts.map +1 -0
  1412. package/dist/lib/shared/PathGuard.js +312 -0
  1413. package/dist/lib/shared/PathGuard.js.map +1 -0
  1414. package/dist/lib/shared/RecipeReadinessChecker.d.ts +37 -0
  1415. package/dist/lib/shared/RecipeReadinessChecker.d.ts.map +1 -0
  1416. package/dist/lib/shared/RecipeReadinessChecker.js +68 -0
  1417. package/dist/lib/shared/RecipeReadinessChecker.js.map +1 -0
  1418. package/dist/lib/shared/StyleGuide.d.ts +25 -0
  1419. package/dist/lib/shared/StyleGuide.d.ts.map +1 -0
  1420. package/dist/lib/shared/StyleGuide.js +110 -0
  1421. package/dist/lib/shared/StyleGuide.js.map +1 -0
  1422. package/dist/lib/shared/UnifiedValidator.d.ts +57 -0
  1423. package/dist/lib/shared/UnifiedValidator.d.ts.map +1 -0
  1424. package/dist/lib/shared/UnifiedValidator.js +315 -0
  1425. package/dist/lib/shared/UnifiedValidator.js.map +1 -0
  1426. package/dist/lib/shared/concurrency.d.ts +34 -0
  1427. package/dist/lib/shared/concurrency.d.ts.map +1 -0
  1428. package/dist/lib/shared/concurrency.js +34 -0
  1429. package/dist/lib/shared/concurrency.js.map +1 -0
  1430. package/dist/lib/shared/constants.d.ts +208 -0
  1431. package/dist/lib/shared/constants.d.ts.map +1 -0
  1432. package/dist/lib/shared/constants.js +138 -0
  1433. package/dist/lib/shared/constants.js.map +1 -0
  1434. package/dist/lib/shared/errors/BaseError.d.ts +60 -0
  1435. package/dist/lib/shared/errors/BaseError.d.ts.map +1 -0
  1436. package/dist/lib/shared/errors/BaseError.js +93 -0
  1437. package/dist/lib/shared/errors/BaseError.js.map +1 -0
  1438. package/dist/lib/shared/errors/index.d.ts +6 -0
  1439. package/dist/lib/shared/errors/index.d.ts.map +1 -0
  1440. package/dist/lib/shared/errors/index.js +6 -0
  1441. package/dist/lib/shared/errors/index.js.map +1 -0
  1442. package/dist/lib/shared/isOwnDevRepo.d.ts +21 -0
  1443. package/dist/lib/shared/isOwnDevRepo.d.ts.map +1 -0
  1444. package/dist/lib/shared/isOwnDevRepo.js +53 -0
  1445. package/dist/lib/shared/isOwnDevRepo.js.map +1 -0
  1446. package/dist/lib/shared/package-root.d.ts +13 -0
  1447. package/dist/lib/shared/package-root.d.ts.map +1 -0
  1448. package/dist/lib/shared/package-root.js +58 -0
  1449. package/dist/lib/shared/package-root.js.map +1 -0
  1450. package/dist/lib/shared/resolveProjectRoot.d.ts +26 -0
  1451. package/dist/lib/shared/resolveProjectRoot.d.ts.map +1 -0
  1452. package/dist/lib/shared/resolveProjectRoot.js +24 -0
  1453. package/dist/lib/shared/resolveProjectRoot.js.map +1 -0
  1454. package/dist/lib/shared/schemas/common.d.ts +66 -0
  1455. package/dist/lib/shared/schemas/common.d.ts.map +1 -0
  1456. package/dist/lib/shared/schemas/common.js +58 -0
  1457. package/dist/lib/shared/schemas/common.js.map +1 -0
  1458. package/dist/lib/shared/schemas/config.d.ts +145 -0
  1459. package/dist/lib/shared/schemas/config.d.ts.map +1 -0
  1460. package/dist/lib/shared/schemas/config.js +151 -0
  1461. package/dist/lib/shared/schemas/config.js.map +1 -0
  1462. package/dist/lib/shared/schemas/http-requests.d.ts +339 -0
  1463. package/dist/lib/shared/schemas/http-requests.d.ts.map +1 -0
  1464. package/dist/lib/shared/schemas/http-requests.js +342 -0
  1465. package/dist/lib/shared/schemas/http-requests.js.map +1 -0
  1466. package/dist/lib/shared/schemas/index.d.ts +10 -0
  1467. package/dist/lib/shared/schemas/index.d.ts.map +1 -0
  1468. package/dist/lib/shared/schemas/index.js +10 -0
  1469. package/dist/lib/shared/schemas/index.js.map +1 -0
  1470. package/dist/lib/shared/schemas/mcp-tools.d.ts +344 -0
  1471. package/dist/lib/shared/schemas/mcp-tools.d.ts.map +1 -0
  1472. package/dist/lib/shared/schemas/mcp-tools.js +327 -0
  1473. package/dist/lib/shared/schemas/mcp-tools.js.map +1 -0
  1474. package/dist/lib/shared/shutdown.d.ts +63 -0
  1475. package/dist/lib/shared/shutdown.d.ts.map +1 -0
  1476. package/dist/lib/shared/shutdown.js +111 -0
  1477. package/dist/lib/shared/shutdown.js.map +1 -0
  1478. package/dist/lib/shared/similarity.d.ts +53 -0
  1479. package/dist/lib/shared/similarity.d.ts.map +1 -0
  1480. package/dist/lib/shared/similarity.js +111 -0
  1481. package/dist/lib/shared/similarity.js.map +1 -0
  1482. package/dist/lib/shared/token-utils.d.ts +30 -0
  1483. package/dist/lib/shared/token-utils.d.ts.map +1 -0
  1484. package/dist/lib/shared/token-utils.js +50 -0
  1485. package/dist/lib/shared/token-utils.js.map +1 -0
  1486. package/dist/lib/shared/utils/common.d.ts +45 -0
  1487. package/dist/lib/shared/utils/common.d.ts.map +1 -0
  1488. package/dist/lib/shared/utils/common.js +70 -0
  1489. package/dist/lib/shared/utils/common.js.map +1 -0
  1490. package/dist/lib/types/database.d.ts +14 -0
  1491. package/dist/lib/types/database.d.ts.map +1 -0
  1492. package/dist/lib/types/database.js +2 -0
  1493. package/dist/lib/types/database.js.map +1 -0
  1494. package/dist/scripts/build-native-ui.d.ts +6 -0
  1495. package/dist/scripts/build-native-ui.d.ts.map +1 -0
  1496. package/dist/scripts/build-native-ui.js +65 -0
  1497. package/dist/scripts/build-native-ui.js.map +1 -0
  1498. package/dist/scripts/diagnose-mcp.d.ts +10 -0
  1499. package/dist/scripts/diagnose-mcp.d.ts.map +1 -0
  1500. package/dist/scripts/diagnose-mcp.js +79 -0
  1501. package/dist/scripts/diagnose-mcp.js.map +1 -0
  1502. package/dist/scripts/init-snippets.d.ts +31 -0
  1503. package/dist/scripts/init-snippets.d.ts.map +1 -0
  1504. package/dist/scripts/init-snippets.js +299 -0
  1505. package/dist/scripts/init-snippets.js.map +1 -0
  1506. package/dist/scripts/install-cursor-skill.d.ts +14 -0
  1507. package/dist/scripts/install-cursor-skill.d.ts.map +1 -0
  1508. package/dist/scripts/install-cursor-skill.js +361 -0
  1509. package/dist/scripts/install-cursor-skill.js.map +1 -0
  1510. package/dist/scripts/install-full.d.ts +8 -0
  1511. package/dist/scripts/install-full.d.ts.map +1 -0
  1512. package/dist/scripts/install-full.js +39 -0
  1513. package/dist/scripts/install-full.js.map +1 -0
  1514. package/dist/scripts/install-vscode-copilot.d.ts +24 -0
  1515. package/dist/scripts/install-vscode-copilot.d.ts.map +1 -0
  1516. package/dist/scripts/install-vscode-copilot.js +274 -0
  1517. package/dist/scripts/install-vscode-copilot.js.map +1 -0
  1518. package/dist/scripts/release.d.ts +8 -0
  1519. package/dist/scripts/release.d.ts.map +1 -0
  1520. package/dist/scripts/release.js +361 -0
  1521. package/dist/scripts/release.js.map +1 -0
  1522. package/dist/scripts/setup-mcp-config.d.ts +10 -0
  1523. package/dist/scripts/setup-mcp-config.d.ts.map +1 -0
  1524. package/dist/scripts/setup-mcp-config.js +120 -0
  1525. package/dist/scripts/setup-mcp-config.js.map +1 -0
  1526. package/dist/scripts/verify-context-api.d.ts +8 -0
  1527. package/dist/scripts/verify-context-api.d.ts.map +1 -0
  1528. package/dist/scripts/verify-context-api.js +55 -0
  1529. package/dist/scripts/verify-context-api.js.map +1 -0
  1530. package/package.json +126 -66
  1531. package/resources/native-ui/screenshot.swift +2 -2
  1532. package/scripts/postbuild.mjs +31 -0
  1533. package/scripts/postinstall-safe.mjs +89 -0
  1534. package/templates/guard-ci.yml +1 -1
  1535. package/bin/api-server.js +0 -108
  1536. package/bin/cli.js +0 -1263
  1537. package/bin/mcp-server.js +0 -62
  1538. package/config/knowledge-base.config.js +0 -173
  1539. package/dashboard/dist/assets/axios-C0Zqfgkc.js +0 -6
  1540. package/dashboard/dist/assets/framer-motion-DOATyqla.js +0 -9
  1541. package/dashboard/dist/assets/icons-pSac4wYO.js +0 -531
  1542. package/dashboard/dist/assets/index-BTAsOZv2.js +0 -128
  1543. package/dashboard/dist/assets/index-C_72Ct98.css +0 -1
  1544. package/dashboard/dist/assets/vendor-Ck-HBmg5.js +0 -3122
  1545. package/lib/bootstrap.js +0 -228
  1546. package/lib/cli/AiScanService.js +0 -280
  1547. package/lib/cli/CliLogger.js +0 -78
  1548. package/lib/cli/KnowledgeSyncService.js +0 -384
  1549. package/lib/cli/SetupService.js +0 -559
  1550. package/lib/cli/UpgradeService.js +0 -96
  1551. package/lib/cli/deploy/FileDeployer.js +0 -562
  1552. package/lib/cli/deploy/FileManifest.js +0 -272
  1553. package/lib/core/AstAnalyzer.js +0 -878
  1554. package/lib/core/analysis/CallEdgeResolver.js +0 -402
  1555. package/lib/core/analysis/CallGraphAnalyzer.js +0 -367
  1556. package/lib/core/analysis/CallSiteExtractor.js +0 -629
  1557. package/lib/core/analysis/DataFlowInferrer.js +0 -57
  1558. package/lib/core/analysis/ImportPathResolver.js +0 -189
  1559. package/lib/core/analysis/ImportRecord.js +0 -105
  1560. package/lib/core/analysis/SymbolTableBuilder.js +0 -211
  1561. package/lib/core/ast/ProjectGraph.js +0 -828
  1562. package/lib/core/ast/ensure-grammars.js +0 -129
  1563. package/lib/core/ast/index.js +0 -167
  1564. package/lib/core/ast/lang-dart.js +0 -1010
  1565. package/lib/core/ast/lang-go.js +0 -714
  1566. package/lib/core/ast/lang-java.js +0 -635
  1567. package/lib/core/ast/lang-javascript.js +0 -268
  1568. package/lib/core/ast/lang-kotlin.js +0 -748
  1569. package/lib/core/ast/lang-objc.js +0 -384
  1570. package/lib/core/ast/lang-python.js +0 -396
  1571. package/lib/core/ast/lang-rust.js +0 -997
  1572. package/lib/core/ast/lang-swift.js +0 -512
  1573. package/lib/core/ast/lang-typescript.js +0 -786
  1574. package/lib/core/ast/parser-init.js +0 -86
  1575. package/lib/core/capability/CapabilityProbe.js +0 -258
  1576. package/lib/core/constitution/Constitution.js +0 -132
  1577. package/lib/core/constitution/ConstitutionValidator.js +0 -196
  1578. package/lib/core/discovery/DartDiscoverer.js +0 -529
  1579. package/lib/core/discovery/DiscovererRegistry.js +0 -83
  1580. package/lib/core/discovery/GenericDiscoverer.js +0 -202
  1581. package/lib/core/discovery/GoDiscoverer.js +0 -562
  1582. package/lib/core/discovery/JvmDiscoverer.js +0 -507
  1583. package/lib/core/discovery/NodeDiscoverer.js +0 -465
  1584. package/lib/core/discovery/ProjectDiscoverer.js +0 -93
  1585. package/lib/core/discovery/PythonDiscoverer.js +0 -348
  1586. package/lib/core/discovery/RustDiscoverer.js +0 -541
  1587. package/lib/core/discovery/index.js +0 -56
  1588. package/lib/core/enhancement/EnhancementPack.js +0 -82
  1589. package/lib/core/enhancement/EnhancementRegistry.js +0 -47
  1590. package/lib/core/enhancement/android-enhancement.js +0 -104
  1591. package/lib/core/enhancement/django-enhancement.js +0 -245
  1592. package/lib/core/enhancement/fastapi-enhancement.js +0 -219
  1593. package/lib/core/enhancement/go-grpc-enhancement.js +0 -159
  1594. package/lib/core/enhancement/go-web-enhancement.js +0 -206
  1595. package/lib/core/enhancement/index.js +0 -70
  1596. package/lib/core/enhancement/langchain-enhancement.js +0 -236
  1597. package/lib/core/enhancement/ml-enhancement.js +0 -271
  1598. package/lib/core/enhancement/nextjs-enhancement.js +0 -232
  1599. package/lib/core/enhancement/node-server-enhancement.js +0 -267
  1600. package/lib/core/enhancement/react-enhancement.js +0 -254
  1601. package/lib/core/enhancement/rust-tokio-enhancement.js +0 -237
  1602. package/lib/core/enhancement/rust-web-enhancement.js +0 -264
  1603. package/lib/core/enhancement/spring-enhancement.js +0 -116
  1604. package/lib/core/enhancement/vue-enhancement.js +0 -245
  1605. package/lib/core/gateway/Gateway.js +0 -273
  1606. package/lib/core/gateway/GatewayActionRegistry.js +0 -236
  1607. package/lib/core/permission/PermissionManager.js +0 -252
  1608. package/lib/domain/index.js +0 -29
  1609. package/lib/domain/knowledge/KnowledgeEntry.js +0 -312
  1610. package/lib/domain/knowledge/KnowledgeRepository.js +0 -122
  1611. package/lib/domain/knowledge/Lifecycle.js +0 -101
  1612. package/lib/domain/knowledge/index.js +0 -24
  1613. package/lib/domain/knowledge/values/Constraints.js +0 -138
  1614. package/lib/domain/knowledge/values/Content.js +0 -77
  1615. package/lib/domain/knowledge/values/Quality.js +0 -94
  1616. package/lib/domain/knowledge/values/Reasoning.js +0 -78
  1617. package/lib/domain/knowledge/values/Relations.js +0 -159
  1618. package/lib/domain/knowledge/values/Stats.js +0 -78
  1619. package/lib/domain/knowledge/values/index.js +0 -10
  1620. package/lib/domain/snippet/Snippet.js +0 -107
  1621. package/lib/domain/task/Task.js +0 -244
  1622. package/lib/domain/task/TaskDependency.js +0 -49
  1623. package/lib/domain/task/TaskIdGenerator.js +0 -83
  1624. package/lib/domain/task/index.js +0 -6
  1625. package/lib/external/ai/AiFactory.js +0 -251
  1626. package/lib/external/ai/AiProvider.js +0 -823
  1627. package/lib/external/ai/providers/ClaudeProvider.js +0 -308
  1628. package/lib/external/ai/providers/GoogleGeminiProvider.js +0 -466
  1629. package/lib/external/ai/providers/MockProvider.js +0 -64
  1630. package/lib/external/ai/providers/OpenAiProvider.js +0 -308
  1631. package/lib/external/mcp/McpServer.js +0 -475
  1632. package/lib/external/mcp/autoApproveInjector.js +0 -155
  1633. package/lib/external/mcp/envelope.js +0 -35
  1634. package/lib/external/mcp/errorHandler.js +0 -118
  1635. package/lib/external/mcp/handlers/LanguageExtensions.js +0 -582
  1636. package/lib/external/mcp/handlers/TargetClassifier.js +0 -74
  1637. package/lib/external/mcp/handlers/bootstrap/BootstrapSession.js +0 -252
  1638. package/lib/external/mcp/handlers/bootstrap/ExternalSubmissionTracker.js +0 -397
  1639. package/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.js +0 -855
  1640. package/lib/external/mcp/handlers/bootstrap/base-dimensions.js +0 -250
  1641. package/lib/external/mcp/handlers/bootstrap/pipeline/BootstrapSnapshot.js +0 -618
  1642. package/lib/external/mcp/handlers/bootstrap/pipeline/IncrementalBootstrap.js +0 -212
  1643. package/lib/external/mcp/handlers/bootstrap/pipeline/checkpoint.js +0 -96
  1644. package/lib/external/mcp/handlers/bootstrap/pipeline/dimension-configs.js +0 -181
  1645. package/lib/external/mcp/handlers/bootstrap/pipeline/dimension-context.js +0 -227
  1646. package/lib/external/mcp/handlers/bootstrap/pipeline/noAiFallback.js +0 -776
  1647. package/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.js +0 -1412
  1648. package/lib/external/mcp/handlers/bootstrap/pipeline/tier-scheduler.js +0 -217
  1649. package/lib/external/mcp/handlers/bootstrap/refine.js +0 -365
  1650. package/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.js +0 -774
  1651. package/lib/external/mcp/handlers/bootstrap/shared/dimension-sop.js +0 -709
  1652. package/lib/external/mcp/handlers/bootstrap/shared/dimension-text.js +0 -230
  1653. package/lib/external/mcp/handlers/bootstrap/shared/skill-generator.js +0 -268
  1654. package/lib/external/mcp/handlers/bootstrap/skills.js +0 -110
  1655. package/lib/external/mcp/handlers/bootstrap-external.js +0 -183
  1656. package/lib/external/mcp/handlers/bootstrap-internal.js +0 -420
  1657. package/lib/external/mcp/handlers/browse.js +0 -313
  1658. package/lib/external/mcp/handlers/candidate.js +0 -241
  1659. package/lib/external/mcp/handlers/consolidated.js +0 -325
  1660. package/lib/external/mcp/handlers/dimension-complete-external.js +0 -472
  1661. package/lib/external/mcp/handlers/guard.js +0 -610
  1662. package/lib/external/mcp/handlers/knowledge.js +0 -381
  1663. package/lib/external/mcp/handlers/search.js +0 -291
  1664. package/lib/external/mcp/handlers/skill.js +0 -719
  1665. package/lib/external/mcp/handlers/structure.js +0 -622
  1666. package/lib/external/mcp/handlers/system.js +0 -269
  1667. package/lib/external/mcp/handlers/task.js +0 -629
  1668. package/lib/external/mcp/handlers/wiki-external.js +0 -593
  1669. package/lib/external/mcp/tools.js +0 -759
  1670. package/lib/http/HttpServer.js +0 -488
  1671. package/lib/http/api-spec.js +0 -192
  1672. package/lib/http/middleware/RateLimiter.js +0 -69
  1673. package/lib/http/middleware/errorHandler.js +0 -96
  1674. package/lib/http/middleware/gatewayMiddleware.js +0 -61
  1675. package/lib/http/middleware/requestLogger.js +0 -73
  1676. package/lib/http/middleware/roleResolver.js +0 -121
  1677. package/lib/http/routes/ai.js +0 -890
  1678. package/lib/http/routes/auth.js +0 -161
  1679. package/lib/http/routes/candidates.js +0 -812
  1680. package/lib/http/routes/commands.js +0 -343
  1681. package/lib/http/routes/extract.js +0 -199
  1682. package/lib/http/routes/guard.js +0 -283
  1683. package/lib/http/routes/guardRules.js +0 -405
  1684. package/lib/http/routes/health.js +0 -35
  1685. package/lib/http/routes/knowledge.js +0 -305
  1686. package/lib/http/routes/modules.js +0 -584
  1687. package/lib/http/routes/monitoring.js +0 -329
  1688. package/lib/http/routes/recipes.js +0 -174
  1689. package/lib/http/routes/remote.js +0 -1017
  1690. package/lib/http/routes/search.js +0 -452
  1691. package/lib/http/routes/skills.js +0 -248
  1692. package/lib/http/routes/snippets.js +0 -66
  1693. package/lib/http/routes/task.js +0 -418
  1694. package/lib/http/routes/violations.js +0 -94
  1695. package/lib/http/routes/wiki.js +0 -371
  1696. package/lib/http/utils/routeHelpers.js +0 -63
  1697. package/lib/http/utils/sse-sessions.js +0 -124
  1698. package/lib/http/utils/sse.js +0 -138
  1699. package/lib/infrastructure/audit/AuditLogger.js +0 -123
  1700. package/lib/infrastructure/audit/AuditStore.js +0 -219
  1701. package/lib/infrastructure/cache/CacheService.js +0 -151
  1702. package/lib/infrastructure/cache/GraphCache.js +0 -147
  1703. package/lib/infrastructure/cache/UnifiedCacheAdapter.js +0 -115
  1704. package/lib/infrastructure/config/ConfigLoader.js +0 -114
  1705. package/lib/infrastructure/config/Defaults.js +0 -92
  1706. package/lib/infrastructure/config/Paths.js +0 -167
  1707. package/lib/infrastructure/config/TriggerSymbol.js +0 -76
  1708. package/lib/infrastructure/database/DatabaseConnection.js +0 -137
  1709. package/lib/infrastructure/database/migrations/001_initial_schema.js +0 -314
  1710. package/lib/infrastructure/database/migrations/002_add_tasks.js +0 -88
  1711. package/lib/infrastructure/database/migrations/003_add_remote_commands.js +0 -27
  1712. package/lib/infrastructure/event/EventBus.js +0 -83
  1713. package/lib/infrastructure/external/ClipboardManager.js +0 -152
  1714. package/lib/infrastructure/external/NativeUi.js +0 -304
  1715. package/lib/infrastructure/external/OpenBrowser.js +0 -135
  1716. package/lib/infrastructure/logging/Logger.js +0 -184
  1717. package/lib/infrastructure/monitoring/ErrorTracker.js +0 -341
  1718. package/lib/infrastructure/monitoring/PerformanceMonitor.js +0 -281
  1719. package/lib/infrastructure/paths/HeaderResolver.js +0 -115
  1720. package/lib/infrastructure/paths/PathFinder.js +0 -133
  1721. package/lib/infrastructure/plugin/PluginManager.js +0 -139
  1722. package/lib/infrastructure/realtime/RealtimeService.js +0 -179
  1723. package/lib/infrastructure/vector/Chunker.js +0 -177
  1724. package/lib/infrastructure/vector/IndexingPipeline.js +0 -209
  1725. package/lib/infrastructure/vector/JsonVectorAdapter.js +0 -279
  1726. package/lib/infrastructure/vector/VectorStore.js +0 -94
  1727. package/lib/injection/ServiceContainer.js +0 -1063
  1728. package/lib/platform/ScreenCaptureService.js +0 -177
  1729. package/lib/platform/ios/index.js +0 -58
  1730. package/lib/platform/ios/routes/spm.js +0 -440
  1731. package/lib/platform/ios/snippet/PlaceholderConverter.js +0 -59
  1732. package/lib/platform/ios/snippet/XcodeCodec.js +0 -114
  1733. package/lib/platform/ios/spm/DependencyGraph.js +0 -234
  1734. package/lib/platform/ios/spm/PackageSwiftParser.js +0 -267
  1735. package/lib/platform/ios/spm/PolicyEngine.js +0 -91
  1736. package/lib/platform/ios/spm/SpmDiscoverer.js +0 -228
  1737. package/lib/platform/ios/spm/SpmHelper.js +0 -813
  1738. package/lib/platform/ios/xcode/SaveEventFilter.js +0 -165
  1739. package/lib/platform/ios/xcode/XcodeAutomation.js +0 -350
  1740. package/lib/platform/ios/xcode/XcodeImportResolver.js +0 -434
  1741. package/lib/platform/ios/xcode/XcodeIntegration.js +0 -680
  1742. package/lib/platform/ios/xcode/XcodeWriteUtils.js +0 -225
  1743. package/lib/repository/base/BaseRepository.js +0 -256
  1744. package/lib/repository/knowledge/KnowledgeRepository.impl.js +0 -355
  1745. package/lib/repository/task/TaskRepository.impl.js +0 -400
  1746. package/lib/repository/token/TokenUsageStore.js +0 -164
  1747. package/lib/service/agent/AgentEventBus.js +0 -207
  1748. package/lib/service/agent/AgentFactory.js +0 -535
  1749. package/lib/service/agent/AgentMessage.js +0 -240
  1750. package/lib/service/agent/AgentRouter.js +0 -228
  1751. package/lib/service/agent/AgentRuntime.js +0 -1056
  1752. package/lib/service/agent/AgentState.js +0 -217
  1753. package/lib/service/agent/ConversationStore.js +0 -420
  1754. package/lib/service/agent/IntentClassifier.js +0 -331
  1755. package/lib/service/agent/LarkTransport.js +0 -389
  1756. package/lib/service/agent/capabilities.js +0 -409
  1757. package/lib/service/agent/context/ContextWindow.js +0 -674
  1758. package/lib/service/agent/context/ExplorationTracker.js +0 -1385
  1759. package/lib/service/agent/core/ChatAgentPrompts.js +0 -161
  1760. package/lib/service/agent/core/LoopContext.js +0 -170
  1761. package/lib/service/agent/core/MessageAdapter.js +0 -223
  1762. package/lib/service/agent/core/ToolExecutionPipeline.js +0 -376
  1763. package/lib/service/agent/domain/ChatAgentTasks.js +0 -214
  1764. package/lib/service/agent/domain/EpisodicConsolidator.js +0 -367
  1765. package/lib/service/agent/domain/EvidenceCollector.js +0 -502
  1766. package/lib/service/agent/domain/insight-analyst.js +0 -245
  1767. package/lib/service/agent/domain/insight-gate.js +0 -474
  1768. package/lib/service/agent/domain/insight-producer.js +0 -270
  1769. package/lib/service/agent/domain/scan-prompts.js +0 -444
  1770. package/lib/service/agent/forced-summary.js +0 -266
  1771. package/lib/service/agent/index.js +0 -91
  1772. package/lib/service/agent/memory/ActiveContext.js +0 -940
  1773. package/lib/service/agent/memory/MemoryCoordinator.js +0 -662
  1774. package/lib/service/agent/memory/PersistentMemory.js +0 -1165
  1775. package/lib/service/agent/memory/SessionStore.js +0 -897
  1776. package/lib/service/agent/memory/index.js +0 -13
  1777. package/lib/service/agent/policies.js +0 -442
  1778. package/lib/service/agent/presets.js +0 -305
  1779. package/lib/service/agent/strategies.js +0 -756
  1780. package/lib/service/agent/tools/ToolRegistry.js +0 -215
  1781. package/lib/service/agent/tools/_shared.js +0 -61
  1782. package/lib/service/agent/tools/ai-analysis.js +0 -75
  1783. package/lib/service/agent/tools/ast-graph.js +0 -879
  1784. package/lib/service/agent/tools/composite.js +0 -567
  1785. package/lib/service/agent/tools/guard.js +0 -145
  1786. package/lib/service/agent/tools/index.js +0 -250
  1787. package/lib/service/agent/tools/infrastructure.js +0 -232
  1788. package/lib/service/agent/tools/knowledge-graph.js +0 -112
  1789. package/lib/service/agent/tools/lifecycle.js +0 -488
  1790. package/lib/service/agent/tools/project-access.js +0 -919
  1791. package/lib/service/agent/tools/query.js +0 -264
  1792. package/lib/service/agent/tools/scan-recipe.js +0 -189
  1793. package/lib/service/agent/tools/system-interaction.js +0 -476
  1794. package/lib/service/automation/ActionPipeline.js +0 -63
  1795. package/lib/service/automation/AutomationOrchestrator.js +0 -76
  1796. package/lib/service/automation/ContextCollector.js +0 -37
  1797. package/lib/service/automation/DirectiveDetector.js +0 -142
  1798. package/lib/service/automation/FileWatcher.js +0 -430
  1799. package/lib/service/automation/TriggerResolver.js +0 -71
  1800. package/lib/service/automation/handlers/AlinkHandler.js +0 -81
  1801. package/lib/service/automation/handlers/CreateHandler.js +0 -196
  1802. package/lib/service/automation/handlers/DraftHandler.js +0 -77
  1803. package/lib/service/automation/handlers/GuardHandler.js +0 -239
  1804. package/lib/service/automation/handlers/HeaderHandler.js +0 -51
  1805. package/lib/service/automation/handlers/SearchHandler.js +0 -305
  1806. package/lib/service/bootstrap/BootstrapTaskManager.js +0 -442
  1807. package/lib/service/candidate/CandidateAggregator.js +0 -52
  1808. package/lib/service/candidate/SimilarityService.js +0 -100
  1809. package/lib/service/context/RecipeExtractor.js +0 -344
  1810. package/lib/service/cursor/AgentInstructionsGenerator.js +0 -469
  1811. package/lib/service/cursor/CursorDeliveryPipeline.js +0 -745
  1812. package/lib/service/cursor/FileProtection.js +0 -119
  1813. package/lib/service/cursor/KnowledgeCompressor.js +0 -189
  1814. package/lib/service/cursor/RulesGenerator.js +0 -174
  1815. package/lib/service/cursor/SkillsSyncer.js +0 -320
  1816. package/lib/service/cursor/TokenBudget.js +0 -41
  1817. package/lib/service/cursor/TopicClassifier.js +0 -191
  1818. package/lib/service/guard/ComplianceReporter.js +0 -364
  1819. package/lib/service/guard/ExclusionManager.js +0 -280
  1820. package/lib/service/guard/GuardCheckEngine.js +0 -1063
  1821. package/lib/service/guard/GuardCodeChecks.js +0 -391
  1822. package/lib/service/guard/GuardCrossFileChecks.js +0 -326
  1823. package/lib/service/guard/GuardFeedbackLoop.js +0 -152
  1824. package/lib/service/guard/GuardPatternUtils.js +0 -187
  1825. package/lib/service/guard/GuardService.js +0 -323
  1826. package/lib/service/guard/RuleLearner.js +0 -324
  1827. package/lib/service/guard/SourceFileCollector.js +0 -116
  1828. package/lib/service/guard/ViolationsStore.js +0 -236
  1829. package/lib/service/knowledge/CodeEntityGraph.js +0 -1177
  1830. package/lib/service/knowledge/ConfidenceRouter.js +0 -161
  1831. package/lib/service/knowledge/KnowledgeFileWriter.js +0 -725
  1832. package/lib/service/knowledge/KnowledgeGraphService.js +0 -264
  1833. package/lib/service/knowledge/KnowledgeService.js +0 -932
  1834. package/lib/service/module/ModuleService.js +0 -1054
  1835. package/lib/service/quality/FeedbackCollector.js +0 -146
  1836. package/lib/service/quality/QualityScorer.js +0 -203
  1837. package/lib/service/recipe/RecipeCandidateValidator.js +0 -211
  1838. package/lib/service/recipe/RecipeParser.js +0 -309
  1839. package/lib/service/search/CoarseRanker.js +0 -111
  1840. package/lib/service/search/CrossEncoderReranker.js +0 -174
  1841. package/lib/service/search/InvertedIndex.js +0 -92
  1842. package/lib/service/search/MultiSignalRanker.js +0 -227
  1843. package/lib/service/search/RetrievalFunnel.js +0 -134
  1844. package/lib/service/search/SearchEngine.js +0 -811
  1845. package/lib/service/skills/EventAggregator.js +0 -204
  1846. package/lib/service/skills/SignalCollector.js +0 -640
  1847. package/lib/service/skills/SkillAdvisor.js +0 -363
  1848. package/lib/service/skills/SkillHooks.js +0 -136
  1849. package/lib/service/snippet/SnippetFactory.js +0 -192
  1850. package/lib/service/snippet/SnippetInstaller.js +0 -329
  1851. package/lib/service/snippet/codecs/SnippetCodec.js +0 -67
  1852. package/lib/service/snippet/codecs/VSCodeCodec.js +0 -102
  1853. package/lib/service/task/TaskGraphService.js +0 -650
  1854. package/lib/service/task/TaskKnowledgeBridge.js +0 -86
  1855. package/lib/service/task/TaskReadyEngine.js +0 -127
  1856. package/lib/service/wiki/WikiGenerator.js +0 -1038
  1857. package/lib/service/wiki/WikiRenderers.js +0 -1903
  1858. package/lib/service/wiki/WikiUtils.js +0 -1052
  1859. package/lib/shared/BootstrapEventEmitter.js +0 -123
  1860. package/lib/shared/DimensionCopyRegistry.js +0 -472
  1861. package/lib/shared/FieldSpec.js +0 -359
  1862. package/lib/shared/LanguageService.js +0 -757
  1863. package/lib/shared/PathGuard.js +0 -326
  1864. package/lib/shared/RecipeReadinessChecker.js +0 -78
  1865. package/lib/shared/StyleGuide.js +0 -107
  1866. package/lib/shared/UnifiedValidator.js +0 -355
  1867. package/lib/shared/constants.js +0 -161
  1868. package/lib/shared/errors/BaseError.js +0 -94
  1869. package/lib/shared/errors/index.js +0 -14
  1870. package/lib/shared/similarity.js +0 -118
  1871. package/lib/shared/token-utils.js +0 -50
  1872. package/lib/shared/utils/common.js +0 -76
  1873. package/scripts/bench-real-projects.mjs +0 -256
  1874. package/scripts/build-native-ui.js +0 -73
  1875. package/scripts/clear-old-vector-index.js +0 -47
  1876. package/scripts/clear-vector-cache.js +0 -49
  1877. package/scripts/collect-test-project-stats.mjs +0 -160
  1878. package/scripts/diagnose-mcp.js +0 -83
  1879. package/scripts/ensure-parse-package.js +0 -46
  1880. package/scripts/generate-recipe-drafts.js +0 -179
  1881. package/scripts/init-db.js +0 -30
  1882. package/scripts/init-snippets.js +0 -324
  1883. package/scripts/init-vector-db.js +0 -277
  1884. package/scripts/install-cursor-skill.js +0 -393
  1885. package/scripts/install-full.js +0 -45
  1886. package/scripts/install-vscode-copilot.js +0 -333
  1887. package/scripts/migrate-md-to-knowledge.mjs +0 -355
  1888. package/scripts/postinstall-safe.js +0 -98
  1889. package/scripts/recipe-audit.js +0 -253
  1890. package/scripts/release.js +0 -411
  1891. package/scripts/setup-mcp-config.js +0 -135
  1892. package/scripts/verify-context-api.js +0 -61
package/README.md CHANGED
@@ -44,26 +44,14 @@ That's it. After you approve some candidates, they become **Recipes** — struct
44
44
  ## How It Works
45
45
 
46
46
  ```
47
- ┌────────────┐ ┌────────────┐ ┌────────────┐ ┌────────────┐ ┌────────────┐
48
- │ ① Setup │──→ │ ② Cold │──→ │ ③ Target │──→ │ ④ Review │──→ │ ⑤ IDE │
49
- │ asd setup │ │ Start │ │ Scan │ │ Dashboard │ │ Delivery │
50
- └────────────┘ └────────────┘ └────────────┘ └────────────┘ └─────┬──────┘
51
-
52
- ┌───────────────────────────────────────────────────────────────────────┘
53
-
54
- ┌────────────┐ ┌────────────┐
55
- │ ⑥ AI Codes │──→ │ ⑦ New │──→ Back to ③
56
- │ by Rules │ │ Patterns │
57
- └────────────┘ └────────────┘
47
+ asd setup → asd coldstart → Dashboard review → IDE AI consumes Recipes → write code → asd ais rescan → loop
58
48
  ```
59
49
 
60
- 1. **`asd setup`** — Creates the workspace, SQLite DB, MCP configs for your IDEs, installs the VS Code extension.
61
- 2. **`asd coldstart`** — Scans your codebase from multiple angles (architecture, naming, error handling, etc.). Produces **Candidates** — pattern drafts for you to review.
62
- 3. **Review in Dashboard** — Approve, edit, or reject. Approved candidates become Recipes.
63
- 4. **IDE picks them up** — Via MCP, Cursor Rules, or Agent Skills. When AI generates code, it checks your Recipes first.
64
- 5. **Keep going** — As you write new code, scan again. The knowledge base grows with your project.
65
-
66
- You can also scan specific modules with `asd ais <target>`. Better yet, just describe what you want in Cursor using natural language — the AI will automatically invoke the knowledge base to scan and submit patterns for you.
50
+ 1. **`asd setup`** — Creates workspace, SQLite DB, MCP configs, installs VS Code extension.
51
+ 2. **`asd coldstart`** — Multi-angle codebase scan, produces **Candidates**.
52
+ 3. **Review in Dashboard** — Approve, edit, or reject. Approved Recipe.
53
+ 4. **IDE picks them up** — Via MCP, Cursor Rules, Agent Skills, or TaskGraph task context.
54
+ 5. **Keep going** — `asd ais <target>` for targeted scans, or describe what you want in Cursor.
67
55
 
68
56
  ## Dual Pipeline — Internal Agent & External Agent
69
57
 
@@ -81,30 +69,26 @@ Every core capability works through two fully independent pipelines. Pick whiche
81
69
 
82
70
  If no AI is available at all, a rule-based fallback still extracts basic knowledge from AST and Guard data.
83
71
 
84
- > **LLM quality matters.** Higher-capability models (Claude Opus/Sonnet, GPT-4o, Gemini 2.5 Pro) produce significantly better results — more accurate patterns, richer architectural insights, fewer false positives.
85
-
86
- ## What's in the Box
87
-
88
- **Pattern extraction** — AI reads your code, identifies reusable patterns, and structures them as Recipes with code, explanation, metadata, and usage guidelines. Supports ObjC, Swift, TypeScript, JavaScript, Python, Java, Kotlin, Go, Ruby (9 languages via Tree-sitter AST).
89
-
90
- **Search** — BM25 keyword matching → semantic reranking → quality scoring → multi-signal ranking. Works in Chinese and English.
91
-
92
- **Guard** — Regex and AST-based compliance rules derived from your Recipes. Run on files, modules, or the whole project. Hooks into CI with `asd guard:ci` and git pre-commit with `asd guard:staged`.
93
-
94
- **Dashboard** — Web UI (`asd ui`) for everything: browsing Recipes, reviewing Candidates, AI chat, knowledge graph visualization, Guard reports, module explorer, project wiki generation, and LLM config.
95
-
96
- **IDE integration** — MCP server (works with Cursor, VS Code, Qoder, Trae), VS Code extension (search, directives, CodeLens, Guard), Xcode support (file watcher, auto-insertion, snippet sync).
72
+ > **LLM quality matters.** Higher-capability models (Claude Opus 4 / Sonnet 4, GPT-5, Gemini 3 Pro) produce significantly better results — more accurate patterns, richer architectural insights, fewer false positives.
97
73
 
98
- **AI providers** — Google Gemini, OpenAI, Claude, DeepSeek, Ollama (local), with auto-fallback between them. Or no AI at all — the knowledge base works without it.
74
+ ## Dashboard
99
75
 
100
- ## Persistent Decisions & Context
76
+ Run `asd ui` to manage everything in one place:
101
77
 
102
- TaskGraph stores team decisions and task status in `.autosnippet/autosnippet.db` — AI assistants don't start from scratch every conversation.
78
+ <div align="center">
79
+ <img src="docs/images/dashboard-help-en.png" alt="Dashboard Help" width="800" />
80
+ </div>
103
81
 
104
- - **`autosnippet_task`** — Unified task & decision management: `prime` loads active decisions + tasks at session start; `record_decision` / `revise_decision` / `unpin_decision` persist team agreements; `create` / `claim` / `close` / `fail` / `defer` / `progress` / `decompose` for task CRUD.
105
- - **Auto-inject** — Every subsequent tool call carries active decisions automatically.
82
+ ## Features
106
83
 
107
- Access via CLI `asd task`, MCP tool `autosnippet_task`, or `#asd` in VS Code Agent Mode.
84
+ | Feature | Description |
85
+ |---------|-------------|
86
+ | **Pattern Extraction** | AI reads code → identifies reusable patterns → structures as Recipe. 9 languages (Tree-sitter AST) |
87
+ | **Search** | BM25 keyword → semantic rerank → quality score → multi-signal ranking. Chinese & English |
88
+ | **Guard** | Regex + AST compliance rules. `asd guard:ci` for CI, `asd guard:staged` for pre-commit |
89
+ | **CallGraph** | Static call graph analysis across 8 languages. MCP `call_graph` + `call_context` |
90
+ | **TaskGraph** | DAG task orchestration + tokenBudget-aware + persistent team decisions |
91
+ | **AI Providers** | Gemini, OpenAI, Claude, DeepSeek, Ollama, with auto-fallback |
108
92
 
109
93
  ## IDE Support
110
94
 
@@ -172,14 +156,6 @@ Recipes are Markdown files. SQLite is a read cache. If the DB breaks, `asd sync`
172
156
 
173
157
  Code from your phone. Send messages in Lark (Feishu) → they get injected into VS Code Copilot Agent Mode → results sent back to Lark. Task notifications with IDE screenshots are pushed back automatically.
174
158
 
175
- ```
176
- Phone (Lark) → Feishu Cloud (WSS) → Local API Server → VS Code → Copilot Agent Mode
177
- ↑ |
178
- └─────────────────────── Result notification + Screenshot ────────────────┘
179
- ```
180
-
181
- System commands: `/help` `/status` `/queue` `/cancel` `/clear` `/ping` `/screen`
182
-
183
159
  See [Lark Integration Guide](docs/lark-integration.en.md) for setup instructions.
184
160
 
185
161
  ## Configuration
@@ -201,20 +177,26 @@ ASD_AI_MODEL=llama3
201
177
  ## Architecture
202
178
 
203
179
  ```
204
- IDE Layer Cursor · VS Code · Trae · Qoder · Xcode · Dashboard
205
-
206
- MCP Server + HTTP API
207
-
208
- Service Layer Search · Knowledge · Guard · Chat · Bootstrap · Wiki
209
-
210
- Core Layer AST (9 lang) · KnowledgeGraph · RetrievalFunnel · QualityScorer
211
-
212
- Infrastructure SQLite · VectorStore · EventBus · AuditLog · DI Container (40+)
180
+ IDE Layer Cursor · VS Code · Trae · Qoder · Xcode · Dashboard · Lark
181
+
182
+ MCP Server (22 tools) + HTTP API
183
+
184
+ Agent Layer AgentRouter Preset AgentRuntime (ReAct loop)
185
+ ├── Strategy: Single / Pipeline / FanOut / Adaptive
186
+ ├── Capability: Conversation · CodeAnalysis · KnowledgeProduction · System
187
+ ├── Policy: Budget · Safety · QualityGate
188
+ └── Memory: ActiveContext SessionStore PersistentMemory
189
+
190
+ Service Layer Search · Knowledge · Guard · Chat · Bootstrap · Wiki · TaskGraph
191
+
192
+ Core Layer AST (9 lang) · CallGraph (8 lang) · KnowledgeGraph · RetrievalFunnel · QualityScorer
193
+
194
+ Infrastructure SQLite · VectorStore · EventBus · AuditLog · DI Container (40+) · ContextWindow
213
195
  ```
214
196
 
215
197
  ## Requirements
216
198
 
217
- - Node.js ≥ 20
199
+ - Node.js ≥ 22
218
200
  - macOS recommended (Xcode features need it; everything else is cross-platform)
219
201
  - better-sqlite3 (bundled)
220
202
 
@@ -45,8 +45,26 @@
45
45
  },
46
46
  "vector": {
47
47
  "enabled": true,
48
+ "adapter": "auto",
48
49
  "dimensions": 768,
49
- "indexPath": "./data/vector-index"
50
+ "indexPath": "./data/vector-index",
51
+ "hnsw": {
52
+ "M": 16,
53
+ "efConstruct": 200,
54
+ "efSearch": 100
55
+ },
56
+ "quantize": "auto",
57
+ "quantizeThreshold": 3000,
58
+ "persistence": {
59
+ "format": "binary",
60
+ "flushIntervalMs": 2000,
61
+ "flushBatchSize": 100
62
+ },
63
+ "hybrid": {
64
+ "enabled": true,
65
+ "rrfK": 60,
66
+ "alpha": 0.5
67
+ }
50
68
  },
51
69
  "qualityGate": {
52
70
  "maxErrors": 0,
@@ -0,0 +1,6 @@
1
+ function We(e,t){return function(){return e.apply(t,arguments)}}const{toString:mt}=Object.prototype,{getPrototypeOf:we}=Object,{iterator:re,toStringTag:Ke}=Symbol,se=(e=>t=>{const n=mt.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),F=e=>(e=e.toLowerCase(),t=>se(t)===e),oe=e=>t=>typeof t===e,{isArray:M}=Array,H=oe("undefined");function J(e){return e!==null&&!H(e)&&e.constructor!==null&&!H(e.constructor)&&A(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ve=F("ArrayBuffer");function yt(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ve(e.buffer),t}const bt=oe("string"),A=oe("function"),Xe=oe("number"),V=e=>e!==null&&typeof e=="object",wt=e=>e===!0||e===!1,Y=e=>{if(se(e)!=="object")return!1;const t=we(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Ke in e)&&!(re in e)},Rt=e=>{if(!V(e)||J(e))return!1;try{return Object.keys(e).length===0&&Object.getPrototypeOf(e)===Object.prototype}catch{return!1}},Et=F("Date"),gt=F("File"),St=e=>!!(e&&typeof e.uri<"u"),Ot=e=>e&&typeof e.getParts<"u",Tt=F("Blob"),At=F("FileList"),Ct=e=>V(e)&&A(e.pipe);function xt(){return typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}}const Ne=xt(),Pe=typeof Ne.FormData<"u"?Ne.FormData:void 0,_t=e=>{let t;return e&&(Pe&&e instanceof Pe||A(e.append)&&((t=se(e))==="formdata"||t==="object"&&A(e.toString)&&e.toString()==="[object FormData]"))},Nt=F("URLSearchParams"),[Pt,Ft,Ut,Lt]=["ReadableStream","Request","Response","Headers"].map(F),Dt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function W(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),M(e))for(r=0,s=e.length;r<s;r++)t.call(null,e[r],r,e);else{if(J(e))return;const o=n?Object.getOwnPropertyNames(e):Object.keys(e),i=o.length;let c;for(r=0;r<i;r++)c=o[r],t.call(null,e[c],c,e)}}function Ge(e,t){if(J(e))return null;t=t.toLowerCase();const n=Object.keys(e);let r=n.length,s;for(;r-- >0;)if(s=n[r],t===s.toLowerCase())return s;return null}const k=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Qe=e=>!H(e)&&e!==k;function he(){const{caseless:e,skipUndefined:t}=Qe(this)&&this||{},n={},r=(s,o)=>{if(o==="__proto__"||o==="constructor"||o==="prototype")return;const i=e&&Ge(n,o)||o;Y(n[i])&&Y(s)?n[i]=he(n[i],s):Y(s)?n[i]=he({},s):M(s)?n[i]=s.slice():(!t||!H(s))&&(n[i]=s)};for(let s=0,o=arguments.length;s<o;s++)arguments[s]&&W(arguments[s],r);return n}const Bt=(e,t,n,{allOwnKeys:r}={})=>(W(t,(s,o)=>{n&&A(s)?Object.defineProperty(e,o,{value:We(s,n),writable:!0,enumerable:!0,configurable:!0}):Object.defineProperty(e,o,{value:s,writable:!0,enumerable:!0,configurable:!0})},{allOwnKeys:r}),e),kt=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),jt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),Object.defineProperty(e.prototype,"constructor",{value:e,writable:!0,enumerable:!1,configurable:!0}),Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},qt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&we(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},It=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Ht=e=>{if(!e)return null;if(M(e))return e;let t=e.length;if(!Xe(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Mt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&we(Uint8Array)),$t=(e,t)=>{const r=(e&&e[re]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},zt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Jt=F("HTMLFormElement"),Vt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),Fe=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),Wt=F("RegExp"),Ze=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};W(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},Kt=e=>{Ze(e,(t,n)=>{if(A(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(A(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},vt=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return M(e)?r(e):r(String(e).split(t)),n},Xt=()=>{},Gt=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function Qt(e){return!!(e&&A(e.append)&&e[Ke]==="FormData"&&e[re])}const Zt=e=>{const t=new Array(10),n=(r,s)=>{if(V(r)){if(t.indexOf(r)>=0)return;if(J(r))return r;if(!("toJSON"in r)){t[s]=r;const o=M(r)?[]:{};return W(r,(i,c)=>{const p=n(i,s+1);!H(p)&&(o[c]=p)}),t[s]=void 0,o}}return r};return n(e,0)},Yt=F("AsyncFunction"),en=e=>e&&(V(e)||A(e))&&A(e.then)&&A(e.catch),Ye=((e,t)=>e?setImmediate:t?((n,r)=>(k.addEventListener("message",({source:s,data:o})=>{s===k&&o===n&&r.length&&r.shift()()},!1),s=>{r.push(s),k.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",A(k.postMessage)),tn=typeof queueMicrotask<"u"?queueMicrotask.bind(k):typeof process<"u"&&process.nextTick||Ye,nn=e=>e!=null&&A(e[re]),a={isArray:M,isArrayBuffer:ve,isBuffer:J,isFormData:_t,isArrayBufferView:yt,isString:bt,isNumber:Xe,isBoolean:wt,isObject:V,isPlainObject:Y,isEmptyObject:Rt,isReadableStream:Pt,isRequest:Ft,isResponse:Ut,isHeaders:Lt,isUndefined:H,isDate:Et,isFile:gt,isReactNativeBlob:St,isReactNative:Ot,isBlob:Tt,isRegExp:Wt,isFunction:A,isStream:Ct,isURLSearchParams:Nt,isTypedArray:Mt,isFileList:At,forEach:W,merge:he,extend:Bt,trim:Dt,stripBOM:kt,inherits:jt,toFlatObject:qt,kindOf:se,kindOfTest:F,endsWith:It,toArray:Ht,forEachEntry:$t,matchAll:zt,isHTMLForm:Jt,hasOwnProperty:Fe,hasOwnProp:Fe,reduceDescriptors:Ze,freezeMethods:Kt,toObjectSet:vt,toCamelCase:Vt,noop:Xt,toFiniteNumber:Gt,findKey:Ge,global:k,isContextDefined:Qe,isSpecCompliantForm:Qt,toJSONObject:Zt,isAsyncFn:Yt,isThenable:en,setImmediate:Ye,asap:tn,isIterable:nn};let y=class et extends Error{static from(t,n,r,s,o,i){const c=new et(t.message,n||t.code,r,s,o);return c.cause=t,c.name=t.name,t.status!=null&&c.status==null&&(c.status=t.status),i&&Object.assign(c,i),c}constructor(t,n,r,s,o){super(t),Object.defineProperty(this,"message",{value:t,enumerable:!0,writable:!0,configurable:!0}),this.name="AxiosError",this.isAxiosError=!0,n&&(this.code=n),r&&(this.config=r),s&&(this.request=s),o&&(this.response=o,this.status=o.status)}toJSON(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.status}}};y.ERR_BAD_OPTION_VALUE="ERR_BAD_OPTION_VALUE";y.ERR_BAD_OPTION="ERR_BAD_OPTION";y.ECONNABORTED="ECONNABORTED";y.ETIMEDOUT="ETIMEDOUT";y.ERR_NETWORK="ERR_NETWORK";y.ERR_FR_TOO_MANY_REDIRECTS="ERR_FR_TOO_MANY_REDIRECTS";y.ERR_DEPRECATED="ERR_DEPRECATED";y.ERR_BAD_RESPONSE="ERR_BAD_RESPONSE";y.ERR_BAD_REQUEST="ERR_BAD_REQUEST";y.ERR_CANCELED="ERR_CANCELED";y.ERR_NOT_SUPPORT="ERR_NOT_SUPPORT";y.ERR_INVALID_URL="ERR_INVALID_URL";const rn=null;function me(e){return a.isPlainObject(e)||a.isArray(e)}function tt(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ue(e,t,n){return e?e.concat(t).map(function(s,o){return s=tt(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function sn(e){return a.isArray(e)&&!e.some(me)}const on=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function ie(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(m,d){return!a.isUndefined(d[m])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,p=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function f(u){if(u===null)return"";if(a.isDate(u))return u.toISOString();if(a.isBoolean(u))return u.toString();if(!p&&a.isBlob(u))throw new y("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(u)||a.isTypedArray(u)?p&&typeof Blob=="function"?new Blob([u]):Buffer.from(u):u}function l(u,m,d){let w=u;if(a.isReactNative(t)&&a.isReactNativeBlob(u))return t.append(ue(d,m,o),f(u)),!1;if(u&&!d&&typeof u=="object"){if(a.endsWith(m,"{}"))m=r?m:m.slice(0,-2),u=JSON.stringify(u);else if(a.isArray(u)&&sn(u)||(a.isFileList(u)||a.endsWith(m,"[]"))&&(w=a.toArray(u)))return m=tt(m),w.forEach(function(E,O){!(a.isUndefined(E)||E===null)&&t.append(i===!0?ue([m],O,o):i===null?m:m+"[]",f(E))}),!1}return me(u)?!0:(t.append(ue(d,m,o),f(u)),!1)}const h=[],b=Object.assign(on,{defaultVisitor:l,convertValue:f,isVisitable:me});function g(u,m){if(!a.isUndefined(u)){if(h.indexOf(u)!==-1)throw Error("Circular reference detected in "+m.join("."));h.push(u),a.forEach(u,function(w,x){(!(a.isUndefined(w)||w===null)&&s.call(t,w,a.isString(x)?x.trim():x,m,b))===!0&&g(w,m?m.concat(x):[x])}),h.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return g(e),t}function Ue(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Re(e,t){this._pairs=[],e&&ie(e,this,t)}const nt=Re.prototype;nt.append=function(t,n){this._pairs.push([t,n])};nt.toString=function(t){const n=t?function(r){return t.call(this,r,Ue)}:Ue;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function an(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+")}function rt(e,t,n){if(!t)return e;const r=n&&n.encode||an,s=a.isFunction(n)?{serialize:n}:n,o=s&&s.serialize;let i;if(o?i=o(t,s):i=a.isURLSearchParams(t)?t.toString():new Re(t,s).toString(r),i){const c=e.indexOf("#");c!==-1&&(e=e.slice(0,c)),e+=(e.indexOf("?")===-1?"?":"&")+i}return e}class Le{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Ee={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1,legacyInterceptorReqResOrdering:!0},cn=typeof URLSearchParams<"u"?URLSearchParams:Re,ln=typeof FormData<"u"?FormData:null,un=typeof Blob<"u"?Blob:null,fn={isBrowser:!0,classes:{URLSearchParams:cn,FormData:ln,Blob:un},protocols:["http","https","file","blob","url","data"]},ge=typeof window<"u"&&typeof document<"u",ye=typeof navigator=="object"&&navigator||void 0,dn=ge&&(!ye||["ReactNative","NativeScript","NS"].indexOf(ye.product)<0),pn=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",hn=ge&&window.location.href||"http://localhost",mn=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:ge,hasStandardBrowserEnv:dn,hasStandardBrowserWebWorkerEnv:pn,navigator:ye,origin:hn},Symbol.toStringTag,{value:"Module"})),S={...mn,...fn};function yn(e,t){return ie(e,new S.classes.URLSearchParams,{visitor:function(n,r,s,o){return S.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)},...t})}function bn(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function wn(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r<s;r++)o=n[r],t[o]=e[o];return t}function st(e){function t(n,r,s,o){let i=n[o++];if(i==="__proto__")return!0;const c=Number.isFinite(+i),p=o>=n.length;return i=!i&&a.isArray(s)?s.length:i,p?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=wn(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(bn(r),s,n,0)}),n}return null}function Rn(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const K={transitional:Ee,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(st(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return yn(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const p=this.env&&this.env.FormData;return ie(c?{"files[]":t}:t,p&&new p,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Rn(t)):t}],transformResponse:[function(t){const n=this.transitional||K.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t,this.parseReviver)}catch(c){if(i)throw c.name==="SyntaxError"?y.from(c,y.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:S.classes.FormData,Blob:S.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{K.headers[e]={}});const En=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),gn=e=>{const t={};let n,r,s;return e&&e.split(`
2
+ `).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&En[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},De=Symbol("internals");function z(e){return e&&String(e).trim().toLowerCase()}function ee(e){return e===!1||e==null?e:a.isArray(e)?e.map(ee):String(e)}function Sn(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const On=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function fe(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function Tn(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function An(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}let C=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,p,f){const l=z(p);if(!l)throw new Error("header name must be a non-empty string");const h=a.findKey(s,l);(!h||s[h]===void 0||f===!0||f===void 0&&s[h]!==!1)&&(s[h||p]=ee(c))}const i=(c,p)=>a.forEach(c,(f,l)=>o(f,l,p));if(a.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(a.isString(t)&&(t=t.trim())&&!On(t))i(gn(t),n);else if(a.isObject(t)&&a.isIterable(t)){let c={},p,f;for(const l of t){if(!a.isArray(l))throw TypeError("Object iterator must return a key-value pair");c[f=l[0]]=(p=c[f])?a.isArray(p)?[...p,l[1]]:[p,l[1]]:l[1]}i(c,n)}else t!=null&&o(n,t,r);return this}get(t,n){if(t=z(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Sn(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=z(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||fe(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=z(i),i){const c=a.findKey(r,i);c&&(!n||fe(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||fe(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=ee(s),delete n[o];return}const c=t?Tn(o):String(o).trim();c!==o&&delete n[o],n[c]=ee(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(`
3
+ `)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[De]=this[De]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=z(i);r[c]||(An(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}};C.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(C.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(C);function de(e,t){const n=this||K,r=t||n,s=C.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function ot(e){return!!(e&&e.__CANCEL__)}let v=class extends y{constructor(t,n,r){super(t??"canceled",y.ERR_CANCELED,n,r),this.name="CanceledError",this.__CANCEL__=!0}};function it(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new y("Request failed with status code "+n.status,[y.ERR_BAD_REQUEST,y.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function Cn(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function xn(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(p){const f=Date.now(),l=r[o];i||(i=f),n[s]=p,r[s]=f;let h=o,b=0;for(;h!==s;)b+=n[h++],h=h%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),f-i<t)return;const g=l&&f-l;return g?Math.round(b*1e3/g):void 0}}function _n(e,t){let n=0,r=1e3/t,s,o;const i=(f,l=Date.now())=>{n=l,s=null,o&&(clearTimeout(o),o=null),e(...f)};return[(...f)=>{const l=Date.now(),h=l-n;h>=r?i(f,l):(s=f,o||(o=setTimeout(()=>{o=null,i(s)},r-h)))},()=>s&&i(s)]}const ne=(e,t,n=3)=>{let r=0;const s=xn(50,250);return _n(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,p=i-r,f=s(p),l=i<=c;r=i;const h={loaded:i,total:c,progress:c?i/c:void 0,bytes:p,rate:f||void 0,estimated:f&&c&&l?(c-i)/f:void 0,event:o,lengthComputable:c!=null,[t?"download":"upload"]:!0};e(h)},n)},Be=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},ke=e=>(...t)=>a.asap(()=>e(...t)),Nn=S.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,S.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(S.origin),S.navigator&&/(msie|trident)/i.test(S.navigator.userAgent)):()=>!0,Pn=S.hasStandardBrowserEnv?{write(e,t,n,r,s,o,i){if(typeof document>"u")return;const c=[`${e}=${encodeURIComponent(t)}`];a.isNumber(n)&&c.push(`expires=${new Date(n).toUTCString()}`),a.isString(r)&&c.push(`path=${r}`),a.isString(s)&&c.push(`domain=${s}`),o===!0&&c.push("secure"),a.isString(i)&&c.push(`SameSite=${i}`),document.cookie=c.join("; ")},read(e){if(typeof document>"u")return null;const t=document.cookie.match(new RegExp("(?:^|; )"+e+"=([^;]*)"));return t?decodeURIComponent(t[1]):null},remove(e){this.write(e,"",Date.now()-864e5,"/")}}:{write(){},read(){return null},remove(){}};function Fn(e){return typeof e!="string"?!1:/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Un(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function at(e,t,n){let r=!Fn(t);return e&&(r||n==!1)?Un(e,t):t}const je=e=>e instanceof C?{...e}:e;function q(e,t){t=t||{};const n={};function r(f,l,h,b){return a.isPlainObject(f)&&a.isPlainObject(l)?a.merge.call({caseless:b},f,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(f,l,h,b){if(a.isUndefined(l)){if(!a.isUndefined(f))return r(void 0,f,h,b)}else return r(f,l,h,b)}function o(f,l){if(!a.isUndefined(l))return r(void 0,l)}function i(f,l){if(a.isUndefined(l)){if(!a.isUndefined(f))return r(void 0,f)}else return r(void 0,l)}function c(f,l,h){if(h in t)return r(f,l);if(h in e)return r(void 0,f)}const p={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(f,l,h)=>s(je(f),je(l),h,!0)};return a.forEach(Object.keys({...e,...t}),function(l){if(l==="__proto__"||l==="constructor"||l==="prototype")return;const h=a.hasOwnProp(p,l)?p[l]:s,b=h(e[l],t[l],l);a.isUndefined(b)&&h!==c||(n[l]=b)}),n}const ct=e=>{const t=q({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;if(t.headers=i=C.from(i),t.url=rt(at(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):""))),a.isFormData(n)){if(S.hasStandardBrowserEnv||S.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if(a.isFunction(n.getHeaders)){const p=n.getHeaders(),f=["content-type","content-length"];Object.entries(p).forEach(([l,h])=>{f.includes(l.toLowerCase())&&i.set(l,h)})}}if(S.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&Nn(t.url))){const p=s&&o&&Pn.read(o);p&&i.set(s,p)}return t},Ln=typeof XMLHttpRequest<"u",Dn=Ln&&function(e){return new Promise(function(n,r){const s=ct(e);let o=s.data;const i=C.from(s.headers).normalize();let{responseType:c,onUploadProgress:p,onDownloadProgress:f}=s,l,h,b,g,u;function m(){g&&g(),u&&u(),s.cancelToken&&s.cancelToken.unsubscribe(l),s.signal&&s.signal.removeEventListener("abort",l)}let d=new XMLHttpRequest;d.open(s.method.toUpperCase(),s.url,!0),d.timeout=s.timeout;function w(){if(!d)return;const E=C.from("getAllResponseHeaders"in d&&d.getAllResponseHeaders()),P={data:!c||c==="text"||c==="json"?d.responseText:d.response,status:d.status,statusText:d.statusText,headers:E,config:e,request:d};it(function(_){n(_),m()},function(_){r(_),m()},P),d=null}"onloadend"in d?d.onloadend=w:d.onreadystatechange=function(){!d||d.readyState!==4||d.status===0&&!(d.responseURL&&d.responseURL.indexOf("file:")===0)||setTimeout(w)},d.onabort=function(){d&&(r(new y("Request aborted",y.ECONNABORTED,e,d)),d=null)},d.onerror=function(O){const P=O&&O.message?O.message:"Network Error",D=new y(P,y.ERR_NETWORK,e,d);D.event=O||null,r(D),d=null},d.ontimeout=function(){let O=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const P=s.transitional||Ee;s.timeoutErrorMessage&&(O=s.timeoutErrorMessage),r(new y(O,P.clarifyTimeoutError?y.ETIMEDOUT:y.ECONNABORTED,e,d)),d=null},o===void 0&&i.setContentType(null),"setRequestHeader"in d&&a.forEach(i.toJSON(),function(O,P){d.setRequestHeader(P,O)}),a.isUndefined(s.withCredentials)||(d.withCredentials=!!s.withCredentials),c&&c!=="json"&&(d.responseType=s.responseType),f&&([b,u]=ne(f,!0),d.addEventListener("progress",b)),p&&d.upload&&([h,g]=ne(p),d.upload.addEventListener("progress",h),d.upload.addEventListener("loadend",g)),(s.cancelToken||s.signal)&&(l=E=>{d&&(r(!E||E.type?new v(null,e,d):E),d.abort(),d=null)},s.cancelToken&&s.cancelToken.subscribe(l),s.signal&&(s.signal.aborted?l():s.signal.addEventListener("abort",l)));const x=Cn(s.url);if(x&&S.protocols.indexOf(x)===-1){r(new y("Unsupported protocol "+x+":",y.ERR_BAD_REQUEST,e));return}d.send(o||null)})},Bn=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const o=function(f){if(!s){s=!0,c();const l=f instanceof Error?f:this.reason;r.abort(l instanceof y?l:new v(l instanceof Error?l.message:l))}};let i=t&&setTimeout(()=>{i=null,o(new y(`timeout of ${t}ms exceeded`,y.ETIMEDOUT))},t);const c=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(f=>{f.unsubscribe?f.unsubscribe(o):f.removeEventListener("abort",o)}),e=null)};e.forEach(f=>f.addEventListener("abort",o));const{signal:p}=r;return p.unsubscribe=()=>a.asap(c),p}},kn=function*(e,t){let n=e.byteLength;if(n<t){yield e;return}let r=0,s;for(;r<n;)s=r+t,yield e.slice(r,s),r=s},jn=async function*(e,t){for await(const n of qn(e))yield*kn(n,t)},qn=async function*(e){if(e[Symbol.asyncIterator]){yield*e;return}const t=e.getReader();try{for(;;){const{done:n,value:r}=await t.read();if(n)break;yield r}}finally{await t.cancel()}},qe=(e,t,n,r)=>{const s=jn(e,t);let o=0,i,c=p=>{i||(i=!0,r&&r(p))};return new ReadableStream({async pull(p){try{const{done:f,value:l}=await s.next();if(f){c(),p.close();return}let h=l.byteLength;if(n){let b=o+=h;n(b)}p.enqueue(new Uint8Array(l))}catch(f){throw c(f),f}},cancel(p){return c(p),s.return()}},{highWaterMark:2})},Ie=64*1024,{isFunction:Z}=a,In=(({Request:e,Response:t})=>({Request:e,Response:t}))(a.global),{ReadableStream:He,TextEncoder:Me}=a.global,$e=(e,...t)=>{try{return!!e(...t)}catch{return!1}},Hn=e=>{e=a.merge.call({skipUndefined:!0},In,e);const{fetch:t,Request:n,Response:r}=e,s=t?Z(t):typeof fetch=="function",o=Z(n),i=Z(r);if(!s)return!1;const c=s&&Z(He),p=s&&(typeof Me=="function"?(u=>m=>u.encode(m))(new Me):async u=>new Uint8Array(await new n(u).arrayBuffer())),f=o&&c&&$e(()=>{let u=!1;const m=new n(S.origin,{body:new He,method:"POST",get duplex(){return u=!0,"half"}}).headers.has("Content-Type");return u&&!m}),l=i&&c&&$e(()=>a.isReadableStream(new r("").body)),h={stream:l&&(u=>u.body)};s&&["text","arrayBuffer","blob","formData","stream"].forEach(u=>{!h[u]&&(h[u]=(m,d)=>{let w=m&&m[u];if(w)return w.call(m);throw new y(`Response type '${u}' is not supported`,y.ERR_NOT_SUPPORT,d)})});const b=async u=>{if(u==null)return 0;if(a.isBlob(u))return u.size;if(a.isSpecCompliantForm(u))return(await new n(S.origin,{method:"POST",body:u}).arrayBuffer()).byteLength;if(a.isArrayBufferView(u)||a.isArrayBuffer(u))return u.byteLength;if(a.isURLSearchParams(u)&&(u=u+""),a.isString(u))return(await p(u)).byteLength},g=async(u,m)=>{const d=a.toFiniteNumber(u.getContentLength());return d??b(m)};return async u=>{let{url:m,method:d,data:w,signal:x,cancelToken:E,timeout:O,onDownloadProgress:P,onUploadProgress:D,responseType:_,headers:ce,withCredentials:X="same-origin",fetchOptions:Oe}=ct(u),Te=t||fetch;_=_?(_+"").toLowerCase():"text";let G=Bn([x,E&&E.toAbortSignal()],O),$=null;const B=G&&G.unsubscribe&&(()=>{G.unsubscribe()});let Ae;try{if(D&&f&&d!=="get"&&d!=="head"&&(Ae=await g(ce,w))!==0){let L=new n(m,{method:"POST",body:w,duplex:"half"}),I;if(a.isFormData(w)&&(I=L.headers.get("content-type"))&&ce.setContentType(I),L.body){const[le,Q]=Be(Ae,ne(ke(D)));w=qe(L.body,Ie,le,Q)}}a.isString(X)||(X=X?"include":"omit");const T=o&&"credentials"in n.prototype,Ce={...Oe,signal:G,method:d.toUpperCase(),headers:ce.normalize().toJSON(),body:w,duplex:"half",credentials:T?X:void 0};$=o&&new n(m,Ce);let U=await(o?Te($,Oe):Te(m,Ce));const xe=l&&(_==="stream"||_==="response");if(l&&(P||xe&&B)){const L={};["status","statusText","headers"].forEach(_e=>{L[_e]=U[_e]});const I=a.toFiniteNumber(U.headers.get("content-length")),[le,Q]=P&&Be(I,ne(ke(P),!0))||[];U=new r(qe(U.body,Ie,le,()=>{Q&&Q(),B&&B()}),L)}_=_||"text";let ht=await h[a.findKey(h,_)||"text"](U,u);return!xe&&B&&B(),await new Promise((L,I)=>{it(L,I,{data:ht,headers:C.from(U.headers),status:U.status,statusText:U.statusText,config:u,request:$})})}catch(T){throw B&&B(),T&&T.name==="TypeError"&&/Load failed|fetch/i.test(T.message)?Object.assign(new y("Network Error",y.ERR_NETWORK,u,$,T&&T.response),{cause:T.cause||T}):y.from(T,T&&T.code,u,$,T&&T.response)}}},Mn=new Map,lt=e=>{let t=e&&e.env||{};const{fetch:n,Request:r,Response:s}=t,o=[r,s,n];let i=o.length,c=i,p,f,l=Mn;for(;c--;)p=o[c],f=l.get(p),f===void 0&&l.set(p,f=c?new Map:Hn(t)),l=f;return f};lt();const Se={http:rn,xhr:Dn,fetch:{get:lt}};a.forEach(Se,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const ze=e=>`- ${e}`,$n=e=>a.isFunction(e)||e===null||e===!1;function zn(e,t){e=a.isArray(e)?e:[e];const{length:n}=e;let r,s;const o={};for(let i=0;i<n;i++){r=e[i];let c;if(s=r,!$n(r)&&(s=Se[(c=String(r)).toLowerCase()],s===void 0))throw new y(`Unknown adapter '${c}'`);if(s&&(a.isFunction(s)||(s=s.get(t))))break;o[c||"#"+i]=s}if(!s){const i=Object.entries(o).map(([p,f])=>`adapter ${p} `+(f===!1?"is not supported by the environment":"is not available in the build"));let c=n?i.length>1?`since :
4
+ `+i.map(ze).join(`
5
+ `):" "+ze(i[0]):"as no adapter specified";throw new y("There is no suitable adapter to dispatch the request "+c,"ERR_NOT_SUPPORT")}return s}const ut={getAdapter:zn,adapters:Se};function pe(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new v(null,e)}function Je(e){return pe(e),e.headers=C.from(e.headers),e.data=de.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),ut.getAdapter(e.adapter||K.adapter,e)(e).then(function(r){return pe(e),r.data=de.call(e,e.transformResponse,r),r.headers=C.from(r.headers),r},function(r){return ot(r)||(pe(e),r&&r.response&&(r.response.data=de.call(e,e.transformResponse,r.response),r.response.headers=C.from(r.response.headers))),Promise.reject(r)})}const ft="1.13.6",ae={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ae[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Ve={};ae.transitional=function(t,n,r){function s(o,i){return"[Axios v"+ft+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new y(s(i," has been removed"+(n?" in "+n:"")),y.ERR_DEPRECATED);return n&&!Ve[i]&&(Ve[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};ae.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function Jn(e,t,n){if(typeof e!="object")throw new y("options must be an object",y.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],p=c===void 0||i(c,o,e);if(p!==!0)throw new y("option "+o+" must be "+p,y.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new y("Unknown option "+o,y.ERR_BAD_OPTION)}}const te={assertOptions:Jn,validators:ae},N=te.validators;let j=class{constructor(t){this.defaults=t||{},this.interceptors={request:new Le,response:new Le}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=`
6
+ `+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=q(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&te.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean),legacyInterceptorReqResOrdering:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:te.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),te.assertOptions(n,{baseUrl:N.spelling("baseURL"),withXsrfToken:N.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],u=>{delete o[u]}),n.headers=C.concat(i,o);const c=[];let p=!0;this.interceptors.request.forEach(function(m){if(typeof m.runWhen=="function"&&m.runWhen(n)===!1)return;p=p&&m.synchronous;const d=n.transitional||Ee;d&&d.legacyInterceptorReqResOrdering?c.unshift(m.fulfilled,m.rejected):c.push(m.fulfilled,m.rejected)});const f=[];this.interceptors.response.forEach(function(m){f.push(m.fulfilled,m.rejected)});let l,h=0,b;if(!p){const u=[Je.bind(this),void 0];for(u.unshift(...c),u.push(...f),b=u.length,l=Promise.resolve(n);h<b;)l=l.then(u[h++],u[h++]);return l}b=c.length;let g=n;for(;h<b;){const u=c[h++],m=c[h++];try{g=u(g)}catch(d){m.call(this,d);break}}try{l=Je.call(this,g)}catch(u){return Promise.reject(u)}for(h=0,b=f.length;h<b;)l=l.then(f[h++],f[h++]);return l}getUri(t){t=q(this.defaults,t);const n=at(t.baseURL,t.url,t.allowAbsoluteUrls);return rt(n,t.params,t.paramsSerializer)}};a.forEach(["delete","get","head","options"],function(t){j.prototype[t]=function(n,r){return this.request(q(r||{},{method:t,url:n,data:(r||{}).data}))}});a.forEach(["post","put","patch"],function(t){function n(r){return function(o,i,c){return this.request(q(c||{},{method:t,headers:r?{"Content-Type":"multipart/form-data"}:{},url:o,data:i}))}}j.prototype[t]=n(),j.prototype[t+"Form"]=n(!0)});let Vn=class dt{constructor(t){if(typeof t!="function")throw new TypeError("executor must be a function.");let n;this.promise=new Promise(function(o){n=o});const r=this;this.promise.then(s=>{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new v(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new dt(function(s){t=s}),cancel:t}}};function Wn(e){return function(n){return e.apply(null,n)}}function Kn(e){return a.isObject(e)&&e.isAxiosError===!0}const be={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511,WebServerIsDown:521,ConnectionTimedOut:522,OriginIsUnreachable:523,TimeoutOccurred:524,SslHandshakeFailed:525,InvalidSslCertificate:526};Object.entries(be).forEach(([e,t])=>{be[t]=e});function pt(e){const t=new j(e),n=We(j.prototype.request,t);return a.extend(n,j.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return pt(q(e,s))},n}const R=pt(K);R.Axios=j;R.CanceledError=v;R.CancelToken=Vn;R.isCancel=ot;R.VERSION=ft;R.toFormData=ie;R.AxiosError=y;R.Cancel=R.CanceledError;R.all=function(t){return Promise.all(t)};R.spread=Wn;R.isAxiosError=Kn;R.mergeConfig=q;R.AxiosHeaders=C;R.formToJSON=e=>st(a.isHTMLForm(e)?new FormData(e):e);R.getAdapter=ut.getAdapter;R.HttpStatusCode=be;R.default=R;const{Axios:Qn,AxiosError:Zn,CanceledError:Yn,isCancel:er,CancelToken:tr,VERSION:nr,all:rr,Cancel:sr,isAxiosError:or,spread:ir,toFormData:ar,AxiosHeaders:cr,HttpStatusCode:lr,formToJSON:ur,getAdapter:fr,mergeConfig:dr}=R;export{R as a};
@@ -0,0 +1,9 @@
1
+ import{r as a,j as M,i as ot,g as qt,s as Vt,a as Dt,b as it,c as Lt,d as Kt,e as Jt,f as Zt,h as Qt,k as te,l as ee,m as bt,n as ne,o as se,p as oe,q as ie,S as re,H as ae,F as D,t as ue,u as At,v as F,w as rt,x as E,y as Tt,z as le,A as at,B as ce,C as O,D as q,E as ut,G as fe,I as he,J as V,K as de,L as me,M as pe,N as lt,O as ge,P as ve,Q as ct,R as ye,T as Pe,U as j,V as xe,W as we,X as Rt,Y as Ce,Z as Ee}from"./vendor-BZEJEVBn.js";const Z=a.createContext({});function Q(e){const t=a.useRef(null);return t.current===null&&(t.current=e()),t.current}const Se=typeof window<"u",It=Se?a.useLayoutEffect:a.useEffect,G=a.createContext(null),tt=a.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"});function ft(e,t){if(typeof e=="function")return e(t);e!=null&&(e.current=t)}function Me(...e){return t=>{let n=!1;const s=e.map(o=>{const i=ft(o,t);return!n&&typeof i=="function"&&(n=!0),i});if(n)return()=>{for(let o=0;o<s.length;o++){const i=s[o];typeof i=="function"?i():ft(e[o],null)}}}}function Ve(...e){return a.useCallback(Me(...e),e)}class De extends a.Component{getSnapshotBeforeUpdate(t){const n=this.props.childRef.current;if(n&&t.isPresent&&!this.props.isPresent&&this.props.pop!==!1){const s=n.offsetParent,o=ot(s)&&s.offsetWidth||0,i=ot(s)&&s.offsetHeight||0,r=this.props.sizeRef.current;r.height=n.offsetHeight||0,r.width=n.offsetWidth||0,r.top=n.offsetTop,r.left=n.offsetLeft,r.right=o-r.width-r.left,r.bottom=i-r.height-r.top}return null}componentDidUpdate(){}render(){return this.props.children}}function Le({children:e,isPresent:t,anchorX:n,anchorY:s,root:o,pop:i}){const r=a.useId(),l=a.useRef(null),p=a.useRef({width:0,height:0,top:0,left:0,right:0,bottom:0}),{nonce:h}=a.useContext(tt),m=e.props?.ref??e?.ref,c=Ve(l,m);return a.useInsertionEffect(()=>{const{width:u,height:d,top:f,left:g,right:v,bottom:y}=p.current;if(t||i===!1||!l.current||!u||!d)return;const P=n==="left"?`left: ${g}`:`right: ${v}`,w=s==="bottom"?`bottom: ${y}`:`top: ${f}`;l.current.dataset.motionPopId=r;const x=document.createElement("style");h&&(x.nonce=h);const L=o??document.head;return L.appendChild(x),x.sheet&&x.sheet.insertRule(`
2
+ [data-motion-pop-id="${r}"] {
3
+ position: absolute !important;
4
+ width: ${u}px !important;
5
+ height: ${d}px !important;
6
+ ${P}px !important;
7
+ ${w}px !important;
8
+ }
9
+ `),()=>{L.contains(x)&&L.removeChild(x)}},[t]),M.jsx(De,{isPresent:t,childRef:l,sizeRef:p,pop:i,children:i===!1?e:a.cloneElement(e,{ref:c})})}const be=({children:e,initial:t,isPresent:n,onExitComplete:s,custom:o,presenceAffectsLayout:i,mode:r,anchorX:l,anchorY:p,root:h})=>{const m=Q(Ae),c=a.useId();let u=!0,d=a.useMemo(()=>(u=!1,{id:c,initial:t,isPresent:n,custom:o,onExitComplete:f=>{m.set(f,!0);for(const g of m.values())if(!g)return;s&&s()},register:f=>(m.set(f,!1),()=>m.delete(f))}),[n,m,s]);return i&&u&&(d={...d}),a.useMemo(()=>{m.forEach((f,g)=>m.set(g,!1))},[n]),a.useEffect(()=>{!n&&!m.size&&s&&s()},[n]),e=M.jsx(Le,{pop:r==="popLayout",isPresent:n,anchorX:l,anchorY:p,root:h,children:e}),M.jsx(G.Provider,{value:d,children:e})};function Ae(){return new Map}function kt(e=!0){const t=a.useContext(G);if(t===null)return[!0,null];const{isPresent:n,onExitComplete:s,register:o}=t,i=a.useId();a.useEffect(()=>{if(e)return o(i)},[e]);const r=a.useCallback(()=>e&&s&&s(i),[i,s,e]);return!n&&s?[!1,r]:[!0]}const I=e=>e.key||"";function ht(e){const t=[];return a.Children.forEach(e,n=>{a.isValidElement(n)&&t.push(n)}),t}const Hn=({children:e,custom:t,initial:n=!0,onExitComplete:s,presenceAffectsLayout:o=!0,mode:i="sync",propagate:r=!1,anchorX:l="left",anchorY:p="top",root:h})=>{const[m,c]=kt(r),u=a.useMemo(()=>ht(e),[e]),d=r&&!m?[]:u.map(I),f=a.useRef(!0),g=a.useRef(u),v=Q(()=>new Map),y=a.useRef(new Set),[P,w]=a.useState(u),[x,L]=a.useState(u);It(()=>{f.current=!1,g.current=u;for(let S=0;S<x.length;S++){const C=I(x[S]);d.includes(C)?(v.delete(C),y.current.delete(C)):v.get(C)!==!0&&v.set(C,!1)}},[x,d.length,d.join("-")]);const B=[];if(u!==P){let S=[...u];for(let C=0;C<x.length;C++){const b=x[C],U=I(b);d.includes(U)||(S.splice(C,0,b),B.push(b))}return i==="wait"&&B.length&&(S=B),L(ht(S)),w(u),null}const{forceRender:Xt}=a.useContext(Z);return M.jsx(M.Fragment,{children:x.map(S=>{const C=I(S),b=r&&!m?!1:u===x||d.includes(C),U=()=>{if(y.current.has(C))return;if(y.current.add(C),v.has(C))v.set(C,!0);else return;let st=!0;v.forEach(Yt=>{Yt||(st=!1)}),st&&(Xt?.(),L(g.current),r&&c?.(),s&&s())};return M.jsx(be,{isPresent:b,initial:!f.current||n?void 0:!1,custom:t,presenceAffectsLayout:o,mode:i,root:h,onExitComplete:b?void 0:U,anchorX:l,anchorY:p,children:S},C)})})},jt=a.createContext({strict:!1}),dt={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]};let mt=!1;function Te(){if(mt)return;const e={};for(const t in dt)e[t]={isEnabled:n=>dt[t].some(s=>!!n[s])};Vt(e),mt=!0}function Ft(){return Te(),qt()}function Re(e){const t=Ft();for(const n in e)t[n]={...t[n],...e[n]};Vt(t)}const Ie=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","propagate","ignoreStrict","viewport"]);function W(e){return e.startsWith("while")||e.startsWith("drag")&&e!=="draggable"||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||Ie.has(e)}let Ot=e=>!W(e);function ke(e){typeof e=="function"&&(Ot=t=>t.startsWith("on")?!W(t):e(t))}try{ke(require("@emotion/is-prop-valid").default)}catch{}function je(e,t,n){const s={};for(const o in e)o==="values"&&typeof e.values=="object"||(Ot(o)||n===!0&&W(o)||!t&&!W(o)||e.draggable&&o.startsWith("onDrag"))&&(s[o]=e[o]);return s}const H=a.createContext({});function Fe(e,t){if(Dt(e)){const{initial:n,animate:s}=e;return{initial:n===!1||it(n)?n:void 0,animate:it(s)?s:void 0}}return e.inherit!==!1?t:{}}function Oe(e){const{initial:t,animate:n}=Fe(e,a.useContext(H));return a.useMemo(()=>({initial:t,animate:n}),[pt(t),pt(n)])}function pt(e){return Array.isArray(e)?e.join(" "):e}const et=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function Wt(e,t,n){for(const s in t)!Lt(t[s])&&!Kt(s,n)&&(e[s]=t[s])}function We({transformTemplate:e},t){return a.useMemo(()=>{const n=et();return Jt(n,t,e),Object.assign({},n.vars,n.style)},[t])}function Ge(e,t){const n=e.style||{},s={};return Wt(s,n,e),Object.assign(s,We(e,t)),s}function He(e,t){const n={},s=Ge(e,t);return e.drag&&e.dragListener!==!1&&(n.draggable=!1,s.userSelect=s.WebkitUserSelect=s.WebkitTouchCallout="none",s.touchAction=e.drag===!0?"none":`pan-${e.drag==="x"?"y":"x"}`),e.tabIndex===void 0&&(e.onTap||e.onTapStart||e.whileTap)&&(n.tabIndex=0),n.style=s,n}const Gt=()=>({...et(),attrs:{}});function Be(e,t,n,s){const o=a.useMemo(()=>{const i=Gt();return Zt(i,t,Qt(s),e.transformTemplate,e.style),{...i.attrs,style:{...i.style}}},[t]);if(e.style){const i={};Wt(i,e.style,e),o.style={...i,...o.style}}return o}const Ue=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function nt(e){return typeof e!="string"||e.includes("-")?!1:!!(Ue.indexOf(e)>-1||/[A-Z]/u.test(e))}function Ne(e,t,n,{latestValues:s},o,i=!1,r){const p=(r??nt(e)?Be:He)(t,s,o,e),h=je(t,typeof e=="string",i),m=e!==a.Fragment?{...h,...p,ref:n}:{},{children:c}=t,u=a.useMemo(()=>Lt(c)?c.get():c,[c]);return a.createElement(e,{...m,children:u})}function $e({scrapeMotionValuesFromProps:e,createRenderState:t},n,s,o){return{latestValues:ze(n,s,o,e),renderState:t()}}function ze(e,t,n,s){const o={},i=s(e,{});for(const u in i)o[u]=te(i[u]);let{initial:r,animate:l}=e;const p=Dt(e),h=ee(e);t&&h&&!p&&e.inherit!==!1&&(r===void 0&&(r=t.initial),l===void 0&&(l=t.animate));let m=n?n.initial===!1:!1;m=m||r===!1;const c=m?l:r;if(c&&typeof c!="boolean"&&!bt(c)){const u=Array.isArray(c)?c:[c];for(let d=0;d<u.length;d++){const f=ne(e,u[d]);if(f){const{transitionEnd:g,transition:v,...y}=f;for(const P in y){let w=y[P];if(Array.isArray(w)){const x=m?w.length-1:0;w=w[x]}w!==null&&(o[P]=w)}for(const P in g)o[P]=g[P]}}}return o}const Ht=e=>(t,n)=>{const s=a.useContext(H),o=a.useContext(G),i=()=>$e(e,t,s,o);return n?i():Q(i)},_e=Ht({scrapeMotionValuesFromProps:se,createRenderState:et}),Xe=Ht({scrapeMotionValuesFromProps:oe,createRenderState:Gt}),Ye=Symbol.for("motionComponentSymbol");function qe(e,t,n){const s=a.useRef(n);a.useInsertionEffect(()=>{s.current=n});const o=a.useRef(null);return a.useCallback(i=>{i&&e.onMount?.(i);const r=s.current;if(typeof r=="function")if(i){const l=r(i);typeof l=="function"&&(o.current=l)}else o.current?(o.current(),o.current=null):r(i);else r&&(r.current=i);t&&(i?t.mount(i):t.unmount())},[t])}const Bt=a.createContext({});function A(e){return e&&typeof e=="object"&&Object.prototype.hasOwnProperty.call(e,"current")}function Ke(e,t,n,s,o,i){const{visualElement:r}=a.useContext(H),l=a.useContext(jt),p=a.useContext(G),h=a.useContext(tt),m=h.reducedMotion,c=h.skipAnimations,u=a.useRef(null),d=a.useRef(!1);s=s||l.renderer,!u.current&&s&&(u.current=s(e,{visualState:t,parent:r,props:n,presenceContext:p,blockInitialAnimation:p?p.initial===!1:!1,reducedMotionConfig:m,skipAnimations:c,isSVG:i}),d.current&&u.current&&(u.current.manuallyAnimateOnMount=!0));const f=u.current,g=a.useContext(Bt);f&&!f.projection&&o&&(f.type==="html"||f.type==="svg")&&Je(u.current,n,o,g);const v=a.useRef(!1);a.useInsertionEffect(()=>{f&&v.current&&f.update(n,p)});const y=n[ie],P=a.useRef(!!y&&typeof window<"u"&&!window.MotionHandoffIsComplete?.(y)&&window.MotionHasOptimisedAnimation?.(y));return It(()=>{d.current=!0,f&&(v.current=!0,window.MotionIsMounted=!0,f.updateFeatures(),f.scheduleRenderMicrotask(),P.current&&f.animationState&&f.animationState.animateChanges())}),a.useEffect(()=>{f&&(!P.current&&f.animationState&&f.animationState.animateChanges(),P.current&&(queueMicrotask(()=>{window.MotionHandoffMarkAsComplete?.(y)}),P.current=!1),f.enteringChildren=void 0)}),f}function Je(e,t,n,s){const{layoutId:o,layout:i,drag:r,dragConstraints:l,layoutScroll:p,layoutRoot:h,layoutCrossfade:m}=t;e.projection=new n(e.latestValues,t["data-framer-portal-id"]?void 0:Ut(e.parent)),e.projection.setOptions({layoutId:o,layout:i,alwaysMeasureLayout:!!r||l&&A(l),visualElement:e,animationType:typeof i=="string"?i:"both",initialPromotionConfig:s,crossfade:m,layoutScroll:p,layoutRoot:h})}function Ut(e){if(e)return e.options.allowProjection!==!1?e.projection:Ut(e.parent)}function N(e,{forwardMotionProps:t=!1,type:n}={},s,o){s&&Re(s);const i=n?n==="svg":nt(e),r=i?Xe:_e;function l(h,m){let c;const u={...a.useContext(tt),...h,layoutId:Ze(h)},{isStatic:d}=u,f=Oe(h),g=r(h,d);if(!d&&typeof window<"u"){Qe();const v=tn(u);c=v.MeasureLayout,f.visualElement=Ke(e,g,u,o,v.ProjectionNode,i)}return M.jsxs(H.Provider,{value:f,children:[c&&f.visualElement?M.jsx(c,{visualElement:f.visualElement,...u}):null,Ne(e,h,qe(g,f.visualElement,m),g,d,t,i)]})}l.displayName=`motion.${typeof e=="string"?e:`create(${e.displayName??e.name??""})`}`;const p=a.forwardRef(l);return p[Ye]=e,p}function Ze({layoutId:e}){const t=a.useContext(Z).id;return t&&e!==void 0?t+"-"+e:e}function Qe(e,t){a.useContext(jt).strict}function tn(e){const t=Ft(),{drag:n,layout:s}=t;if(!n&&!s)return{};const o={...n,...s};return{MeasureLayout:n?.isEnabled(e)||s?.isEnabled(e)?o.MeasureLayout:void 0,ProjectionNode:o.ProjectionNode}}function en(e,t){if(typeof Proxy>"u")return N;const n=new Map,s=(i,r)=>N(i,r,e,t),o=(i,r)=>s(i,r);return new Proxy(o,{get:(i,r)=>r==="create"?s:(n.has(r)||n.set(r,N(r,void 0,e,t)),n.get(r))})}const nn=(e,t)=>t.isSVG??nt(e)?new re(t):new ae(t,{allowProjection:e!==a.Fragment});class sn extends D{constructor(t){super(t),t.animationState||(t.animationState=ue(t))}updateAnimationControlsSubscription(){const{animate:t}=this.node.getProps();bt(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:t}=this.node.getProps(),{animate:n}=this.node.prevProps||{};t!==n&&this.updateAnimationControlsSubscription()}unmount(){this.node.animationState.reset(),this.unmountControls?.()}}let on=0;class rn extends D{constructor(){super(...arguments),this.id=on++}update(){if(!this.node.presenceContext)return;const{isPresent:t,onExitComplete:n}=this.node.presenceContext,{isPresent:s}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===s)return;const o=this.node.animationState.setActive("exit",!t);n&&!t&&o.then(()=>{n(this.id)})}mount(){const{register:t,onExitComplete:n}=this.node.presenceContext||{};n&&n(this.id),t&&(this.unmount=t(this.id))}unmount(){}}const an={animation:{Feature:sn},exit:{Feature:rn}};function R(e){return{point:{x:e.pageX,y:e.pageY}}}const un=e=>t=>At(t)&&e(t,R(t));function T(e,t,n,s){return F(e,t,un(n),s)}const Nt=({current:e})=>e?e.ownerDocument.defaultView:null,gt=(e,t)=>Math.abs(e-t);function ln(e,t){const n=gt(e.x,t.x),s=gt(e.y,t.y);return Math.sqrt(n**2+s**2)}const vt=new Set(["auto","scroll"]);class $t{constructor(t,n,{transformPagePoint:s,contextWindow:o=window,dragSnapToOrigin:i=!1,distanceThreshold:r=3,element:l}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.scrollPositions=new Map,this.removeScrollListeners=null,this.onElementScroll=d=>{this.handleScroll(d.target)},this.onWindowScroll=()=>{this.handleScroll(window)},this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const d=z(this.lastMoveEventInfo,this.history),f=this.startEvent!==null,g=ln(d.offset,{x:0,y:0})>=this.distanceThreshold;if(!f&&!g)return;const{point:v}=d,{timestamp:y}=rt;this.history.push({...v,timestamp:y});const{onStart:P,onMove:w}=this.handlers;f||(P&&P(this.lastMoveEvent,d),this.startEvent=this.lastMoveEvent),w&&w(this.lastMoveEvent,d)},this.handlePointerMove=(d,f)=>{this.lastMoveEvent=d,this.lastMoveEventInfo=$(f,this.transformPagePoint),E.update(this.updatePoint,!0)},this.handlePointerUp=(d,f)=>{this.end();const{onEnd:g,onSessionEnd:v,resumeAnimation:y}=this.handlers;if((this.dragSnapToOrigin||!this.startEvent)&&y&&y(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const P=z(d.type==="pointercancel"?this.lastMoveEventInfo:$(f,this.transformPagePoint),this.history);this.startEvent&&g&&g(d,P),v&&v(d,P)},!At(t))return;this.dragSnapToOrigin=i,this.handlers=n,this.transformPagePoint=s,this.distanceThreshold=r,this.contextWindow=o||window;const p=R(t),h=$(p,this.transformPagePoint),{point:m}=h,{timestamp:c}=rt;this.history=[{...m,timestamp:c}];const{onSessionStart:u}=n;u&&u(t,z(h,this.history)),this.removeListeners=Tt(T(this.contextWindow,"pointermove",this.handlePointerMove),T(this.contextWindow,"pointerup",this.handlePointerUp),T(this.contextWindow,"pointercancel",this.handlePointerUp)),l&&this.startScrollTracking(l)}startScrollTracking(t){let n=t.parentElement;for(;n;){const s=getComputedStyle(n);(vt.has(s.overflowX)||vt.has(s.overflowY))&&this.scrollPositions.set(n,{x:n.scrollLeft,y:n.scrollTop}),n=n.parentElement}this.scrollPositions.set(window,{x:window.scrollX,y:window.scrollY}),window.addEventListener("scroll",this.onElementScroll,{capture:!0}),window.addEventListener("scroll",this.onWindowScroll),this.removeScrollListeners=()=>{window.removeEventListener("scroll",this.onElementScroll,{capture:!0}),window.removeEventListener("scroll",this.onWindowScroll)}}handleScroll(t){const n=this.scrollPositions.get(t);if(!n)return;const s=t===window,o=s?{x:window.scrollX,y:window.scrollY}:{x:t.scrollLeft,y:t.scrollTop},i={x:o.x-n.x,y:o.y-n.y};i.x===0&&i.y===0||(s?this.lastMoveEventInfo&&(this.lastMoveEventInfo.point.x+=i.x,this.lastMoveEventInfo.point.y+=i.y):this.history.length>0&&(this.history[0].x-=i.x,this.history[0].y-=i.y),this.scrollPositions.set(t,o),E.update(this.updatePoint,!0))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),this.removeScrollListeners&&this.removeScrollListeners(),this.scrollPositions.clear(),le(this.updatePoint)}}function $(e,t){return t?{point:t(e.point)}:e}function yt(e,t){return{x:e.x-t.x,y:e.y-t.y}}function z({point:e},t){return{point:e,delta:yt(e,zt(t)),offset:yt(e,cn(t)),velocity:fn(t,.1)}}function cn(e){return e[0]}function zt(e){return e[e.length-1]}function fn(e,t){if(e.length<2)return{x:0,y:0};let n=e.length-1,s=null;const o=zt(e);for(;n>=0&&(s=e[n],!(o.timestamp-s.timestamp>at(t)));)n--;if(!s)return{x:0,y:0};s===e[0]&&e.length>2&&o.timestamp-s.timestamp>at(t)*2&&(s=e[1]);const i=ce(o.timestamp-s.timestamp);if(i===0)return{x:0,y:0};const r={x:(o.x-s.x)/i,y:(o.y-s.y)/i};return r.x===1/0&&(r.x=0),r.y===1/0&&(r.y=0),r}function hn(e,{min:t,max:n},s){return t!==void 0&&e<t?e=s?O(t,e,s.min):Math.max(e,t):n!==void 0&&e>n&&(e=s?O(n,e,s.max):Math.min(e,n)),e}function Pt(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function dn(e,{top:t,left:n,bottom:s,right:o}){return{x:Pt(e.x,n,o),y:Pt(e.y,t,s)}}function xt(e,t){let n=t.min-e.min,s=t.max-e.max;return t.max-t.min<e.max-e.min&&([n,s]=[s,n]),{min:n,max:s}}function mn(e,t){return{x:xt(e.x,t.x),y:xt(e.y,t.y)}}function pn(e,t){let n=.5;const s=q(e),o=q(t);return o>s?n=ut(t.min,t.max-s,e.min):s>o&&(n=ut(e.min,e.max-o,t.min)),fe(0,1,n)}function gn(e,t){const n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}const K=.35;function vn(e=K){return e===!1?e=0:e===!0&&(e=K),{x:wt(e,"left","right"),y:wt(e,"top","bottom")}}function wt(e,t,n){return{min:Ct(e,t),max:Ct(e,n)}}function Ct(e,t){return typeof e=="number"?e:e[t]||0}const yn=new WeakMap;class Pn{constructor(t){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=he(),this.latestPointerEvent=null,this.latestPanInfo=null,this.visualElement=t}start(t,{snapToCursor:n=!1,distanceThreshold:s}={}){const{presenceContext:o}=this.visualElement;if(o&&o.isPresent===!1)return;const i=c=>{n&&this.snapToCursor(R(c).point),this.stopAnimation()},r=(c,u)=>{const{drag:d,dragPropagation:f,onDragStart:g}=this.getProps();if(d&&!f&&(this.openDragLock&&this.openDragLock(),this.openDragLock=ve(d),!this.openDragLock))return;this.latestPointerEvent=c,this.latestPanInfo=u,this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),V(y=>{let P=this.getAxisMotionValue(y).get()||0;if(ye.test(P)){const{projection:w}=this.visualElement;if(w&&w.layout){const x=w.layout.layoutBox[y];x&&(P=q(x)*(parseFloat(P)/100))}}this.originPoint[y]=P}),g&&E.update(()=>g(c,u),!1,!0),lt(this.visualElement,"transform");const{animationState:v}=this.visualElement;v&&v.setActive("whileDrag",!0)},l=(c,u)=>{this.latestPointerEvent=c,this.latestPanInfo=u;const{dragPropagation:d,dragDirectionLock:f,onDirectionLock:g,onDrag:v}=this.getProps();if(!d&&!this.openDragLock)return;const{offset:y}=u;if(f&&this.currentDirection===null){this.currentDirection=wn(y),this.currentDirection!==null&&g&&g(this.currentDirection);return}this.updateAxis("x",u.point,y),this.updateAxis("y",u.point,y),this.visualElement.render(),v&&E.update(()=>v(c,u),!1,!0)},p=(c,u)=>{this.latestPointerEvent=c,this.latestPanInfo=u,this.stop(c,u),this.latestPointerEvent=null,this.latestPanInfo=null},h=()=>{const{dragSnapToOrigin:c}=this.getProps();(c||this.constraints)&&this.startAnimation({x:0,y:0})},{dragSnapToOrigin:m}=this.getProps();this.panSession=new $t(t,{onSessionStart:i,onStart:r,onMove:l,onSessionEnd:p,resumeAnimation:h},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:m,distanceThreshold:s,contextWindow:Nt(this.visualElement),element:this.visualElement.current})}stop(t,n){const s=t||this.latestPointerEvent,o=n||this.latestPanInfo,i=this.isDragging;if(this.cancel(),!i||!o||!s)return;const{velocity:r}=o;this.startAnimation(r);const{onDragEnd:l}=this.getProps();l&&E.postRender(()=>l(s,o))}cancel(){this.isDragging=!1;const{projection:t,animationState:n}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.endPanSession();const{dragPropagation:s}=this.getProps();!s&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),n&&n.setActive("whileDrag",!1)}endPanSession(){this.panSession&&this.panSession.end(),this.panSession=void 0}updateAxis(t,n,s){const{drag:o}=this.getProps();if(!s||!k(t,o,this.currentDirection))return;const i=this.getAxisMotionValue(t);let r=this.originPoint[t]+s[t];this.constraints&&this.constraints[t]&&(r=hn(r,this.constraints[t],this.elastic[t])),i.set(r)}resolveConstraints(){const{dragConstraints:t,dragElastic:n}=this.getProps(),s=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):this.visualElement.projection?.layout,o=this.constraints;t&&A(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):t&&s?this.constraints=dn(s.layoutBox,t):this.constraints=!1,this.elastic=vn(n),o!==this.constraints&&!A(t)&&s&&this.constraints&&!this.hasMutatedConstraints&&V(i=>{this.constraints!==!1&&this.getAxisMotionValue(i)&&(this.constraints[i]=gn(s.layoutBox[i],this.constraints[i]))})}resolveRefConstraints(){const{dragConstraints:t,onMeasureDragConstraints:n}=this.getProps();if(!t||!A(t))return!1;const s=t.current,{projection:o}=this.visualElement;if(!o||!o.layout)return!1;const i=de(s,o.root,this.visualElement.getTransformPagePoint());let r=mn(o.layout.layoutBox,i);if(n){const l=n(me(r));this.hasMutatedConstraints=!!l,l&&(r=pe(l))}return r}startAnimation(t){const{drag:n,dragMomentum:s,dragElastic:o,dragTransition:i,dragSnapToOrigin:r,onDragTransitionEnd:l}=this.getProps(),p=this.constraints||{},h=V(m=>{if(!k(m,n,this.currentDirection))return;let c=p&&p[m]||{};r&&(c={min:0,max:0});const u=o?200:1e6,d=o?40:1e7,f={type:"inertia",velocity:s?t[m]:0,bounceStiffness:u,bounceDamping:d,timeConstant:750,restDelta:1,restSpeed:10,...i,...c};return this.startAxisValueAnimation(m,f)});return Promise.all(h).then(l)}startAxisValueAnimation(t,n){const s=this.getAxisMotionValue(t);return lt(this.visualElement,t),s.start(ge(t,s,0,n,this.visualElement,!1))}stopAnimation(){V(t=>this.getAxisMotionValue(t).stop())}getAxisMotionValue(t){const n=`_drag${t.toUpperCase()}`,s=this.visualElement.getProps(),o=s[n];return o||this.visualElement.getValue(t,(s.initial?s.initial[t]:void 0)||0)}snapToCursor(t){V(n=>{const{drag:s}=this.getProps();if(!k(n,s,this.currentDirection))return;const{projection:o}=this.visualElement,i=this.getAxisMotionValue(n);if(o&&o.layout){const{min:r,max:l}=o.layout.layoutBox[n],p=i.get()||0;i.set(t[n]-O(r,l,.5)+p)}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:t,dragConstraints:n}=this.getProps(),{projection:s}=this.visualElement;if(!A(n)||!s||!this.constraints)return;this.stopAnimation();const o={x:0,y:0};V(r=>{const l=this.getAxisMotionValue(r);if(l&&this.constraints!==!1){const p=l.get();o[r]=pn({min:p,max:p},this.constraints[r])}});const{transformTemplate:i}=this.visualElement.getProps();this.visualElement.current.style.transform=i?i({},""):"none",s.root&&s.root.updateScroll(),s.updateLayout(),this.constraints=!1,this.resolveConstraints(),V(r=>{if(!k(r,t,null))return;const l=this.getAxisMotionValue(r),{min:p,max:h}=this.constraints[r];l.set(O(p,h,o[r]))}),this.visualElement.render()}addListeners(){if(!this.visualElement.current)return;yn.set(this.visualElement,this);const t=this.visualElement.current,n=T(t,"pointerdown",h=>{const{drag:m,dragListener:c=!0}=this.getProps(),u=h.target,d=u!==t&&Pe(u);m&&c&&!d&&this.start(h)});let s;const o=()=>{const{dragConstraints:h}=this.getProps();A(h)&&h.current&&(this.constraints=this.resolveRefConstraints(),s||(s=xn(t,h.current,()=>this.scalePositionWithinConstraints())))},{projection:i}=this.visualElement,r=i.addEventListener("measure",o);i&&!i.layout&&(i.root&&i.root.updateScroll(),i.updateLayout()),E.read(o);const l=F(window,"resize",()=>this.scalePositionWithinConstraints()),p=i.addEventListener("didUpdate",(({delta:h,hasLayoutChanged:m})=>{this.isDragging&&m&&(V(c=>{const u=this.getAxisMotionValue(c);u&&(this.originPoint[c]+=h[c].translate,u.set(u.get()+h[c].translate))}),this.visualElement.render())}));return()=>{l(),n(),r(),p&&p(),s&&s()}}getProps(){const t=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:s=!1,dragPropagation:o=!1,dragConstraints:i=!1,dragElastic:r=K,dragMomentum:l=!0}=t;return{...t,drag:n,dragDirectionLock:s,dragPropagation:o,dragConstraints:i,dragElastic:r,dragMomentum:l}}}function Et(e){let t=!0;return()=>{if(t){t=!1;return}e()}}function xn(e,t,n){const s=ct(e,Et(n)),o=ct(t,Et(n));return()=>{s(),o()}}function k(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function wn(e,t=10){let n=null;return Math.abs(e.y)>t?n="y":Math.abs(e.x)>t&&(n="x"),n}class Cn extends D{constructor(t){super(t),this.removeGroupControls=j,this.removeListeners=j,this.controls=new Pn(t)}mount(){const{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||j}update(){const{dragControls:t}=this.node.getProps(),{dragControls:n}=this.node.prevProps||{};t!==n&&(this.removeGroupControls(),t&&(this.removeGroupControls=t.subscribe(this.controls)))}unmount(){this.removeGroupControls(),this.removeListeners(),this.controls.isDragging||this.controls.endPanSession()}}const _=e=>(t,n)=>{e&&E.update(()=>e(t,n),!1,!0)};class En extends D{constructor(){super(...arguments),this.removePointerDownListener=j}onPointerDown(t){this.session=new $t(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Nt(this.node)})}createPanHandlers(){const{onPanSessionStart:t,onPanStart:n,onPan:s,onPanEnd:o}=this.node.getProps();return{onSessionStart:_(t),onStart:_(n),onMove:_(s),onEnd:(i,r)=>{delete this.session,o&&E.postRender(()=>o(i,r))}}}mount(){this.removePointerDownListener=T(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}let X=!1;class Sn extends a.Component{componentDidMount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:s,layoutId:o}=this.props,{projection:i}=t;i&&(n.group&&n.group.add(i),s&&s.register&&o&&s.register(i),X&&i.root.didUpdate(),i.addEventListener("animationComplete",()=>{this.safeToRemove()}),i.setOptions({...i.options,layoutDependency:this.props.layoutDependency,onExitComplete:()=>this.safeToRemove()})),we.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){const{layoutDependency:n,visualElement:s,drag:o,isPresent:i}=this.props,{projection:r}=s;return r&&(r.isPresent=i,t.layoutDependency!==n&&r.setOptions({...r.options,layoutDependency:n}),X=!0,o||t.layoutDependency!==n||n===void 0||t.isPresent!==i?r.willUpdate():this.safeToRemove(),t.isPresent!==i&&(i?r.promote():r.relegate()||E.postRender(()=>{const l=r.getStack();(!l||!l.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),xe.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:t,layoutGroup:n,switchLayoutGroup:s}=this.props,{projection:o}=t;X=!0,o&&(o.scheduleCheckAfterUnmount(),n&&n.group&&n.group.remove(o),s&&s.deregister&&s.deregister(o))}safeToRemove(){const{safeToRemove:t}=this.props;t&&t()}render(){return null}}function _t(e){const[t,n]=kt(),s=a.useContext(Z);return M.jsx(Sn,{...e,layoutGroup:s,switchLayoutGroup:a.useContext(Bt),isPresent:t,safeToRemove:n})}const Mn={pan:{Feature:En},drag:{Feature:Cn,ProjectionNode:Rt,MeasureLayout:_t}};function St(e,t,n){const{props:s}=e;e.animationState&&s.whileHover&&e.animationState.setActive("whileHover",n==="Start");const o="onHover"+n,i=s[o];i&&E.postRender(()=>i(t,R(t)))}class Vn extends D{mount(){const{current:t}=this.node;t&&(this.unmount=Ce(t,(n,s)=>(St(this.node,s,"Start"),o=>St(this.node,o,"End"))))}unmount(){}}class Dn extends D{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch{t=!0}!t||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=Tt(F(this.node.current,"focus",()=>this.onFocus()),F(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}function Mt(e,t,n){const{props:s}=e;if(e.current instanceof HTMLButtonElement&&e.current.disabled)return;e.animationState&&s.whileTap&&e.animationState.setActive("whileTap",n==="Start");const o="onTap"+(n==="End"?"":n),i=s[o];i&&E.postRender(()=>i(t,R(t)))}class Ln extends D{mount(){const{current:t}=this.node;if(!t)return;const{globalTapTarget:n,propagate:s}=this.node.props;this.unmount=Ee(t,(o,i)=>(Mt(this.node,i,"Start"),(r,{success:l})=>Mt(this.node,r,l?"End":"Cancel")),{useGlobalTarget:n,stopPropagation:s?.tap===!1})}unmount(){}}const J=new WeakMap,Y=new WeakMap,bn=e=>{const t=J.get(e.target);t&&t(e)},An=e=>{e.forEach(bn)};function Tn({root:e,...t}){const n=e||document;Y.has(n)||Y.set(n,{});const s=Y.get(n),o=JSON.stringify(t);return s[o]||(s[o]=new IntersectionObserver(An,{root:e,...t})),s[o]}function Rn(e,t,n){const s=Tn(t);return J.set(e,n),s.observe(e),()=>{J.delete(e),s.unobserve(e)}}const In={some:0,all:1};class kn extends D{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:t={}}=this.node.getProps(),{root:n,margin:s,amount:o="some",once:i}=t,r={root:n?n.current:void 0,rootMargin:s,threshold:typeof o=="number"?o:In[o]},l=p=>{const{isIntersecting:h}=p;if(this.isInView===h||(this.isInView=h,i&&!h&&this.hasEnteredView))return;h&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",h);const{onViewportEnter:m,onViewportLeave:c}=this.node.getProps(),u=h?m:c;u&&u(p)};return Rn(this.node.current,r,l)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver>"u")return;const{props:t,prevProps:n}=this.node;["amount","margin","root"].some(jn(t,n))&&this.startObserver()}unmount(){}}function jn({viewport:e={}},{viewport:t={}}={}){return n=>e[n]!==t[n]}const Fn={inView:{Feature:kn},tap:{Feature:Ln},focus:{Feature:Dn},hover:{Feature:Vn}},On={layout:{ProjectionNode:Rt,MeasureLayout:_t}},Wn={...an,...Fn,...Mn,...On},Bn=en(Wn,nn);export{Hn as A,Bn as m};
@@ -0,0 +1 @@
1
+ import{r as y}from"./vendor-BZEJEVBn.js";const k=(...t)=>t.filter((a,c,o)=>!!a&&a.trim()!==""&&o.indexOf(a)===c).join(" ").trim();const M=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const _=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(a,c,o)=>o?o.toUpperCase():c.toLowerCase());const s=t=>{const a=_(t);return a.charAt(0).toUpperCase()+a.slice(1)};var m={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const x=t=>{for(const a in t)if(a.startsWith("aria-")||a==="role"||a==="title")return!0;return!1};const v=y.forwardRef(({color:t="currentColor",size:a=24,strokeWidth:c=2,absoluteStrokeWidth:o,className:n="",children:h,iconNode:r,...d},i)=>y.createElement("svg",{ref:i,...m,width:a,height:a,stroke:t,strokeWidth:o?Number(c)*24/Number(a):c,className:k("lucide",n),...!h&&!x(d)&&{"aria-hidden":"true"},...d},[...r.map(([p,l])=>y.createElement(p,l)),...Array.isArray(h)?h:[h]]));const e=(t,a)=>{const c=y.forwardRef(({className:o,...n},h)=>y.createElement(v,{ref:h,iconNode:a,className:k(`lucide-${M(s(t))}`,`lucide-${t}`,o),...n}));return c.displayName=s(t),c};const g=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8",key:"1s80jp"}],["path",{d:"M10 12h4",key:"a56b0p"}]],r2=e("archive",g);const u=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],i2=e("arrow-down",u);const w=[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]],p2=e("arrow-left",w);const $=[["path",{d:"m16 3 4 4-4 4",key:"1x1c3m"}],["path",{d:"M20 7H4",key:"zbl0bi"}],["path",{d:"m8 21-4-4 4-4",key:"h9nckh"}],["path",{d:"M4 17h16",key:"g4d7ey"}]],l2=e("arrow-right-left",$);const N=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],M2=e("arrow-right",N);const f=[["path",{d:"m21 16-4 4-4-4",key:"f6ql7i"}],["path",{d:"M17 20V4",key:"1ejh1v"}],["path",{d:"m3 8 4-4 4 4",key:"11wl7u"}],["path",{d:"M7 4v16",key:"1glfcx"}]],_2=e("arrow-up-down",f);const z=[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]],m2=e("arrow-up-right",z);const b=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],x2=e("arrow-up",b);const j=[["path",{d:"M12 21V7",key:"gj6g52"}],["path",{d:"m16 12 2 2 4-4",key:"mdajum"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3",key:"8arnkb"}]],v2=e("book-open-check",j);const q=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],g2=e("book-open",q);const A=[["path",{d:"M17 3a2 2 0 0 1 2 2v15a1 1 0 0 1-1.496.868l-4.512-2.578a2 2 0 0 0-1.984 0l-4.512 2.578A1 1 0 0 1 5 20V5a2 2 0 0 1 2-2z",key:"oz39mx"}]],u2=e("bookmark",A);const C=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],w2=e("bot",C);const V=[["path",{d:"M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z",key:"hh9hay"}],["path",{d:"m3.3 7 8.7 5 8.7-5",key:"g66t2b"}],["path",{d:"M12 22V12",key:"d0xqtd"}]],$2=e("box",V);const H=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]],N2=e("brain-circuit",H);const L=[["path",{d:"M12 18V5",key:"adv99a"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4",key:"1e3is1"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5",key:"1gqd8o"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77",key:"iwvgf7"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464",key:"efp6ie"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517",key:"1gq6am"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464",key:"k1g0md"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77",key:"q97ue3"}]],f2=e("brain",L);const S=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M18 17V9",key:"2bz60n"}],["path",{d:"M13 17V5",key:"1frdt8"}],["path",{d:"M8 17v-3",key:"17ska0"}]],z2=e("chart-column",S);const B=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],b2=e("check",B);const R=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],j2=e("chevron-down",R);const E=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],q2=e("chevron-left",E);const O=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],A2=e("chevron-right",O);const P=[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]],C2=e("chevrons-left",P);const T=[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]],V2=e("chevrons-right",T);const Z=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],H2=e("circle-alert",Z);const D=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]],L2=e("circle-check-big",D);const F=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],S2=e("circle-check",F);const U=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],B2=e("circle-question-mark",U);const W=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],R2=e("circle",W);const G=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]],E2=e("clipboard",G);const I=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 6v6l4 2",key:"mmk7yg"}]],O2=e("clock",I);const K=[["path",{d:"m18 16 4-4-4-4",key:"1inbqp"}],["path",{d:"m6 8-4 4 4 4",key:"15zrgr"}],["path",{d:"m14.5 4-5 16",key:"e7oirm"}]],P2=e("code-xml",K);const Q=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],T2=e("code",Q);const X=[["path",{d:"M11 10.27 7 3.34",key:"16pf9h"}],["path",{d:"m11 13.73-4 6.93",key:"794ttg"}],["path",{d:"M12 22v-2",key:"1osdcq"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M14 12h8",key:"4f43i9"}],["path",{d:"m17 20.66-1-1.73",key:"eq3orb"}],["path",{d:"m17 3.34-1 1.73",key:"2wel8s"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"m20.66 17-1.73-1",key:"sg0v6f"}],["path",{d:"m20.66 7-1.73 1",key:"1ow05n"}],["path",{d:"m3.34 17 1.73-1",key:"nuk764"}],["path",{d:"m3.34 7 1.73 1",key:"1ulond"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["circle",{cx:"12",cy:"12",r:"8",key:"46899m"}]],Z2=e("cog",X);const J=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],D2=e("copy",J);const Y=[["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M17 20v2",key:"1rnc9c"}],["path",{d:"M17 2v2",key:"11trls"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M2 17h2",key:"7oei6x"}],["path",{d:"M2 7h2",key:"asdhe0"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 17h2",key:"1fpfkl"}],["path",{d:"M20 7h2",key:"1o8tra"}],["path",{d:"M7 20v2",key:"4gnj0m"}],["path",{d:"M7 2v2",key:"1i4yhu"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]],F2=e("cpu",Y);const e1=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],U2=e("database",e1);const a1=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],W2=e("ellipsis",a1);const t1=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],G2=e("external-link",t1);const c1=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],I2=e("eye-off",c1);const o1=[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],K2=e("eye",o1);const h1=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}]],Q2=e("file-code",h1);const y1=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5",key:"1bq0ko"}],["path",{d:"M13.3 16.3 15 18",key:"2quom7"}]],X2=e("file-search",y1);const n1=[["path",{d:"M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z",key:"1oefj6"}],["path",{d:"M14 2v5a1 1 0 0 0 1 1h5",key:"wfsgrz"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],J2=e("file-text",n1);const d1=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],Y2=e("folder-open",d1);const s1=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],e0=e("funnel",s1);const k1=[["path",{d:"M15 6a9 9 0 0 0-9 9V3",key:"1cii5b"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}]],a0=e("git-branch",k1);const r1=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9",key:"19pyzm"}]],t0=e("git-compare",r1);const i1=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]],c0=e("git-merge",i1);const p1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],o0=e("globe",p1);const l1=[["path",{d:"M10 16h.01",key:"1bzywj"}],["path",{d:"M2.212 11.577a2 2 0 0 0-.212.896V18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5.527a2 2 0 0 0-.212-.896L18.55 5.11A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"18tbho"}],["path",{d:"M21.946 12.013H2.054",key:"zqlbp7"}],["path",{d:"M6 16h.01",key:"1pmjb7"}]],h0=e("hard-drive",l1);const M1=[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]],y0=e("hash",M1);const _1=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]],n0=e("inbox",_1);const m1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],d0=e("info",m1);const x1=[["path",{d:"m5 8 6 6",key:"1wu5hv"}],["path",{d:"m4 14 6-6 2-3",key:"1k1g8d"}],["path",{d:"M2 5h12",key:"or177f"}],["path",{d:"M7 2h1",key:"1t2jsx"}],["path",{d:"m22 22-5-10-5 10",key:"don7ne"}],["path",{d:"M14 18h6",key:"1m8k6r"}]],s0=e("languages",x1);const v1=[["path",{d:"M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z",key:"zw3jo"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12",key:"1wduqc"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17",key:"kqbvx6"}]],k0=e("layers",v1);const g1=[["path",{d:"m16 6 4 14",key:"ji33uf"}],["path",{d:"M12 6v14",key:"1n7gus"}],["path",{d:"M8 8v12",key:"1gg7y9"}],["path",{d:"M4 4v16",key:"6qkkli"}]],r0=e("library",g1);const u1=[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]],i0=e("lightbulb",u1);const w1=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]],p0=e("link-2",w1);const $1=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],l0=e("list",$1);const N1=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],M0=e("loader-circle",N1);const f1=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]],_0=e("lock",f1);const z1=[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]],m0=e("log-out",z1);const b1=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],x0=e("maximize-2",b1);const j1=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]],v0=e("message-square",j1);const q1=[["path",{d:"m14 10 7-7",key:"oa77jy"}],["path",{d:"M20 10h-6V4",key:"mjg0md"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M4 14h6v6",key:"rmj7iw"}]],g0=e("minimize-2",q1);const A1=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8",key:"10dyio"}],["path",{d:"M10 19v-3.96 3.15",key:"1irgej"}],["path",{d:"M7 19h5",key:"qswx4l"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2",key:"1egngj"}]],u0=e("monitor-smartphone",A1);const C1=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]],w0=e("moon",C1);const V1=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]],$0=e("network",V1);const H1=[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["polyline",{points:"3.29 7 12 12 20.71 7",key:"ousv84"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]],N0=e("package",H1);const L1=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]],f0=e("panels-top-left",L1);const S1=[["path",{d:"M13 21h8",key:"1jsn5i"}],["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]],z0=e("pen-line",S1);const B1=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],b0=e("pencil",B1);const R1=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],j0=e("plus",R1);const E1=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],q0=e("refresh-cw",E1);const O1=[["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5",key:"qeys4"}],["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09",key:"u4xsad"}],["path",{d:"M9 12a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.4 22.4 0 0 1-4 2z",key:"676m9"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 .05 5 .05",key:"92ym6u"}]],A0=e("rocket",O1);const P1=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],C0=e("rotate-ccw",P1);const T1=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]],V0=e("save",T1);const Z1=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["path",{d:"m16 16-1.9-1.9",key:"1dq9hf"}]],H0=e("scan-search",Z1);const D1=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],L0=e("search",D1);const F1=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]],S0=e("send",F1);const U1=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],B0=e("settings",U1);const W1=[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]],R0=e("share-2",W1);const G1=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]],E0=e("shield",G1);const I1=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]],O0=e("sparkles",I1);const K1=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]],P0=e("sun",K1);const Q1=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]],T0=e("tag",Q1);const X1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],Z0=e("target",X1);const J1=[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]],D0=e("terminal",J1);const Y1=[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]],F0=e("trash-2",Y1);const e2=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],U0=e("triangle-alert",e2);const a2=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]],W0=e("user",a2);const t2=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],G0=e("wand-sparkles",t2);const c2=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],I0=e("wifi",c2);const o2=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]],K0=e("workflow",o2);const h2=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z",key:"1ngwbx"}]],Q0=e("wrench",h2);const y2=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],X0=e("x",y2);const n2=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],J0=e("zap",n2);const d2=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],Y0=e("zoom-in",d2);const s2=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],ee=e("zoom-out",s2);export{v2 as $,M2 as A,f2 as B,Z2 as C,U2 as D,j2 as E,Y2 as F,a0 as G,y0 as H,q0 as I,N2 as J,C2 as K,r0 as L,v0 as M,q2 as N,V2 as O,f0 as P,i0 as Q,C0 as R,H0 as S,T0 as T,W0 as U,Q2 as V,K0 as W,X0 as X,g0 as Y,J0 as Z,x0 as _,E0 as a,x2 as a0,i2 as a1,W2 as a2,K2 as a3,z0 as a4,F0 as a5,P2 as a6,V0 as a7,p0 as a8,z2 as a9,r2 as aA,N0 as aB,w2 as aC,c0 as aD,p2 as aE,m2 as aF,E2 as aG,I2 as aH,A0 as aa,l0 as ab,l2 as ac,$0 as ad,u0 as ae,_0 as af,D0 as ag,T2 as ah,G0 as ai,X2 as aj,_2 as ak,S2 as al,t0 as am,D2 as an,Z0 as ao,H2 as ap,n0 as aq,L2 as ar,b0 as as,U0 as at,G2 as au,e0 as av,d0 as aw,Q0 as ax,Y0 as ay,ee as az,g2 as b,k0 as c,$2 as d,h0 as e,I0 as f,F2 as g,o0 as h,u2 as i,O2 as j,R0 as k,J2 as l,B2 as m,s0 as n,P0 as o,w0 as p,m0 as q,O0 as r,j0 as s,M0 as t,b2 as u,A2 as v,S0 as w,R2 as x,L0 as y,B0 as z};