@downcity/city 1.1.1 → 1.1.5

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 (2854) hide show
  1. package/README.md +245 -0
  2. package/bin/cli/Index.js +12 -12
  3. package/bin/cli/Index.js.map +1 -1
  4. package/bin/cli/agent/AgentChat.d.ts +22 -0
  5. package/bin/cli/agent/AgentChat.d.ts.map +1 -0
  6. package/bin/cli/agent/AgentChat.js +357 -0
  7. package/bin/cli/agent/AgentChat.js.map +1 -0
  8. package/bin/cli/agent/AgentChatTypes.d.ts +87 -0
  9. package/bin/cli/agent/AgentChatTypes.d.ts.map +1 -0
  10. package/bin/cli/agent/AgentChatTypes.js +12 -0
  11. package/bin/cli/agent/AgentChatTypes.js.map +1 -0
  12. package/bin/cli/agent/AgentHistory.d.ts +14 -0
  13. package/bin/cli/agent/AgentHistory.d.ts.map +1 -0
  14. package/bin/cli/agent/AgentHistory.js +157 -0
  15. package/bin/cli/agent/AgentHistory.js.map +1 -0
  16. package/bin/cli/agent/AgentHistoryTypes.d.ts +36 -0
  17. package/bin/cli/agent/AgentHistoryTypes.d.ts.map +1 -0
  18. package/bin/cli/agent/AgentHistoryTypes.js +9 -0
  19. package/bin/cli/agent/AgentHistoryTypes.js.map +1 -0
  20. package/bin/cli/agent/AgentManager.d.ts.map +1 -0
  21. package/bin/cli/agent/AgentManager.js +602 -0
  22. package/bin/cli/agent/AgentManager.js.map +1 -0
  23. package/bin/cli/agent/AgentManagerTypes.d.ts +13 -0
  24. package/bin/cli/agent/AgentManagerTypes.d.ts.map +1 -0
  25. package/bin/cli/agent/AgentManagerTypes.js +5 -0
  26. package/bin/cli/agent/AgentManagerTypes.js.map +1 -0
  27. package/bin/cli/agent/AgentReset.d.ts +13 -0
  28. package/bin/cli/agent/AgentReset.d.ts.map +1 -0
  29. package/bin/cli/agent/AgentReset.js +167 -0
  30. package/bin/cli/agent/AgentReset.js.map +1 -0
  31. package/bin/cli/agent/AgentSelection.d.ts +43 -0
  32. package/bin/cli/agent/AgentSelection.d.ts.map +1 -0
  33. package/bin/cli/agent/AgentSelection.js +243 -0
  34. package/bin/cli/agent/AgentSelection.js.map +1 -0
  35. package/bin/cli/agent/AgentSelectionTypes.d.ts +30 -0
  36. package/bin/cli/agent/AgentSelectionTypes.d.ts.map +1 -0
  37. package/bin/cli/agent/AgentSelectionTypes.js +5 -0
  38. package/bin/cli/agent/AgentSelectionTypes.js.map +1 -0
  39. package/bin/cli/agent/Init.d.ts.map +1 -0
  40. package/bin/cli/agent/Init.js +252 -0
  41. package/bin/cli/agent/Init.js.map +1 -0
  42. package/bin/cli/agent/Restart.d.ts +19 -0
  43. package/bin/cli/agent/Restart.d.ts.map +1 -0
  44. package/bin/cli/agent/Restart.js +60 -0
  45. package/bin/cli/agent/Restart.js.map +1 -0
  46. package/bin/cli/agent/Run.d.ts +24 -0
  47. package/bin/cli/agent/Run.d.ts.map +1 -0
  48. package/bin/cli/agent/Run.js +119 -0
  49. package/bin/cli/agent/Run.js.map +1 -0
  50. package/bin/cli/agent/Start.d.ts +23 -0
  51. package/bin/cli/agent/Start.d.ts.map +1 -0
  52. package/bin/cli/agent/Start.js +63 -0
  53. package/bin/cli/agent/Start.js.map +1 -0
  54. package/bin/cli/agent/Status.d.ts.map +1 -0
  55. package/bin/cli/agent/Status.js +103 -0
  56. package/bin/cli/agent/Status.js.map +1 -0
  57. package/bin/cli/agent/Stop.d.ts.map +1 -0
  58. package/bin/cli/agent/Stop.js +44 -0
  59. package/bin/cli/agent/Stop.js.map +1 -0
  60. package/bin/cli/control-plane/ControlPlaneAuthBootstrap.d.ts +25 -0
  61. package/bin/cli/control-plane/ControlPlaneAuthBootstrap.d.ts.map +1 -0
  62. package/bin/cli/control-plane/ControlPlaneAuthBootstrap.js +56 -0
  63. package/bin/cli/control-plane/ControlPlaneAuthBootstrap.js.map +1 -0
  64. package/bin/cli/control-plane/ControlPlaneCommand.d.ts +29 -0
  65. package/bin/cli/control-plane/ControlPlaneCommand.d.ts.map +1 -0
  66. package/bin/cli/control-plane/ControlPlaneCommand.js +152 -0
  67. package/bin/cli/control-plane/ControlPlaneCommand.js.map +1 -0
  68. package/bin/cli/control-plane/ControlPlaneInit.d.ts +17 -0
  69. package/bin/cli/control-plane/ControlPlaneInit.d.ts.map +1 -0
  70. package/bin/cli/control-plane/ControlPlaneInit.js +76 -0
  71. package/bin/cli/control-plane/ControlPlaneInit.js.map +1 -0
  72. package/bin/cli/control-plane/ControlPlaneProcess.d.ts +61 -0
  73. package/bin/cli/control-plane/ControlPlaneProcess.d.ts.map +1 -0
  74. package/bin/cli/control-plane/ControlPlaneProcess.js +395 -0
  75. package/bin/cli/control-plane/ControlPlaneProcess.js.map +1 -0
  76. package/bin/cli/control-plane/ControlPlaneRuntime.d.ts +98 -0
  77. package/bin/cli/control-plane/ControlPlaneRuntime.d.ts.map +1 -0
  78. package/bin/cli/control-plane/ControlPlaneRuntime.js +515 -0
  79. package/bin/cli/control-plane/ControlPlaneRuntime.js.map +1 -0
  80. package/bin/cli/control-plane/ControlPlaneStatus.d.ts +27 -0
  81. package/bin/cli/control-plane/ControlPlaneStatus.d.ts.map +1 -0
  82. package/bin/cli/control-plane/ControlPlaneStatus.js +135 -0
  83. package/bin/cli/control-plane/ControlPlaneStatus.js.map +1 -0
  84. package/bin/cli/model/Model.d.ts.map +1 -0
  85. package/bin/cli/model/Model.js.map +1 -0
  86. package/bin/cli/model/ModelCommandShared.d.ts +28 -0
  87. package/bin/cli/model/ModelCommandShared.d.ts.map +1 -0
  88. package/bin/cli/model/ModelCommandShared.js +109 -0
  89. package/bin/cli/model/ModelCommandShared.js.map +1 -0
  90. package/bin/cli/model/ModelCreateCommand.d.ts.map +1 -0
  91. package/bin/cli/model/ModelCreateCommand.js +367 -0
  92. package/bin/cli/model/ModelCreateCommand.js.map +1 -0
  93. package/bin/cli/model/ModelManageCommand.d.ts.map +1 -0
  94. package/bin/cli/model/ModelManageCommand.js +438 -0
  95. package/bin/cli/model/ModelManageCommand.js.map +1 -0
  96. package/bin/cli/model/ModelManager.d.ts.map +1 -0
  97. package/bin/cli/model/ModelManager.js +588 -0
  98. package/bin/cli/model/ModelManager.js.map +1 -0
  99. package/bin/cli/model/ModelManagerTypes.d.ts +21 -0
  100. package/bin/cli/model/ModelManagerTypes.d.ts.map +1 -0
  101. package/bin/cli/model/ModelManagerTypes.js +5 -0
  102. package/bin/cli/model/ModelManagerTypes.js.map +1 -0
  103. package/bin/cli/model/ModelReadCommand.d.ts +13 -0
  104. package/bin/cli/model/ModelReadCommand.d.ts.map +1 -0
  105. package/bin/cli/model/ModelReadCommand.js +198 -0
  106. package/bin/cli/model/ModelReadCommand.js.map +1 -0
  107. package/bin/cli/model/ModelSupport.d.ts +40 -0
  108. package/bin/cli/model/ModelSupport.d.ts.map +1 -0
  109. package/bin/cli/model/ModelSupport.js +201 -0
  110. package/bin/cli/model/ModelSupport.js.map +1 -0
  111. package/bin/cli/model/preset/ModelPresetManager.d.ts +71 -0
  112. package/bin/cli/model/preset/ModelPresetManager.d.ts.map +1 -0
  113. package/bin/cli/model/preset/ModelPresetManager.js +187 -0
  114. package/bin/cli/model/preset/ModelPresetManager.js.map +1 -0
  115. package/bin/cli/service/ServiceActionCommands.d.ts +14 -0
  116. package/bin/cli/service/ServiceActionCommands.d.ts.map +1 -0
  117. package/bin/cli/service/ServiceActionCommands.js +343 -0
  118. package/bin/cli/service/ServiceActionCommands.js.map +1 -0
  119. package/bin/cli/service/ServiceCommandRemote.d.ts +30 -0
  120. package/bin/cli/service/ServiceCommandRemote.d.ts.map +1 -0
  121. package/bin/cli/service/ServiceCommandRemote.js +200 -0
  122. package/bin/cli/service/ServiceCommandRemote.js.map +1 -0
  123. package/bin/cli/service/ServiceCommandSupport.d.ts +82 -0
  124. package/bin/cli/service/ServiceCommandSupport.d.ts.map +1 -0
  125. package/bin/cli/service/ServiceCommandSupport.js +224 -0
  126. package/bin/cli/service/ServiceCommandSupport.js.map +1 -0
  127. package/bin/cli/service/ServiceScheduleCommand.d.ts +36 -0
  128. package/bin/cli/service/ServiceScheduleCommand.d.ts.map +1 -0
  129. package/bin/cli/service/ServiceScheduleCommand.js +271 -0
  130. package/bin/cli/service/ServiceScheduleCommand.js.map +1 -0
  131. package/bin/cli/service/Services.d.ts.map +1 -0
  132. package/bin/cli/service/Services.js +154 -0
  133. package/bin/cli/service/Services.js.map +1 -0
  134. package/bin/cli/shared/Alias.d.ts.map +1 -0
  135. package/bin/cli/shared/Alias.js.map +1 -0
  136. package/bin/cli/shared/Chat.d.ts.map +1 -0
  137. package/bin/cli/shared/Chat.js.map +1 -0
  138. package/bin/cli/shared/ChatAuth.d.ts +40 -0
  139. package/bin/cli/shared/ChatAuth.d.ts.map +1 -0
  140. package/bin/cli/shared/ChatAuth.js +151 -0
  141. package/bin/cli/shared/ChatAuth.js.map +1 -0
  142. package/bin/cli/shared/ChatManager.d.ts.map +1 -0
  143. package/bin/cli/shared/ChatManager.js +383 -0
  144. package/bin/cli/shared/ChatManager.js.map +1 -0
  145. package/bin/cli/shared/ChatManagerTypes.d.ts +6 -0
  146. package/bin/cli/shared/ChatManagerTypes.d.ts.map +1 -0
  147. package/bin/cli/shared/ChatManagerTypes.js +5 -0
  148. package/bin/cli/shared/ChatManagerTypes.js.map +1 -0
  149. package/bin/cli/shared/CliError.d.ts.map +1 -0
  150. package/bin/cli/shared/CliError.js.map +1 -0
  151. package/bin/cli/shared/CliReporter.d.ts +50 -0
  152. package/bin/cli/shared/CliReporter.d.ts.map +1 -0
  153. package/bin/cli/shared/CliReporter.js.map +1 -0
  154. package/bin/cli/shared/CliReporterTypes.d.ts +157 -0
  155. package/bin/cli/shared/CliReporterTypes.d.ts.map +1 -0
  156. package/bin/cli/shared/CliReporterTypes.js +10 -0
  157. package/bin/cli/shared/CliReporterTypes.js.map +1 -0
  158. package/bin/cli/shared/Config.d.ts.map +1 -0
  159. package/bin/cli/shared/Config.js +239 -0
  160. package/bin/cli/shared/Config.js.map +1 -0
  161. package/bin/cli/shared/Env.d.ts +14 -0
  162. package/bin/cli/shared/Env.d.ts.map +1 -0
  163. package/bin/cli/shared/Env.js +419 -0
  164. package/bin/cli/shared/Env.js.map +1 -0
  165. package/bin/cli/shared/IndexAgentCommand.d.ts.map +1 -0
  166. package/bin/cli/shared/IndexAgentCommand.js +218 -0
  167. package/bin/cli/shared/IndexAgentCommand.js.map +1 -0
  168. package/bin/cli/shared/IndexSupport.d.ts.map +1 -0
  169. package/bin/cli/shared/IndexSupport.js +123 -0
  170. package/bin/cli/shared/IndexSupport.js.map +1 -0
  171. package/bin/cli/shared/Plugins.d.ts.map +1 -0
  172. package/bin/cli/shared/Plugins.js +472 -0
  173. package/bin/cli/shared/Plugins.js.map +1 -0
  174. package/bin/cli/shared/PortHints.d.ts +35 -0
  175. package/bin/cli/shared/PortHints.d.ts.map +1 -0
  176. package/bin/cli/shared/PortHints.js +58 -0
  177. package/bin/cli/shared/PortHints.js.map +1 -0
  178. package/bin/cli/shared/PublicAccess.d.ts +24 -0
  179. package/bin/cli/shared/PublicAccess.d.ts.map +1 -0
  180. package/bin/cli/shared/PublicAccess.js +100 -0
  181. package/bin/cli/shared/PublicAccess.js.map +1 -0
  182. package/bin/cli/shared/PublicHostEnv.d.ts +14 -0
  183. package/bin/cli/shared/PublicHostEnv.d.ts.map +1 -0
  184. package/bin/cli/shared/PublicHostEnv.js +104 -0
  185. package/bin/cli/shared/PublicHostEnv.js.map +1 -0
  186. package/bin/cli/shared/PublicHostEnvTypes.d.ts +23 -0
  187. package/bin/cli/shared/PublicHostEnvTypes.d.ts.map +1 -0
  188. package/bin/cli/shared/PublicHostEnvTypes.js +5 -0
  189. package/bin/cli/shared/PublicHostEnvTypes.js.map +1 -0
  190. package/bin/cli/shared/Reset.d.ts.map +1 -0
  191. package/bin/cli/shared/Reset.js.map +1 -0
  192. package/bin/cli/shared/Token.d.ts.map +1 -0
  193. package/bin/cli/shared/Token.js +638 -0
  194. package/bin/cli/shared/Token.js.map +1 -0
  195. package/bin/cli/shared/Update.d.ts.map +1 -0
  196. package/bin/cli/shared/Update.js +150 -0
  197. package/bin/cli/shared/Update.js.map +1 -0
  198. package/bin/config/DowncitySchema.d.ts +3 -0
  199. package/bin/config/DowncitySchema.d.ts.map +1 -0
  200. package/bin/config/DowncitySchema.js +367 -0
  201. package/bin/config/DowncitySchema.js.map +1 -0
  202. package/bin/control/AgentStatusApiRoutes.d.ts +28 -0
  203. package/bin/control/AgentStatusApiRoutes.d.ts.map +1 -0
  204. package/bin/control/AgentStatusApiRoutes.js +165 -0
  205. package/bin/control/AgentStatusApiRoutes.js.map +1 -0
  206. package/bin/control/ChannelAccountApiRoutes.d.ts +15 -0
  207. package/bin/control/ChannelAccountApiRoutes.d.ts.map +1 -0
  208. package/bin/control/ChannelAccountApiRoutes.js +93 -0
  209. package/bin/control/ChannelAccountApiRoutes.js.map +1 -0
  210. package/bin/control/ControlGateway.d.ts +102 -0
  211. package/bin/control/ControlGateway.d.ts.map +1 -0
  212. package/bin/control/ControlGateway.js +283 -0
  213. package/bin/control/ControlGateway.js.map +1 -0
  214. package/bin/control/EnvApiRoutes.d.ts +18 -0
  215. package/bin/control/EnvApiRoutes.d.ts.map +1 -0
  216. package/bin/control/EnvApiRoutes.js +228 -0
  217. package/bin/control/EnvApiRoutes.js.map +1 -0
  218. package/bin/control/ModelApiRoutes.d.ts +35 -0
  219. package/bin/control/ModelApiRoutes.d.ts.map +1 -0
  220. package/bin/control/ModelApiRoutes.js +237 -0
  221. package/bin/control/ModelApiRoutes.js.map +1 -0
  222. package/bin/control/ModelPoolService.d.ts +126 -0
  223. package/bin/control/ModelPoolService.d.ts.map +1 -0
  224. package/bin/control/ModelPoolService.js +327 -0
  225. package/bin/control/ModelPoolService.js.map +1 -0
  226. package/bin/control/PlatformApiRoutes.d.ts +133 -0
  227. package/bin/control/PlatformApiRoutes.d.ts.map +1 -0
  228. package/bin/control/PlatformApiRoutes.js +292 -0
  229. package/bin/control/PlatformApiRoutes.js.map +1 -0
  230. package/bin/control/PluginApiRoutes.d.ts +28 -0
  231. package/bin/control/PluginApiRoutes.d.ts.map +1 -0
  232. package/bin/control/PluginApiRoutes.js +282 -0
  233. package/bin/control/PluginApiRoutes.js.map +1 -0
  234. package/bin/control/gateway/AgentActions.d.ts +107 -0
  235. package/bin/control/gateway/AgentActions.d.ts.map +1 -0
  236. package/bin/control/gateway/AgentActions.js +314 -0
  237. package/bin/control/gateway/AgentActions.js.map +1 -0
  238. package/bin/control/gateway/AgentCatalog.d.ts +83 -0
  239. package/bin/control/gateway/AgentCatalog.d.ts.map +1 -0
  240. package/bin/control/gateway/AgentCatalog.js +484 -0
  241. package/bin/control/gateway/AgentCatalog.js.map +1 -0
  242. package/bin/control/gateway/FrontendAssets.d.ts +21 -0
  243. package/bin/control/gateway/FrontendAssets.d.ts.map +1 -0
  244. package/bin/control/gateway/FrontendAssets.js +77 -0
  245. package/bin/control/gateway/FrontendAssets.js.map +1 -0
  246. package/bin/control/gateway/GatewaySupport.d.ts +34 -0
  247. package/bin/control/gateway/GatewaySupport.d.ts.map +1 -0
  248. package/bin/control/gateway/GatewaySupport.js +32 -0
  249. package/bin/control/gateway/GatewaySupport.js.map +1 -0
  250. package/bin/control/gateway/Proxy.d.ts +16 -0
  251. package/bin/control/gateway/Proxy.d.ts.map +1 -0
  252. package/bin/control/gateway/Proxy.js +47 -0
  253. package/bin/control/gateway/Proxy.js.map +1 -0
  254. package/bin/control/instant/InstantApiRoutes.d.ts +19 -0
  255. package/bin/control/instant/InstantApiRoutes.d.ts.map +1 -0
  256. package/bin/control/instant/InstantApiRoutes.js +58 -0
  257. package/bin/control/instant/InstantApiRoutes.js.map +1 -0
  258. package/bin/control/instant/InstantSessionService.d.ts +36 -0
  259. package/bin/control/instant/InstantSessionService.d.ts.map +1 -0
  260. package/bin/control/instant/InstantSessionService.js +183 -0
  261. package/bin/control/instant/InstantSessionService.js.map +1 -0
  262. package/bin/control/instant/InstantSystemComposer.d.ts +34 -0
  263. package/bin/control/instant/InstantSystemComposer.d.ts.map +1 -0
  264. package/bin/control/instant/InstantSystemComposer.js +38 -0
  265. package/bin/control/instant/InstantSystemComposer.js.map +1 -0
  266. package/bin/http/auth/AuthMiddleware.d.ts +1 -1
  267. package/bin/http/auth/AuthMiddleware.d.ts.map +1 -1
  268. package/bin/http/auth/AuthService.d.ts +2 -2
  269. package/bin/http/auth/AuthService.d.ts.map +1 -1
  270. package/bin/http/auth/AuthService.js +1 -1
  271. package/bin/http/auth/AuthService.js.map +1 -1
  272. package/bin/http/auth/AuthStore.d.ts +4 -4
  273. package/bin/http/auth/AuthStore.d.ts.map +1 -1
  274. package/bin/http/auth/AuthStore.js +7 -7
  275. package/bin/http/auth/AuthStore.js.map +1 -1
  276. package/bin/http/auth/RoutePolicy.d.ts +3 -3
  277. package/bin/http/auth/RoutePolicy.d.ts.map +1 -1
  278. package/bin/http/auth/RoutePolicy.js +6 -6
  279. package/bin/http/auth/RoutePolicy.js.map +1 -1
  280. package/bin/process/daemon/Api.d.ts +60 -0
  281. package/bin/process/daemon/Api.d.ts.map +1 -0
  282. package/bin/process/daemon/Api.js.map +1 -0
  283. package/bin/process/daemon/CliArgs.d.ts +17 -0
  284. package/bin/process/daemon/CliArgs.d.ts.map +1 -0
  285. package/bin/process/daemon/CliArgs.js +30 -0
  286. package/bin/process/daemon/CliArgs.js.map +1 -0
  287. package/bin/process/daemon/Client.d.ts.map +1 -0
  288. package/bin/process/daemon/Client.js +158 -0
  289. package/bin/process/daemon/Client.js.map +1 -0
  290. package/bin/process/daemon/Manager.d.ts +92 -0
  291. package/bin/process/daemon/Manager.d.ts.map +1 -0
  292. package/bin/process/daemon/Manager.js +287 -0
  293. package/bin/process/daemon/Manager.js.map +1 -0
  294. package/bin/process/daemon/PortAllocator.d.ts.map +1 -0
  295. package/bin/process/daemon/PortAllocator.js.map +1 -0
  296. package/bin/process/registry/AgentHostRuntime.d.ts +10 -0
  297. package/bin/process/registry/AgentHostRuntime.d.ts.map +1 -0
  298. package/bin/process/registry/AgentHostRuntime.js +47 -0
  299. package/bin/process/registry/AgentHostRuntime.js.map +1 -0
  300. package/bin/process/registry/CityPaths.d.ts +53 -0
  301. package/bin/process/registry/CityPaths.d.ts.map +1 -0
  302. package/bin/process/registry/CityPaths.js +78 -0
  303. package/bin/process/registry/CityPaths.js.map +1 -0
  304. package/bin/process/registry/CityRegistry.d.ts +51 -0
  305. package/bin/process/registry/CityRegistry.d.ts.map +1 -0
  306. package/bin/process/registry/CityRegistry.js +217 -0
  307. package/bin/process/registry/CityRegistry.js.map +1 -0
  308. package/bin/process/registry/CityRuntime.d.ts +21 -0
  309. package/bin/process/registry/CityRuntime.d.ts.map +1 -0
  310. package/bin/process/registry/CityRuntime.js +45 -0
  311. package/bin/process/registry/CityRuntime.js.map +1 -0
  312. package/bin/process/registry/PluginRuntime.d.ts +24 -0
  313. package/bin/process/registry/PluginRuntime.d.ts.map +1 -0
  314. package/bin/process/registry/PluginRuntime.js.map +1 -0
  315. package/bin/process/registry/ProcessSweep.d.ts +76 -0
  316. package/bin/process/registry/ProcessSweep.d.ts.map +1 -0
  317. package/bin/process/registry/ProcessSweep.js +202 -0
  318. package/bin/process/registry/ProcessSweep.js.map +1 -0
  319. package/bin/process/rpc/Client.d.ts +13 -0
  320. package/bin/process/rpc/Client.d.ts.map +1 -0
  321. package/bin/process/rpc/Client.js.map +1 -0
  322. package/bin/process/rpc/Paths.d.ts.map +1 -0
  323. package/bin/process/rpc/Paths.js +36 -0
  324. package/bin/process/rpc/Paths.js.map +1 -0
  325. package/bin/utils/Id.d.ts.map +1 -0
  326. package/bin/utils/Id.js.map +1 -0
  327. package/bin/utils/cli/CliOutput.d.ts +51 -0
  328. package/bin/utils/cli/CliOutput.d.ts.map +1 -0
  329. package/bin/utils/cli/CliOutput.js +117 -0
  330. package/bin/utils/cli/CliOutput.js.map +1 -0
  331. package/bin/utils/cli/Spinner.d.ts.map +1 -0
  332. package/bin/utils/cli/Spinner.js.map +1 -0
  333. package/bin/utils/storage.d.ts +5 -0
  334. package/bin/utils/storage.d.ts.map +1 -0
  335. package/bin/utils/storage.js +23 -0
  336. package/bin/utils/storage.js.map +1 -0
  337. package/package.json +3 -3
  338. package/public/app.js +35 -35
  339. package/scripts/lint-import-boundaries.mjs +17 -85
  340. package/src/cli/Index.ts +12 -12
  341. package/src/cli/agent/AgentChat.ts +415 -0
  342. package/src/cli/agent/AgentChatTypes.ts +92 -0
  343. package/src/cli/agent/AgentHistory.ts +187 -0
  344. package/src/cli/agent/AgentHistoryTypes.ts +39 -0
  345. package/src/cli/agent/AgentManager.ts +667 -0
  346. package/src/cli/agent/AgentManagerTypes.ts +29 -0
  347. package/src/cli/agent/AgentReset.ts +181 -0
  348. package/src/cli/agent/AgentSelection.ts +297 -0
  349. package/src/cli/agent/AgentSelectionTypes.ts +36 -0
  350. package/src/cli/agent/Init.ts +291 -0
  351. package/src/cli/agent/Restart.ts +68 -0
  352. package/src/cli/agent/Run.ts +148 -0
  353. package/src/cli/agent/Start.ts +72 -0
  354. package/src/cli/agent/Status.ts +116 -0
  355. package/src/cli/agent/Stop.ts +45 -0
  356. package/src/cli/control-plane/ControlPlaneAuthBootstrap.ts +72 -0
  357. package/src/cli/control-plane/ControlPlaneCommand.ts +216 -0
  358. package/src/cli/control-plane/ControlPlaneInit.ts +83 -0
  359. package/src/cli/control-plane/ControlPlaneProcess.ts +497 -0
  360. package/src/cli/control-plane/ControlPlaneRuntime.ts +611 -0
  361. package/src/cli/control-plane/ControlPlaneStatus.ts +152 -0
  362. package/src/cli/model/ModelCommandShared.ts +129 -0
  363. package/src/cli/model/ModelCreateCommand.ts +424 -0
  364. package/src/cli/model/ModelManageCommand.ts +516 -0
  365. package/src/cli/model/ModelManager.ts +631 -0
  366. package/src/cli/model/ModelManagerTypes.ts +37 -0
  367. package/src/cli/model/ModelReadCommand.ts +207 -0
  368. package/src/cli/model/ModelSupport.ts +223 -0
  369. package/src/cli/model/preset/ModelPresetManager.ts +242 -0
  370. package/src/cli/service/ServiceActionCommands.ts +416 -0
  371. package/src/cli/service/ServiceCommandRemote.ts +230 -0
  372. package/src/cli/service/ServiceCommandSupport.ts +275 -0
  373. package/src/cli/service/ServiceScheduleCommand.ts +305 -0
  374. package/src/cli/service/Services.ts +189 -0
  375. package/src/cli/shared/ChatAuth.ts +203 -0
  376. package/src/cli/shared/ChatManager.ts +441 -0
  377. package/src/cli/shared/ChatManagerTypes.ts +19 -0
  378. package/src/cli/shared/CliReporter.ts +362 -0
  379. package/src/cli/shared/CliReporterTypes.ts +167 -0
  380. package/src/cli/shared/Config.ts +301 -0
  381. package/src/cli/shared/Env.ts +556 -0
  382. package/src/cli/shared/IndexAgentCommand.ts +302 -0
  383. package/src/cli/shared/IndexSupport.ts +138 -0
  384. package/src/cli/shared/Plugins.ts +567 -0
  385. package/src/cli/shared/PortHints.ts +80 -0
  386. package/src/cli/shared/PublicAccess.ts +106 -0
  387. package/src/cli/shared/PublicHostEnv.ts +116 -0
  388. package/src/cli/shared/PublicHostEnvTypes.ts +27 -0
  389. package/src/cli/shared/Token.ts +702 -0
  390. package/src/cli/shared/Update.ts +183 -0
  391. package/src/config/DowncitySchema.ts +377 -0
  392. package/src/control/AgentStatusApiRoutes.ts +225 -0
  393. package/src/control/ChannelAccountApiRoutes.ts +119 -0
  394. package/src/control/ControlGateway.ts +463 -0
  395. package/src/control/EnvApiRoutes.ts +257 -0
  396. package/src/control/ModelApiRoutes.ts +336 -0
  397. package/src/control/ModelPoolService.ts +395 -0
  398. package/src/control/PlatformApiRoutes.ts +495 -0
  399. package/src/control/PluginApiRoutes.ts +439 -0
  400. package/src/control/gateway/AgentActions.ts +413 -0
  401. package/src/control/gateway/AgentCatalog.ts +611 -0
  402. package/src/control/gateway/FrontendAssets.ts +79 -0
  403. package/src/control/gateway/GatewaySupport.ts +59 -0
  404. package/src/control/gateway/Proxy.ts +62 -0
  405. package/src/control/instant/InstantApiRoutes.ts +74 -0
  406. package/src/control/instant/InstantSessionService.ts +278 -0
  407. package/src/control/instant/InstantSystemComposer.ts +60 -0
  408. package/src/http/auth/AuthMiddleware.ts +1 -1
  409. package/src/http/auth/AuthService.ts +3 -3
  410. package/src/http/auth/AuthStore.ts +11 -11
  411. package/src/http/auth/RoutePolicy.ts +8 -8
  412. package/src/process/daemon/Api.ts +64 -0
  413. package/src/process/daemon/CliArgs.ts +39 -0
  414. package/src/process/daemon/Client.ts +182 -0
  415. package/src/process/daemon/Manager.ts +344 -0
  416. package/src/process/registry/AgentHostRuntime.ts +65 -0
  417. package/src/process/registry/CityPaths.ts +87 -0
  418. package/src/process/registry/CityRegistry.ts +256 -0
  419. package/src/process/registry/CityRuntime.ts +45 -0
  420. package/src/process/registry/PluginRuntime.ts +42 -0
  421. package/src/process/registry/ProcessSweep.ts +256 -0
  422. package/src/process/rpc/Client.ts +113 -0
  423. package/src/process/rpc/Paths.ts +43 -0
  424. package/src/utils/cli/CliOutput.ts +170 -0
  425. package/src/utils/storage.ts +26 -0
  426. package/tsconfig.json +2 -3
  427. package/bin/agent/AgentContext.d.ts +0 -23
  428. package/bin/agent/AgentContext.d.ts.map +0 -1
  429. package/bin/agent/AgentContext.js +0 -148
  430. package/bin/agent/AgentContext.js.map +0 -1
  431. package/bin/agent/AgentRuntime.d.ts +0 -32
  432. package/bin/agent/AgentRuntime.d.ts.map +0 -1
  433. package/bin/agent/AgentRuntime.js +0 -277
  434. package/bin/agent/AgentRuntime.js.map +0 -1
  435. package/bin/agent/AgentRuntimeState.d.ts +0 -42
  436. package/bin/agent/AgentRuntimeState.d.ts.map +0 -1
  437. package/bin/agent/AgentRuntimeState.js +0 -116
  438. package/bin/agent/AgentRuntimeState.js.map +0 -1
  439. package/bin/agent/project/AgentInitializer.d.ts +0 -38
  440. package/bin/agent/project/AgentInitializer.d.ts.map +0 -1
  441. package/bin/agent/project/AgentInitializer.js +0 -308
  442. package/bin/agent/project/AgentInitializer.js.map +0 -1
  443. package/bin/agent/project/ProjectExecutionBinding.d.ts +0 -27
  444. package/bin/agent/project/ProjectExecutionBinding.d.ts.map +0 -1
  445. package/bin/agent/project/ProjectExecutionBinding.js +0 -47
  446. package/bin/agent/project/ProjectExecutionBinding.js.map +0 -1
  447. package/bin/cli/AgentChat.d.ts +0 -22
  448. package/bin/cli/AgentChat.d.ts.map +0 -1
  449. package/bin/cli/AgentChat.js +0 -357
  450. package/bin/cli/AgentChat.js.map +0 -1
  451. package/bin/cli/AgentHistory.d.ts +0 -14
  452. package/bin/cli/AgentHistory.d.ts.map +0 -1
  453. package/bin/cli/AgentHistory.js +0 -157
  454. package/bin/cli/AgentHistory.js.map +0 -1
  455. package/bin/cli/AgentManager.d.ts.map +0 -1
  456. package/bin/cli/AgentManager.js +0 -602
  457. package/bin/cli/AgentManager.js.map +0 -1
  458. package/bin/cli/AgentReset.d.ts +0 -13
  459. package/bin/cli/AgentReset.d.ts.map +0 -1
  460. package/bin/cli/AgentReset.js +0 -167
  461. package/bin/cli/AgentReset.js.map +0 -1
  462. package/bin/cli/AgentSelection.d.ts +0 -43
  463. package/bin/cli/AgentSelection.d.ts.map +0 -1
  464. package/bin/cli/AgentSelection.js +0 -243
  465. package/bin/cli/AgentSelection.js.map +0 -1
  466. package/bin/cli/Alias.d.ts.map +0 -1
  467. package/bin/cli/Alias.js.map +0 -1
  468. package/bin/cli/Chat.d.ts.map +0 -1
  469. package/bin/cli/Chat.js.map +0 -1
  470. package/bin/cli/ChatAuth.d.ts +0 -36
  471. package/bin/cli/ChatAuth.d.ts.map +0 -1
  472. package/bin/cli/ChatAuth.js +0 -140
  473. package/bin/cli/ChatAuth.js.map +0 -1
  474. package/bin/cli/ChatManager.d.ts.map +0 -1
  475. package/bin/cli/ChatManager.js +0 -383
  476. package/bin/cli/ChatManager.js.map +0 -1
  477. package/bin/cli/CliReporter.d.ts +0 -50
  478. package/bin/cli/CliReporter.d.ts.map +0 -1
  479. package/bin/cli/CliReporter.js.map +0 -1
  480. package/bin/cli/Config.d.ts.map +0 -1
  481. package/bin/cli/Config.js +0 -239
  482. package/bin/cli/Config.js.map +0 -1
  483. package/bin/cli/Console.d.ts +0 -97
  484. package/bin/cli/Console.d.ts.map +0 -1
  485. package/bin/cli/Console.js +0 -514
  486. package/bin/cli/Console.js.map +0 -1
  487. package/bin/cli/ConsoleAuthBootstrap.d.ts +0 -25
  488. package/bin/cli/ConsoleAuthBootstrap.d.ts.map +0 -1
  489. package/bin/cli/ConsoleAuthBootstrap.js +0 -56
  490. package/bin/cli/ConsoleAuthBootstrap.js.map +0 -1
  491. package/bin/cli/ConsoleInit.d.ts +0 -17
  492. package/bin/cli/ConsoleInit.d.ts.map +0 -1
  493. package/bin/cli/ConsoleInit.js +0 -76
  494. package/bin/cli/ConsoleInit.js.map +0 -1
  495. package/bin/cli/Env.d.ts +0 -14
  496. package/bin/cli/Env.d.ts.map +0 -1
  497. package/bin/cli/Env.js +0 -419
  498. package/bin/cli/Env.js.map +0 -1
  499. package/bin/cli/IndexAgentCommand.d.ts.map +0 -1
  500. package/bin/cli/IndexAgentCommand.js +0 -218
  501. package/bin/cli/IndexAgentCommand.js.map +0 -1
  502. package/bin/cli/IndexConsoleCommand.d.ts +0 -24
  503. package/bin/cli/IndexConsoleCommand.d.ts.map +0 -1
  504. package/bin/cli/IndexConsoleCommand.js +0 -147
  505. package/bin/cli/IndexConsoleCommand.js.map +0 -1
  506. package/bin/cli/IndexConsoleProcess.d.ts +0 -61
  507. package/bin/cli/IndexConsoleProcess.d.ts.map +0 -1
  508. package/bin/cli/IndexConsoleProcess.js +0 -395
  509. package/bin/cli/IndexConsoleProcess.js.map +0 -1
  510. package/bin/cli/IndexConsoleStatus.d.ts +0 -27
  511. package/bin/cli/IndexConsoleStatus.d.ts.map +0 -1
  512. package/bin/cli/IndexConsoleStatus.js +0 -135
  513. package/bin/cli/IndexConsoleStatus.js.map +0 -1
  514. package/bin/cli/IndexSupport.d.ts.map +0 -1
  515. package/bin/cli/IndexSupport.js +0 -123
  516. package/bin/cli/IndexSupport.js.map +0 -1
  517. package/bin/cli/Init.d.ts.map +0 -1
  518. package/bin/cli/Init.js +0 -252
  519. package/bin/cli/Init.js.map +0 -1
  520. package/bin/cli/Model.d.ts.map +0 -1
  521. package/bin/cli/Model.js.map +0 -1
  522. package/bin/cli/ModelCommandShared.d.ts +0 -28
  523. package/bin/cli/ModelCommandShared.d.ts.map +0 -1
  524. package/bin/cli/ModelCommandShared.js +0 -109
  525. package/bin/cli/ModelCommandShared.js.map +0 -1
  526. package/bin/cli/ModelCreateCommand.d.ts.map +0 -1
  527. package/bin/cli/ModelCreateCommand.js +0 -367
  528. package/bin/cli/ModelCreateCommand.js.map +0 -1
  529. package/bin/cli/ModelManageCommand.d.ts.map +0 -1
  530. package/bin/cli/ModelManageCommand.js +0 -438
  531. package/bin/cli/ModelManageCommand.js.map +0 -1
  532. package/bin/cli/ModelManager.d.ts.map +0 -1
  533. package/bin/cli/ModelManager.js +0 -588
  534. package/bin/cli/ModelManager.js.map +0 -1
  535. package/bin/cli/ModelReadCommand.d.ts +0 -13
  536. package/bin/cli/ModelReadCommand.d.ts.map +0 -1
  537. package/bin/cli/ModelReadCommand.js +0 -198
  538. package/bin/cli/ModelReadCommand.js.map +0 -1
  539. package/bin/cli/ModelSupport.d.ts +0 -40
  540. package/bin/cli/ModelSupport.d.ts.map +0 -1
  541. package/bin/cli/ModelSupport.js +0 -201
  542. package/bin/cli/ModelSupport.js.map +0 -1
  543. package/bin/cli/Plugins.d.ts.map +0 -1
  544. package/bin/cli/Plugins.js +0 -474
  545. package/bin/cli/Plugins.js.map +0 -1
  546. package/bin/cli/PortHints.d.ts +0 -35
  547. package/bin/cli/PortHints.d.ts.map +0 -1
  548. package/bin/cli/PortHints.js +0 -58
  549. package/bin/cli/PortHints.js.map +0 -1
  550. package/bin/cli/PublicAccess.d.ts +0 -24
  551. package/bin/cli/PublicAccess.d.ts.map +0 -1
  552. package/bin/cli/PublicAccess.js +0 -100
  553. package/bin/cli/PublicAccess.js.map +0 -1
  554. package/bin/cli/PublicHostEnv.d.ts +0 -14
  555. package/bin/cli/PublicHostEnv.d.ts.map +0 -1
  556. package/bin/cli/PublicHostEnv.js +0 -104
  557. package/bin/cli/PublicHostEnv.js.map +0 -1
  558. package/bin/cli/Reset.d.ts.map +0 -1
  559. package/bin/cli/Reset.js.map +0 -1
  560. package/bin/cli/Restart.d.ts +0 -19
  561. package/bin/cli/Restart.d.ts.map +0 -1
  562. package/bin/cli/Restart.js +0 -60
  563. package/bin/cli/Restart.js.map +0 -1
  564. package/bin/cli/Run.d.ts +0 -24
  565. package/bin/cli/Run.d.ts.map +0 -1
  566. package/bin/cli/Run.js +0 -123
  567. package/bin/cli/Run.js.map +0 -1
  568. package/bin/cli/ServiceCommandRemote.d.ts +0 -30
  569. package/bin/cli/ServiceCommandRemote.d.ts.map +0 -1
  570. package/bin/cli/ServiceCommandRemote.js +0 -200
  571. package/bin/cli/ServiceCommandRemote.js.map +0 -1
  572. package/bin/cli/ServiceCommandSupport.d.ts +0 -82
  573. package/bin/cli/ServiceCommandSupport.d.ts.map +0 -1
  574. package/bin/cli/ServiceCommandSupport.js +0 -224
  575. package/bin/cli/ServiceCommandSupport.js.map +0 -1
  576. package/bin/cli/ServiceScheduleCommand.d.ts +0 -36
  577. package/bin/cli/ServiceScheduleCommand.d.ts.map +0 -1
  578. package/bin/cli/ServiceScheduleCommand.js +0 -271
  579. package/bin/cli/ServiceScheduleCommand.js.map +0 -1
  580. package/bin/cli/Services.d.ts.map +0 -1
  581. package/bin/cli/Services.js +0 -154
  582. package/bin/cli/Services.js.map +0 -1
  583. package/bin/cli/Start.d.ts +0 -23
  584. package/bin/cli/Start.d.ts.map +0 -1
  585. package/bin/cli/Start.js +0 -63
  586. package/bin/cli/Start.js.map +0 -1
  587. package/bin/cli/Status.d.ts.map +0 -1
  588. package/bin/cli/Status.js +0 -103
  589. package/bin/cli/Status.js.map +0 -1
  590. package/bin/cli/Stop.d.ts.map +0 -1
  591. package/bin/cli/Stop.js +0 -44
  592. package/bin/cli/Stop.js.map +0 -1
  593. package/bin/cli/Token.d.ts.map +0 -1
  594. package/bin/cli/Token.js +0 -638
  595. package/bin/cli/Token.js.map +0 -1
  596. package/bin/cli/Update.d.ts.map +0 -1
  597. package/bin/cli/Update.js +0 -150
  598. package/bin/cli/Update.js.map +0 -1
  599. package/bin/config/Config.d.ts +0 -32
  600. package/bin/config/Config.d.ts.map +0 -1
  601. package/bin/config/Config.js +0 -217
  602. package/bin/config/Config.js.map +0 -1
  603. package/bin/console/AgentStatusApiRoutes.d.ts +0 -28
  604. package/bin/console/AgentStatusApiRoutes.d.ts.map +0 -1
  605. package/bin/console/AgentStatusApiRoutes.js +0 -165
  606. package/bin/console/AgentStatusApiRoutes.js.map +0 -1
  607. package/bin/console/ChannelAccountApiRoutes.d.ts +0 -15
  608. package/bin/console/ChannelAccountApiRoutes.d.ts.map +0 -1
  609. package/bin/console/ChannelAccountApiRoutes.js +0 -93
  610. package/bin/console/ChannelAccountApiRoutes.js.map +0 -1
  611. package/bin/console/ChannelAccountService.d.ts +0 -9
  612. package/bin/console/ChannelAccountService.d.ts.map +0 -1
  613. package/bin/console/ChannelAccountService.js +0 -9
  614. package/bin/console/ChannelAccountService.js.map +0 -1
  615. package/bin/console/ConsoleClient.d.ts +0 -53
  616. package/bin/console/ConsoleClient.d.ts.map +0 -1
  617. package/bin/console/ConsoleClient.js +0 -258
  618. package/bin/console/ConsoleClient.js.map +0 -1
  619. package/bin/console/ConsoleGateway.d.ts +0 -102
  620. package/bin/console/ConsoleGateway.d.ts.map +0 -1
  621. package/bin/console/ConsoleGateway.js +0 -283
  622. package/bin/console/ConsoleGateway.js.map +0 -1
  623. package/bin/console/ConsoleGatewayRoutes.d.ts +0 -133
  624. package/bin/console/ConsoleGatewayRoutes.d.ts.map +0 -1
  625. package/bin/console/ConsoleGatewayRoutes.js +0 -292
  626. package/bin/console/ConsoleGatewayRoutes.js.map +0 -1
  627. package/bin/console/EnvApiRoutes.d.ts +0 -18
  628. package/bin/console/EnvApiRoutes.d.ts.map +0 -1
  629. package/bin/console/EnvApiRoutes.js +0 -228
  630. package/bin/console/EnvApiRoutes.js.map +0 -1
  631. package/bin/console/InlineInstantRoutes.d.ts +0 -19
  632. package/bin/console/InlineInstantRoutes.d.ts.map +0 -1
  633. package/bin/console/InlineInstantRoutes.js +0 -58
  634. package/bin/console/InlineInstantRoutes.js.map +0 -1
  635. package/bin/console/InlineInstantSessionService.d.ts +0 -36
  636. package/bin/console/InlineInstantSessionService.d.ts.map +0 -1
  637. package/bin/console/InlineInstantSessionService.js +0 -190
  638. package/bin/console/InlineInstantSessionService.js.map +0 -1
  639. package/bin/console/InlineInstantSystemComposer.d.ts +0 -34
  640. package/bin/console/InlineInstantSystemComposer.d.ts.map +0 -1
  641. package/bin/console/InlineInstantSystemComposer.js +0 -40
  642. package/bin/console/InlineInstantSystemComposer.js.map +0 -1
  643. package/bin/console/ModelApiRoutes.d.ts +0 -35
  644. package/bin/console/ModelApiRoutes.d.ts.map +0 -1
  645. package/bin/console/ModelApiRoutes.js +0 -237
  646. package/bin/console/ModelApiRoutes.js.map +0 -1
  647. package/bin/console/ModelPoolService.d.ts +0 -126
  648. package/bin/console/ModelPoolService.d.ts.map +0 -1
  649. package/bin/console/ModelPoolService.js +0 -327
  650. package/bin/console/ModelPoolService.js.map +0 -1
  651. package/bin/console/PluginApiRoutes.d.ts +0 -28
  652. package/bin/console/PluginApiRoutes.d.ts.map +0 -1
  653. package/bin/console/PluginApiRoutes.js +0 -299
  654. package/bin/console/PluginApiRoutes.js.map +0 -1
  655. package/bin/console/gateway/AgentActions.d.ts +0 -107
  656. package/bin/console/gateway/AgentActions.d.ts.map +0 -1
  657. package/bin/console/gateway/AgentActions.js +0 -315
  658. package/bin/console/gateway/AgentActions.js.map +0 -1
  659. package/bin/console/gateway/AgentCatalog.d.ts +0 -83
  660. package/bin/console/gateway/AgentCatalog.d.ts.map +0 -1
  661. package/bin/console/gateway/AgentCatalog.js +0 -484
  662. package/bin/console/gateway/AgentCatalog.js.map +0 -1
  663. package/bin/console/gateway/FrontendAssets.d.ts +0 -21
  664. package/bin/console/gateway/FrontendAssets.d.ts.map +0 -1
  665. package/bin/console/gateway/FrontendAssets.js +0 -77
  666. package/bin/console/gateway/FrontendAssets.js.map +0 -1
  667. package/bin/console/gateway/GatewaySupport.d.ts +0 -34
  668. package/bin/console/gateway/GatewaySupport.d.ts.map +0 -1
  669. package/bin/console/gateway/GatewaySupport.js +0 -32
  670. package/bin/console/gateway/GatewaySupport.js.map +0 -1
  671. package/bin/console/gateway/Proxy.d.ts +0 -16
  672. package/bin/console/gateway/Proxy.d.ts.map +0 -1
  673. package/bin/console/gateway/Proxy.js +0 -47
  674. package/bin/console/gateway/Proxy.js.map +0 -1
  675. package/bin/daemon/Api.d.ts +0 -60
  676. package/bin/daemon/Api.d.ts.map +0 -1
  677. package/bin/daemon/Api.js.map +0 -1
  678. package/bin/daemon/CliArgs.d.ts +0 -17
  679. package/bin/daemon/CliArgs.d.ts.map +0 -1
  680. package/bin/daemon/CliArgs.js +0 -30
  681. package/bin/daemon/CliArgs.js.map +0 -1
  682. package/bin/daemon/Client.d.ts.map +0 -1
  683. package/bin/daemon/Client.js +0 -158
  684. package/bin/daemon/Client.js.map +0 -1
  685. package/bin/daemon/Manager.d.ts +0 -92
  686. package/bin/daemon/Manager.d.ts.map +0 -1
  687. package/bin/daemon/Manager.js +0 -287
  688. package/bin/daemon/Manager.js.map +0 -1
  689. package/bin/daemon/PortAllocator.d.ts.map +0 -1
  690. package/bin/daemon/PortAllocator.js.map +0 -1
  691. package/bin/daemon/ProjectSetup.d.ts +0 -22
  692. package/bin/daemon/ProjectSetup.d.ts.map +0 -1
  693. package/bin/daemon/ProjectSetup.js +0 -101
  694. package/bin/daemon/ProjectSetup.js.map +0 -1
  695. package/bin/http/Server.d.ts +0 -39
  696. package/bin/http/Server.d.ts.map +0 -1
  697. package/bin/http/Server.js +0 -122
  698. package/bin/http/Server.js.map +0 -1
  699. package/bin/http/dashboard/AuthDashboardService.d.ts +0 -30
  700. package/bin/http/dashboard/AuthDashboardService.d.ts.map +0 -1
  701. package/bin/http/dashboard/AuthDashboardService.js +0 -120
  702. package/bin/http/dashboard/AuthDashboardService.js.map +0 -1
  703. package/bin/http/dashboard/CommonHelpers.d.ts +0 -24
  704. package/bin/http/dashboard/CommonHelpers.d.ts.map +0 -1
  705. package/bin/http/dashboard/CommonHelpers.js +0 -46
  706. package/bin/http/dashboard/CommonHelpers.js.map +0 -1
  707. package/bin/http/dashboard/DashboardApiRoutes.d.ts +0 -13
  708. package/bin/http/dashboard/DashboardApiRoutes.d.ts.map +0 -1
  709. package/bin/http/dashboard/DashboardApiRoutes.js +0 -26
  710. package/bin/http/dashboard/DashboardApiRoutes.js.map +0 -1
  711. package/bin/http/dashboard/DashboardAuthorizationRoutes.d.ts +0 -17
  712. package/bin/http/dashboard/DashboardAuthorizationRoutes.d.ts.map +0 -1
  713. package/bin/http/dashboard/DashboardAuthorizationRoutes.js +0 -78
  714. package/bin/http/dashboard/DashboardAuthorizationRoutes.js.map +0 -1
  715. package/bin/http/dashboard/ExecuteBySession.d.ts +0 -39
  716. package/bin/http/dashboard/ExecuteBySession.d.ts.map +0 -1
  717. package/bin/http/dashboard/ExecuteBySession.js +0 -129
  718. package/bin/http/dashboard/ExecuteBySession.js.map +0 -1
  719. package/bin/http/dashboard/ExecuteInput.d.ts +0 -18
  720. package/bin/http/dashboard/ExecuteInput.d.ts.map +0 -1
  721. package/bin/http/dashboard/ExecuteInput.js +0 -201
  722. package/bin/http/dashboard/ExecuteInput.js.map +0 -1
  723. package/bin/http/dashboard/Helpers.d.ts +0 -13
  724. package/bin/http/dashboard/Helpers.d.ts.map +0 -1
  725. package/bin/http/dashboard/Helpers.js +0 -13
  726. package/bin/http/dashboard/Helpers.js.map +0 -1
  727. package/bin/http/dashboard/MessageTimeline.d.ts +0 -22
  728. package/bin/http/dashboard/MessageTimeline.d.ts.map +0 -1
  729. package/bin/http/dashboard/MessageTimeline.js +0 -226
  730. package/bin/http/dashboard/MessageTimeline.js.map +0 -1
  731. package/bin/http/dashboard/ModelRoutes.d.ts +0 -13
  732. package/bin/http/dashboard/ModelRoutes.d.ts.map +0 -1
  733. package/bin/http/dashboard/ModelRoutes.js +0 -87
  734. package/bin/http/dashboard/ModelRoutes.js.map +0 -1
  735. package/bin/http/dashboard/OverviewRoutes.d.ts +0 -13
  736. package/bin/http/dashboard/OverviewRoutes.d.ts.map +0 -1
  737. package/bin/http/dashboard/OverviewRoutes.js +0 -88
  738. package/bin/http/dashboard/OverviewRoutes.js.map +0 -1
  739. package/bin/http/dashboard/Router.d.ts +0 -14
  740. package/bin/http/dashboard/Router.d.ts.map +0 -1
  741. package/bin/http/dashboard/Router.js +0 -21
  742. package/bin/http/dashboard/Router.js.map +0 -1
  743. package/bin/http/dashboard/SessionRoutes.d.ts +0 -13
  744. package/bin/http/dashboard/SessionRoutes.d.ts.map +0 -1
  745. package/bin/http/dashboard/SessionRoutes.js +0 -323
  746. package/bin/http/dashboard/SessionRoutes.js.map +0 -1
  747. package/bin/http/dashboard/SessionSummaryStore.d.ts +0 -19
  748. package/bin/http/dashboard/SessionSummaryStore.d.ts.map +0 -1
  749. package/bin/http/dashboard/SessionSummaryStore.js +0 -62
  750. package/bin/http/dashboard/SessionSummaryStore.js.map +0 -1
  751. package/bin/http/dashboard/TaskRoutes.d.ts +0 -13
  752. package/bin/http/dashboard/TaskRoutes.d.ts.map +0 -1
  753. package/bin/http/dashboard/TaskRoutes.js +0 -318
  754. package/bin/http/dashboard/TaskRoutes.js.map +0 -1
  755. package/bin/http/dashboard/TaskStore.d.ts +0 -33
  756. package/bin/http/dashboard/TaskStore.d.ts.map +0 -1
  757. package/bin/http/dashboard/TaskStore.js +0 -157
  758. package/bin/http/dashboard/TaskStore.js.map +0 -1
  759. package/bin/http/execute/execute.d.ts +0 -14
  760. package/bin/http/execute/execute.d.ts.map +0 -1
  761. package/bin/http/execute/execute.js +0 -90
  762. package/bin/http/execute/execute.js.map +0 -1
  763. package/bin/http/health/health.d.ts +0 -14
  764. package/bin/http/health/health.d.ts.map +0 -1
  765. package/bin/http/health/health.js +0 -24
  766. package/bin/http/health/health.js.map +0 -1
  767. package/bin/http/plugins/plugins.d.ts +0 -14
  768. package/bin/http/plugins/plugins.d.ts.map +0 -1
  769. package/bin/http/plugins/plugins.js +0 -55
  770. package/bin/http/plugins/plugins.js.map +0 -1
  771. package/bin/http/services/services.d.ts +0 -21
  772. package/bin/http/services/services.d.ts.map +0 -1
  773. package/bin/http/services/services.js +0 -79
  774. package/bin/http/services/services.js.map +0 -1
  775. package/bin/http/static/static.d.ts +0 -14
  776. package/bin/http/static/static.d.ts.map +0 -1
  777. package/bin/http/static/static.js +0 -97
  778. package/bin/http/static/static.js.map +0 -1
  779. package/bin/model/CreateModel.d.ts +0 -30
  780. package/bin/model/CreateModel.d.ts.map +0 -1
  781. package/bin/model/CreateModel.js +0 -305
  782. package/bin/model/CreateModel.js.map +0 -1
  783. package/bin/model/ModelCommand.d.ts +0 -60
  784. package/bin/model/ModelCommand.d.ts.map +0 -1
  785. package/bin/model/ModelCommand.js +0 -46
  786. package/bin/model/ModelCommand.js.map +0 -1
  787. package/bin/model/ModelManager.d.ts +0 -71
  788. package/bin/model/ModelManager.d.ts.map +0 -1
  789. package/bin/model/ModelManager.js +0 -187
  790. package/bin/model/ModelManager.js.map +0 -1
  791. package/bin/plugin/Activation.d.ts +0 -15
  792. package/bin/plugin/Activation.d.ts.map +0 -1
  793. package/bin/plugin/Activation.js +0 -20
  794. package/bin/plugin/Activation.js.map +0 -1
  795. package/bin/plugin/Catalog.d.ts +0 -42
  796. package/bin/plugin/Catalog.d.ts.map +0 -1
  797. package/bin/plugin/Catalog.js +0 -92
  798. package/bin/plugin/Catalog.js.map +0 -1
  799. package/bin/plugin/HookRegistry.d.ts +0 -68
  800. package/bin/plugin/HookRegistry.d.ts.map +0 -1
  801. package/bin/plugin/HookRegistry.js +0 -186
  802. package/bin/plugin/HookRegistry.js.map +0 -1
  803. package/bin/plugin/HttpRoutes.d.ts +0 -22
  804. package/bin/plugin/HttpRoutes.d.ts.map +0 -1
  805. package/bin/plugin/HttpRoutes.js +0 -37
  806. package/bin/plugin/HttpRoutes.js.map +0 -1
  807. package/bin/plugin/Lifecycle.d.ts +0 -33
  808. package/bin/plugin/Lifecycle.d.ts.map +0 -1
  809. package/bin/plugin/Lifecycle.js +0 -102
  810. package/bin/plugin/Lifecycle.js.map +0 -1
  811. package/bin/plugin/LocalExecution.d.ts +0 -32
  812. package/bin/plugin/LocalExecution.d.ts.map +0 -1
  813. package/bin/plugin/LocalExecution.js +0 -127
  814. package/bin/plugin/LocalExecution.js.map +0 -1
  815. package/bin/plugin/PluginCommand.d.ts +0 -13
  816. package/bin/plugin/PluginCommand.d.ts.map +0 -1
  817. package/bin/plugin/PluginCommand.js +0 -189
  818. package/bin/plugin/PluginCommand.js.map +0 -1
  819. package/bin/plugin/PluginManager.d.ts +0 -24
  820. package/bin/plugin/PluginManager.d.ts.map +0 -1
  821. package/bin/plugin/PluginManager.js +0 -62
  822. package/bin/plugin/PluginManager.js.map +0 -1
  823. package/bin/plugin/PluginRegistry.d.ts +0 -66
  824. package/bin/plugin/PluginRegistry.d.ts.map +0 -1
  825. package/bin/plugin/PluginRegistry.js +0 -184
  826. package/bin/plugin/PluginRegistry.js.map +0 -1
  827. package/bin/plugin/Plugins.d.ts +0 -20
  828. package/bin/plugin/Plugins.d.ts.map +0 -1
  829. package/bin/plugin/Plugins.js +0 -33
  830. package/bin/plugin/Plugins.js.map +0 -1
  831. package/bin/plugin/ProjectConfigStore.d.ts +0 -30
  832. package/bin/plugin/ProjectConfigStore.d.ts.map +0 -1
  833. package/bin/plugin/ProjectConfigStore.js +0 -38
  834. package/bin/plugin/ProjectConfigStore.js.map +0 -1
  835. package/bin/plugins/asr/Dependency.d.ts +0 -77
  836. package/bin/plugins/asr/Dependency.d.ts.map +0 -1
  837. package/bin/plugins/asr/Dependency.js +0 -238
  838. package/bin/plugins/asr/Dependency.js.map +0 -1
  839. package/bin/plugins/asr/ModelCatalog.d.ts +0 -29
  840. package/bin/plugins/asr/ModelCatalog.d.ts.map +0 -1
  841. package/bin/plugins/asr/ModelCatalog.js +0 -25
  842. package/bin/plugins/asr/ModelCatalog.js.map +0 -1
  843. package/bin/plugins/asr/Plugin.d.ts +0 -14
  844. package/bin/plugins/asr/Plugin.d.ts.map +0 -1
  845. package/bin/plugins/asr/Plugin.js +0 -586
  846. package/bin/plugins/asr/Plugin.js.map +0 -1
  847. package/bin/plugins/auth/Plugin.d.ts +0 -14
  848. package/bin/plugins/auth/Plugin.d.ts.map +0 -1
  849. package/bin/plugins/auth/Plugin.js +0 -180
  850. package/bin/plugins/auth/Plugin.js.map +0 -1
  851. package/bin/plugins/auth/runtime/AuthorizationConfig.d.ts +0 -42
  852. package/bin/plugins/auth/runtime/AuthorizationConfig.d.ts.map +0 -1
  853. package/bin/plugins/auth/runtime/AuthorizationConfig.js +0 -264
  854. package/bin/plugins/auth/runtime/AuthorizationConfig.js.map +0 -1
  855. package/bin/plugins/auth/runtime/AuthorizationPolicy.d.ts +0 -31
  856. package/bin/plugins/auth/runtime/AuthorizationPolicy.d.ts.map +0 -1
  857. package/bin/plugins/auth/runtime/AuthorizationPolicy.js +0 -122
  858. package/bin/plugins/auth/runtime/AuthorizationPolicy.js.map +0 -1
  859. package/bin/plugins/auth/runtime/AuthorizationStore.d.ts +0 -29
  860. package/bin/plugins/auth/runtime/AuthorizationStore.d.ts.map +0 -1
  861. package/bin/plugins/auth/runtime/AuthorizationStore.js +0 -179
  862. package/bin/plugins/auth/runtime/AuthorizationStore.js.map +0 -1
  863. package/bin/plugins/skill/Action.d.ts +0 -34
  864. package/bin/plugins/skill/Action.d.ts.map +0 -1
  865. package/bin/plugins/skill/Action.js +0 -122
  866. package/bin/plugins/skill/Action.js.map +0 -1
  867. package/bin/plugins/skill/Command.d.ts +0 -37
  868. package/bin/plugins/skill/Command.d.ts.map +0 -1
  869. package/bin/plugins/skill/Command.js +0 -70
  870. package/bin/plugins/skill/Command.js.map +0 -1
  871. package/bin/plugins/skill/Config.d.ts +0 -18
  872. package/bin/plugins/skill/Config.d.ts.map +0 -1
  873. package/bin/plugins/skill/Config.js +0 -37
  874. package/bin/plugins/skill/Config.js.map +0 -1
  875. package/bin/plugins/skill/PROMPT.txt +0 -10
  876. package/bin/plugins/skill/Plugin.d.ts +0 -14
  877. package/bin/plugins/skill/Plugin.d.ts.map +0 -1
  878. package/bin/plugins/skill/Plugin.js +0 -315
  879. package/bin/plugins/skill/Plugin.js.map +0 -1
  880. package/bin/plugins/skill/runtime/Discovery.d.ts +0 -25
  881. package/bin/plugins/skill/runtime/Discovery.d.ts.map +0 -1
  882. package/bin/plugins/skill/runtime/Discovery.js +0 -130
  883. package/bin/plugins/skill/runtime/Discovery.js.map +0 -1
  884. package/bin/plugins/skill/runtime/Frontmatter.d.ts +0 -6
  885. package/bin/plugins/skill/runtime/Frontmatter.d.ts.map +0 -1
  886. package/bin/plugins/skill/runtime/Frontmatter.js +0 -12
  887. package/bin/plugins/skill/runtime/Frontmatter.js.map +0 -1
  888. package/bin/plugins/skill/runtime/Paths.d.ts +0 -16
  889. package/bin/plugins/skill/runtime/Paths.d.ts.map +0 -1
  890. package/bin/plugins/skill/runtime/Paths.js +0 -111
  891. package/bin/plugins/skill/runtime/Paths.js.map +0 -1
  892. package/bin/plugins/skill/runtime/Prompt.d.ts +0 -19
  893. package/bin/plugins/skill/runtime/Prompt.d.ts.map +0 -1
  894. package/bin/plugins/skill/runtime/Prompt.js +0 -54
  895. package/bin/plugins/skill/runtime/Prompt.js.map +0 -1
  896. package/bin/plugins/skill/runtime/Store.d.ts +0 -25
  897. package/bin/plugins/skill/runtime/Store.d.ts.map +0 -1
  898. package/bin/plugins/skill/runtime/Store.js +0 -81
  899. package/bin/plugins/skill/runtime/Store.js.map +0 -1
  900. package/bin/plugins/skill/runtime/SystemProvider.d.ts +0 -24
  901. package/bin/plugins/skill/runtime/SystemProvider.d.ts.map +0 -1
  902. package/bin/plugins/skill/runtime/SystemProvider.js +0 -33
  903. package/bin/plugins/skill/runtime/SystemProvider.js.map +0 -1
  904. package/bin/plugins/skill/runtime/Types.d.ts +0 -21
  905. package/bin/plugins/skill/runtime/Types.d.ts.map +0 -1
  906. package/bin/plugins/skill/runtime/Types.js +0 -2
  907. package/bin/plugins/skill/runtime/Types.js.map +0 -1
  908. package/bin/plugins/skill/runtime/Utils.d.ts +0 -4
  909. package/bin/plugins/skill/runtime/Utils.d.ts.map +0 -1
  910. package/bin/plugins/skill/runtime/Utils.js +0 -29
  911. package/bin/plugins/skill/runtime/Utils.js.map +0 -1
  912. package/bin/plugins/tts/Dependency.d.ts +0 -90
  913. package/bin/plugins/tts/Dependency.d.ts.map +0 -1
  914. package/bin/plugins/tts/Dependency.js +0 -344
  915. package/bin/plugins/tts/Dependency.js.map +0 -1
  916. package/bin/plugins/tts/Plugin.d.ts +0 -13
  917. package/bin/plugins/tts/Plugin.d.ts.map +0 -1
  918. package/bin/plugins/tts/Plugin.js +0 -524
  919. package/bin/plugins/tts/Plugin.js.map +0 -1
  920. package/bin/plugins/tts/runtime/Catalog.d.ts +0 -21
  921. package/bin/plugins/tts/runtime/Catalog.d.ts.map +0 -1
  922. package/bin/plugins/tts/runtime/Catalog.js +0 -90
  923. package/bin/plugins/tts/runtime/Catalog.js.map +0 -1
  924. package/bin/plugins/tts/runtime/DependencyInstaller.d.ts +0 -143
  925. package/bin/plugins/tts/runtime/DependencyInstaller.d.ts.map +0 -1
  926. package/bin/plugins/tts/runtime/DependencyInstaller.js +0 -261
  927. package/bin/plugins/tts/runtime/DependencyInstaller.js.map +0 -1
  928. package/bin/plugins/tts/runtime/Installer.d.ts +0 -89
  929. package/bin/plugins/tts/runtime/Installer.d.ts.map +0 -1
  930. package/bin/plugins/tts/runtime/Installer.js +0 -188
  931. package/bin/plugins/tts/runtime/Installer.js.map +0 -1
  932. package/bin/plugins/tts/runtime/Paths.d.ts +0 -20
  933. package/bin/plugins/tts/runtime/Paths.d.ts.map +0 -1
  934. package/bin/plugins/tts/runtime/Paths.js +0 -32
  935. package/bin/plugins/tts/runtime/Paths.js.map +0 -1
  936. package/bin/plugins/tts/runtime/Synthesizer.d.ts +0 -44
  937. package/bin/plugins/tts/runtime/Synthesizer.d.ts.map +0 -1
  938. package/bin/plugins/tts/runtime/Synthesizer.js +0 -363
  939. package/bin/plugins/tts/runtime/Synthesizer.js.map +0 -1
  940. package/bin/plugins/voice/Dependency.d.ts +0 -77
  941. package/bin/plugins/voice/Dependency.d.ts.map +0 -1
  942. package/bin/plugins/voice/Dependency.js +0 -237
  943. package/bin/plugins/voice/Dependency.js.map +0 -1
  944. package/bin/plugins/voice/ModelCatalog.d.ts +0 -29
  945. package/bin/plugins/voice/ModelCatalog.d.ts.map +0 -1
  946. package/bin/plugins/voice/ModelCatalog.js +0 -25
  947. package/bin/plugins/voice/ModelCatalog.js.map +0 -1
  948. package/bin/plugins/voice/Plugin.d.ts +0 -14
  949. package/bin/plugins/voice/Plugin.d.ts.map +0 -1
  950. package/bin/plugins/voice/Plugin.js +0 -546
  951. package/bin/plugins/voice/Plugin.js.map +0 -1
  952. package/bin/plugins/voice/runtime/Catalog.d.ts +0 -18
  953. package/bin/plugins/voice/runtime/Catalog.d.ts.map +0 -1
  954. package/bin/plugins/voice/runtime/Catalog.js +0 -61
  955. package/bin/plugins/voice/runtime/Catalog.js.map +0 -1
  956. package/bin/plugins/voice/runtime/DependencyInstaller.d.ts +0 -145
  957. package/bin/plugins/voice/runtime/DependencyInstaller.d.ts.map +0 -1
  958. package/bin/plugins/voice/runtime/DependencyInstaller.js +0 -309
  959. package/bin/plugins/voice/runtime/DependencyInstaller.js.map +0 -1
  960. package/bin/plugins/voice/runtime/Installer.d.ts +0 -94
  961. package/bin/plugins/voice/runtime/Installer.d.ts.map +0 -1
  962. package/bin/plugins/voice/runtime/Installer.js +0 -200
  963. package/bin/plugins/voice/runtime/Installer.js.map +0 -1
  964. package/bin/plugins/voice/runtime/Paths.d.ts +0 -8
  965. package/bin/plugins/voice/runtime/Paths.d.ts.map +0 -1
  966. package/bin/plugins/voice/runtime/Paths.js +0 -26
  967. package/bin/plugins/voice/runtime/Paths.js.map +0 -1
  968. package/bin/plugins/voice/runtime/Transcriber.d.ts +0 -57
  969. package/bin/plugins/voice/runtime/Transcriber.d.ts.map +0 -1
  970. package/bin/plugins/voice/runtime/Transcriber.js +0 -329
  971. package/bin/plugins/voice/runtime/Transcriber.js.map +0 -1
  972. package/bin/plugins/web/Dependency.d.ts +0 -10
  973. package/bin/plugins/web/Dependency.d.ts.map +0 -1
  974. package/bin/plugins/web/Dependency.js +0 -10
  975. package/bin/plugins/web/Dependency.js.map +0 -1
  976. package/bin/plugins/web/PROMPT.agent-browser.txt +0 -17
  977. package/bin/plugins/web/PROMPT.txt +0 -33
  978. package/bin/plugins/web/PROMPT.web-access.txt +0 -13
  979. package/bin/plugins/web/Plugin.d.ts +0 -13
  980. package/bin/plugins/web/Plugin.d.ts.map +0 -1
  981. package/bin/plugins/web/Plugin.js +0 -482
  982. package/bin/plugins/web/Plugin.js.map +0 -1
  983. package/bin/plugins/web/runtime/Config.d.ts +0 -21
  984. package/bin/plugins/web/runtime/Config.d.ts.map +0 -1
  985. package/bin/plugins/web/runtime/Config.js +0 -79
  986. package/bin/plugins/web/runtime/Config.js.map +0 -1
  987. package/bin/plugins/web/runtime/Source.d.ts +0 -29
  988. package/bin/plugins/web/runtime/Source.d.ts.map +0 -1
  989. package/bin/plugins/web/runtime/Source.js +0 -215
  990. package/bin/plugins/web/runtime/Source.js.map +0 -1
  991. package/bin/plugins/workboard/Plugin.d.ts +0 -13
  992. package/bin/plugins/workboard/Plugin.d.ts.map +0 -1
  993. package/bin/plugins/workboard/Plugin.js +0 -71
  994. package/bin/plugins/workboard/Plugin.js.map +0 -1
  995. package/bin/plugins/workboard/runtime/Collector.d.ts +0 -14
  996. package/bin/plugins/workboard/runtime/Collector.d.ts.map +0 -1
  997. package/bin/plugins/workboard/runtime/Collector.js +0 -62
  998. package/bin/plugins/workboard/runtime/Collector.js.map +0 -1
  999. package/bin/plugins/workboard/runtime/Normalizer.d.ts +0 -61
  1000. package/bin/plugins/workboard/runtime/Normalizer.d.ts.map +0 -1
  1001. package/bin/plugins/workboard/runtime/Normalizer.js +0 -172
  1002. package/bin/plugins/workboard/runtime/Normalizer.js.map +0 -1
  1003. package/bin/plugins/workboard/runtime/Store.d.ts +0 -48
  1004. package/bin/plugins/workboard/runtime/Store.d.ts.map +0 -1
  1005. package/bin/plugins/workboard/runtime/Store.js +0 -84
  1006. package/bin/plugins/workboard/runtime/Store.js.map +0 -1
  1007. package/bin/plugins/workboard/types/Workboard.d.ts +0 -150
  1008. package/bin/plugins/workboard/types/Workboard.d.ts.map +0 -1
  1009. package/bin/plugins/workboard/types/Workboard.js +0 -9
  1010. package/bin/plugins/workboard/types/Workboard.js.map +0 -1
  1011. package/bin/registry/AgentHostRuntime.d.ts +0 -10
  1012. package/bin/registry/AgentHostRuntime.d.ts.map +0 -1
  1013. package/bin/registry/AgentHostRuntime.js +0 -47
  1014. package/bin/registry/AgentHostRuntime.js.map +0 -1
  1015. package/bin/registry/CityPaths.d.ts +0 -61
  1016. package/bin/registry/CityPaths.d.ts.map +0 -1
  1017. package/bin/registry/CityPaths.js +0 -90
  1018. package/bin/registry/CityPaths.js.map +0 -1
  1019. package/bin/registry/CityRegistry.d.ts +0 -51
  1020. package/bin/registry/CityRegistry.d.ts.map +0 -1
  1021. package/bin/registry/CityRegistry.js +0 -217
  1022. package/bin/registry/CityRegistry.js.map +0 -1
  1023. package/bin/registry/CityRuntime.d.ts +0 -21
  1024. package/bin/registry/CityRuntime.d.ts.map +0 -1
  1025. package/bin/registry/CityRuntime.js +0 -45
  1026. package/bin/registry/CityRuntime.js.map +0 -1
  1027. package/bin/registry/PluginRuntime.d.ts +0 -24
  1028. package/bin/registry/PluginRuntime.d.ts.map +0 -1
  1029. package/bin/registry/PluginRuntime.js.map +0 -1
  1030. package/bin/registry/ProcessSweep.d.ts +0 -76
  1031. package/bin/registry/ProcessSweep.d.ts.map +0 -1
  1032. package/bin/registry/ProcessSweep.js +0 -202
  1033. package/bin/registry/ProcessSweep.js.map +0 -1
  1034. package/bin/rpc/Client.d.ts +0 -13
  1035. package/bin/rpc/Client.d.ts.map +0 -1
  1036. package/bin/rpc/Client.js.map +0 -1
  1037. package/bin/rpc/Paths.d.ts.map +0 -1
  1038. package/bin/rpc/Paths.js +0 -36
  1039. package/bin/rpc/Paths.js.map +0 -1
  1040. package/bin/rpc/Server.d.ts +0 -18
  1041. package/bin/rpc/Server.d.ts.map +0 -1
  1042. package/bin/rpc/Server.js +0 -307
  1043. package/bin/rpc/Server.js.map +0 -1
  1044. package/bin/rpc/Transport.d.ts +0 -21
  1045. package/bin/rpc/Transport.d.ts.map +0 -1
  1046. package/bin/rpc/Transport.js +0 -30
  1047. package/bin/rpc/Transport.js.map +0 -1
  1048. package/bin/runtime/AgentHostRuntime.d.ts +0 -10
  1049. package/bin/runtime/AgentHostRuntime.d.ts.map +0 -1
  1050. package/bin/runtime/AgentHostRuntime.js +0 -47
  1051. package/bin/runtime/AgentHostRuntime.js.map +0 -1
  1052. package/bin/runtime/CityPaths.d.ts +0 -61
  1053. package/bin/runtime/CityPaths.d.ts.map +0 -1
  1054. package/bin/runtime/CityPaths.js +0 -90
  1055. package/bin/runtime/CityPaths.js.map +0 -1
  1056. package/bin/runtime/CityRegistry.d.ts +0 -51
  1057. package/bin/runtime/CityRegistry.d.ts.map +0 -1
  1058. package/bin/runtime/CityRegistry.js +0 -217
  1059. package/bin/runtime/CityRegistry.js.map +0 -1
  1060. package/bin/runtime/CityRuntime.d.ts +0 -21
  1061. package/bin/runtime/CityRuntime.d.ts.map +0 -1
  1062. package/bin/runtime/CityRuntime.js +0 -45
  1063. package/bin/runtime/CityRuntime.js.map +0 -1
  1064. package/bin/runtime/PluginRuntime.d.ts +0 -24
  1065. package/bin/runtime/PluginRuntime.d.ts.map +0 -1
  1066. package/bin/runtime/PluginRuntime.js +0 -31
  1067. package/bin/runtime/PluginRuntime.js.map +0 -1
  1068. package/bin/runtime/ProcessSweep.d.ts +0 -76
  1069. package/bin/runtime/ProcessSweep.d.ts.map +0 -1
  1070. package/bin/runtime/ProcessSweep.js +0 -202
  1071. package/bin/runtime/ProcessSweep.js.map +0 -1
  1072. package/bin/sandbox/MacOsSeatbeltSandbox.d.ts +0 -16
  1073. package/bin/sandbox/MacOsSeatbeltSandbox.d.ts.map +0 -1
  1074. package/bin/sandbox/MacOsSeatbeltSandbox.js +0 -152
  1075. package/bin/sandbox/MacOsSeatbeltSandbox.js.map +0 -1
  1076. package/bin/sandbox/SandboxConfigResolver.d.ts +0 -31
  1077. package/bin/sandbox/SandboxConfigResolver.d.ts.map +0 -1
  1078. package/bin/sandbox/SandboxConfigResolver.js +0 -113
  1079. package/bin/sandbox/SandboxConfigResolver.js.map +0 -1
  1080. package/bin/sandbox/SandboxRunner.d.ts +0 -46
  1081. package/bin/sandbox/SandboxRunner.d.ts.map +0 -1
  1082. package/bin/sandbox/SandboxRunner.js +0 -70
  1083. package/bin/sandbox/SandboxRunner.js.map +0 -1
  1084. package/bin/service/Manager.d.ts +0 -13
  1085. package/bin/service/Manager.d.ts.map +0 -1
  1086. package/bin/service/Manager.js +0 -12
  1087. package/bin/service/Manager.js.map +0 -1
  1088. package/bin/service/ServiceActionApi.d.ts +0 -15
  1089. package/bin/service/ServiceActionApi.d.ts.map +0 -1
  1090. package/bin/service/ServiceActionApi.js +0 -234
  1091. package/bin/service/ServiceActionApi.js.map +0 -1
  1092. package/bin/service/ServiceActionRunner.d.ts +0 -44
  1093. package/bin/service/ServiceActionRunner.d.ts.map +0 -1
  1094. package/bin/service/ServiceActionRunner.js +0 -211
  1095. package/bin/service/ServiceActionRunner.js.map +0 -1
  1096. package/bin/service/ServiceClassRegistry.d.ts +0 -40
  1097. package/bin/service/ServiceClassRegistry.d.ts.map +0 -1
  1098. package/bin/service/ServiceClassRegistry.js +0 -64
  1099. package/bin/service/ServiceClassRegistry.js.map +0 -1
  1100. package/bin/service/ServiceCommand.d.ts +0 -13
  1101. package/bin/service/ServiceCommand.d.ts.map +0 -1
  1102. package/bin/service/ServiceCommand.js +0 -344
  1103. package/bin/service/ServiceCommand.js.map +0 -1
  1104. package/bin/service/ServiceManager.d.ts +0 -9
  1105. package/bin/service/ServiceManager.d.ts.map +0 -1
  1106. package/bin/service/ServiceManager.js +0 -9
  1107. package/bin/service/ServiceManager.js.map +0 -1
  1108. package/bin/service/ServiceStateController.d.ts +0 -79
  1109. package/bin/service/ServiceStateController.d.ts.map +0 -1
  1110. package/bin/service/ServiceStateController.js +0 -245
  1111. package/bin/service/ServiceStateController.js.map +0 -1
  1112. package/bin/service/ServiceSystemProviders.d.ts +0 -27
  1113. package/bin/service/ServiceSystemProviders.d.ts.map +0 -1
  1114. package/bin/service/ServiceSystemProviders.js +0 -34
  1115. package/bin/service/ServiceSystemProviders.js.map +0 -1
  1116. package/bin/service/Services.d.ts +0 -18
  1117. package/bin/service/Services.d.ts.map +0 -1
  1118. package/bin/service/Services.js +0 -23
  1119. package/bin/service/Services.js.map +0 -1
  1120. package/bin/service/schedule/Executor.d.ts +0 -17
  1121. package/bin/service/schedule/Executor.d.ts.map +0 -1
  1122. package/bin/service/schedule/Executor.js +0 -48
  1123. package/bin/service/schedule/Executor.js.map +0 -1
  1124. package/bin/service/schedule/Runtime.d.ts +0 -17
  1125. package/bin/service/schedule/Runtime.d.ts.map +0 -1
  1126. package/bin/service/schedule/Runtime.js +0 -64
  1127. package/bin/service/schedule/Runtime.js.map +0 -1
  1128. package/bin/service/schedule/Schema.d.ts +0 -171
  1129. package/bin/service/schedule/Schema.d.ts.map +0 -1
  1130. package/bin/service/schedule/Schema.js +0 -26
  1131. package/bin/service/schedule/Schema.js.map +0 -1
  1132. package/bin/service/schedule/Store.d.ts +0 -94
  1133. package/bin/service/schedule/Store.d.ts.map +0 -1
  1134. package/bin/service/schedule/Store.js +0 -266
  1135. package/bin/service/schedule/Store.js.map +0 -1
  1136. package/bin/service/schedule/Time.d.ts +0 -31
  1137. package/bin/service/schedule/Time.d.ts.map +0 -1
  1138. package/bin/service/schedule/Time.js +0 -107
  1139. package/bin/service/schedule/Time.js.map +0 -1
  1140. package/bin/services/BaseService.d.ts +0 -62
  1141. package/bin/services/BaseService.d.ts.map +0 -1
  1142. package/bin/services/BaseService.js +0 -56
  1143. package/bin/services/BaseService.js.map +0 -1
  1144. package/bin/services/chat/Action.d.ts +0 -125
  1145. package/bin/services/chat/Action.d.ts.map +0 -1
  1146. package/bin/services/chat/Action.js +0 -376
  1147. package/bin/services/chat/Action.js.map +0 -1
  1148. package/bin/services/chat/ChatService.d.ts +0 -63
  1149. package/bin/services/chat/ChatService.d.ts.map +0 -1
  1150. package/bin/services/chat/ChatService.js +0 -96
  1151. package/bin/services/chat/ChatService.js.map +0 -1
  1152. package/bin/services/chat/Index.d.ts +0 -9
  1153. package/bin/services/chat/Index.d.ts.map +0 -1
  1154. package/bin/services/chat/Index.js +0 -9
  1155. package/bin/services/chat/Index.js.map +0 -1
  1156. package/bin/services/chat/PROMPT.direct.txt +0 -55
  1157. package/bin/services/chat/accounts/ChannelAccountService.d.ts +0 -60
  1158. package/bin/services/chat/accounts/ChannelAccountService.d.ts.map +0 -1
  1159. package/bin/services/chat/accounts/ChannelAccountService.js +0 -285
  1160. package/bin/services/chat/accounts/ChannelAccountService.js.map +0 -1
  1161. package/bin/services/chat/channels/BaseChatChannel.d.ts +0 -201
  1162. package/bin/services/chat/channels/BaseChatChannel.d.ts.map +0 -1
  1163. package/bin/services/chat/channels/BaseChatChannel.js +0 -294
  1164. package/bin/services/chat/channels/BaseChatChannel.js.map +0 -1
  1165. package/bin/services/chat/channels/BaseChatChannelQueue.d.ts +0 -73
  1166. package/bin/services/chat/channels/BaseChatChannelQueue.d.ts.map +0 -1
  1167. package/bin/services/chat/channels/BaseChatChannelQueue.js +0 -238
  1168. package/bin/services/chat/channels/BaseChatChannelQueue.js.map +0 -1
  1169. package/bin/services/chat/channels/BaseChatChannelSupport.d.ts +0 -189
  1170. package/bin/services/chat/channels/BaseChatChannelSupport.d.ts.map +0 -1
  1171. package/bin/services/chat/channels/BaseChatChannelSupport.js +0 -141
  1172. package/bin/services/chat/channels/BaseChatChannelSupport.js.map +0 -1
  1173. package/bin/services/chat/channels/BotInfoProvider.d.ts +0 -18
  1174. package/bin/services/chat/channels/BotInfoProvider.d.ts.map +0 -1
  1175. package/bin/services/chat/channels/BotInfoProvider.js +0 -32
  1176. package/bin/services/chat/channels/BotInfoProvider.js.map +0 -1
  1177. package/bin/services/chat/channels/Configuration.d.ts +0 -27
  1178. package/bin/services/chat/channels/Configuration.d.ts.map +0 -1
  1179. package/bin/services/chat/channels/Configuration.js +0 -19
  1180. package/bin/services/chat/channels/Configuration.js.map +0 -1
  1181. package/bin/services/chat/channels/ConfigurationRegistry.d.ts +0 -18
  1182. package/bin/services/chat/channels/ConfigurationRegistry.d.ts.map +0 -1
  1183. package/bin/services/chat/channels/ConfigurationRegistry.js +0 -31
  1184. package/bin/services/chat/channels/ConfigurationRegistry.js.map +0 -1
  1185. package/bin/services/chat/channels/feishu/BotInfo.d.ts +0 -20
  1186. package/bin/services/chat/channels/feishu/BotInfo.d.ts.map +0 -1
  1187. package/bin/services/chat/channels/feishu/BotInfo.js +0 -147
  1188. package/bin/services/chat/channels/feishu/BotInfo.js.map +0 -1
  1189. package/bin/services/chat/channels/feishu/Configuration.d.ts +0 -17
  1190. package/bin/services/chat/channels/feishu/Configuration.d.ts.map +0 -1
  1191. package/bin/services/chat/channels/feishu/Configuration.js +0 -59
  1192. package/bin/services/chat/channels/feishu/Configuration.js.map +0 -1
  1193. package/bin/services/chat/channels/feishu/Feishu.d.ts +0 -116
  1194. package/bin/services/chat/channels/feishu/Feishu.d.ts.map +0 -1
  1195. package/bin/services/chat/channels/feishu/Feishu.js +0 -458
  1196. package/bin/services/chat/channels/feishu/Feishu.js.map +0 -1
  1197. package/bin/services/chat/channels/feishu/FeishuInbound.d.ts +0 -21
  1198. package/bin/services/chat/channels/feishu/FeishuInbound.d.ts.map +0 -1
  1199. package/bin/services/chat/channels/feishu/FeishuInbound.js +0 -43
  1200. package/bin/services/chat/channels/feishu/FeishuInbound.js.map +0 -1
  1201. package/bin/services/chat/channels/feishu/FeishuPlatformClient.d.ts +0 -130
  1202. package/bin/services/chat/channels/feishu/FeishuPlatformClient.d.ts.map +0 -1
  1203. package/bin/services/chat/channels/feishu/FeishuPlatformClient.js +0 -316
  1204. package/bin/services/chat/channels/feishu/FeishuPlatformClient.js.map +0 -1
  1205. package/bin/services/chat/channels/feishu/FeishuPlatformLookup.d.ts +0 -102
  1206. package/bin/services/chat/channels/feishu/FeishuPlatformLookup.d.ts.map +0 -1
  1207. package/bin/services/chat/channels/feishu/FeishuPlatformLookup.js +0 -299
  1208. package/bin/services/chat/channels/feishu/FeishuPlatformLookup.js.map +0 -1
  1209. package/bin/services/chat/channels/feishu/FeishuPlatformMessaging.d.ts +0 -49
  1210. package/bin/services/chat/channels/feishu/FeishuPlatformMessaging.d.ts.map +0 -1
  1211. package/bin/services/chat/channels/feishu/FeishuPlatformMessaging.js +0 -139
  1212. package/bin/services/chat/channels/feishu/FeishuPlatformMessaging.js.map +0 -1
  1213. package/bin/services/chat/channels/feishu/InboundAttachment.d.ts +0 -31
  1214. package/bin/services/chat/channels/feishu/InboundAttachment.d.ts.map +0 -1
  1215. package/bin/services/chat/channels/feishu/InboundAttachment.js +0 -222
  1216. package/bin/services/chat/channels/feishu/InboundAttachment.js.map +0 -1
  1217. package/bin/services/chat/channels/feishu/PROMPT.direct.txt +0 -5
  1218. package/bin/services/chat/channels/feishu/PostMessage.d.ts +0 -48
  1219. package/bin/services/chat/channels/feishu/PostMessage.d.ts.map +0 -1
  1220. package/bin/services/chat/channels/feishu/PostMessage.js +0 -413
  1221. package/bin/services/chat/channels/feishu/PostMessage.js.map +0 -1
  1222. package/bin/services/chat/channels/feishu/ReplyContext.d.ts +0 -18
  1223. package/bin/services/chat/channels/feishu/ReplyContext.d.ts.map +0 -1
  1224. package/bin/services/chat/channels/feishu/ReplyContext.js +0 -56
  1225. package/bin/services/chat/channels/feishu/ReplyContext.js.map +0 -1
  1226. package/bin/services/chat/channels/feishu/Shared.d.ts +0 -21
  1227. package/bin/services/chat/channels/feishu/Shared.d.ts.map +0 -1
  1228. package/bin/services/chat/channels/feishu/Shared.js +0 -69
  1229. package/bin/services/chat/channels/feishu/Shared.js.map +0 -1
  1230. package/bin/services/chat/channels/qq/BotInfo.d.ts +0 -19
  1231. package/bin/services/chat/channels/qq/BotInfo.d.ts.map +0 -1
  1232. package/bin/services/chat/channels/qq/BotInfo.js +0 -112
  1233. package/bin/services/chat/channels/qq/BotInfo.js.map +0 -1
  1234. package/bin/services/chat/channels/qq/Configuration.d.ts +0 -17
  1235. package/bin/services/chat/channels/qq/Configuration.d.ts.map +0 -1
  1236. package/bin/services/chat/channels/qq/Configuration.js +0 -59
  1237. package/bin/services/chat/channels/qq/Configuration.js.map +0 -1
  1238. package/bin/services/chat/channels/qq/PROMPT.direct.txt +0 -11
  1239. package/bin/services/chat/channels/qq/QQ.d.ts +0 -92
  1240. package/bin/services/chat/channels/qq/QQ.d.ts.map +0 -1
  1241. package/bin/services/chat/channels/qq/QQ.js +0 -485
  1242. package/bin/services/chat/channels/qq/QQ.js.map +0 -1
  1243. package/bin/services/chat/channels/qq/QQEventCapture.d.ts +0 -22
  1244. package/bin/services/chat/channels/qq/QQEventCapture.d.ts.map +0 -1
  1245. package/bin/services/chat/channels/qq/QQEventCapture.js +0 -67
  1246. package/bin/services/chat/channels/qq/QQEventCapture.js.map +0 -1
  1247. package/bin/services/chat/channels/qq/QQGatewayAuth.d.ts +0 -119
  1248. package/bin/services/chat/channels/qq/QQGatewayAuth.d.ts.map +0 -1
  1249. package/bin/services/chat/channels/qq/QQGatewayAuth.js +0 -186
  1250. package/bin/services/chat/channels/qq/QQGatewayAuth.js.map +0 -1
  1251. package/bin/services/chat/channels/qq/QQGatewayClient.d.ts +0 -179
  1252. package/bin/services/chat/channels/qq/QQGatewayClient.d.ts.map +0 -1
  1253. package/bin/services/chat/channels/qq/QQGatewayClient.js +0 -540
  1254. package/bin/services/chat/channels/qq/QQGatewayClient.js.map +0 -1
  1255. package/bin/services/chat/channels/qq/QQGatewaySend.d.ts +0 -84
  1256. package/bin/services/chat/channels/qq/QQGatewaySend.d.ts.map +0 -1
  1257. package/bin/services/chat/channels/qq/QQGatewaySend.js +0 -120
  1258. package/bin/services/chat/channels/qq/QQGatewaySend.js.map +0 -1
  1259. package/bin/services/chat/channels/qq/QQGatewaySupport.d.ts +0 -39
  1260. package/bin/services/chat/channels/qq/QQGatewaySupport.d.ts.map +0 -1
  1261. package/bin/services/chat/channels/qq/QQGatewaySupport.js +0 -137
  1262. package/bin/services/chat/channels/qq/QQGatewaySupport.js.map +0 -1
  1263. package/bin/services/chat/channels/qq/QQInbound.d.ts +0 -47
  1264. package/bin/services/chat/channels/qq/QQInbound.d.ts.map +0 -1
  1265. package/bin/services/chat/channels/qq/QQInbound.js +0 -235
  1266. package/bin/services/chat/channels/qq/QQInbound.js.map +0 -1
  1267. package/bin/services/chat/channels/qq/QQInboundDedupe.d.ts +0 -48
  1268. package/bin/services/chat/channels/qq/QQInboundDedupe.d.ts.map +0 -1
  1269. package/bin/services/chat/channels/qq/QQInboundDedupe.js +0 -108
  1270. package/bin/services/chat/channels/qq/QQInboundDedupe.js.map +0 -1
  1271. package/bin/services/chat/channels/qq/QQSendSupport.d.ts +0 -20
  1272. package/bin/services/chat/channels/qq/QQSendSupport.d.ts.map +0 -1
  1273. package/bin/services/chat/channels/qq/QQSendSupport.js +0 -86
  1274. package/bin/services/chat/channels/qq/QQSendSupport.js.map +0 -1
  1275. package/bin/services/chat/channels/qq/QQSupport.d.ts +0 -102
  1276. package/bin/services/chat/channels/qq/QQSupport.d.ts.map +0 -1
  1277. package/bin/services/chat/channels/qq/QQSupport.js +0 -172
  1278. package/bin/services/chat/channels/qq/QQSupport.js.map +0 -1
  1279. package/bin/services/chat/channels/qq/VoiceInput.d.ts +0 -64
  1280. package/bin/services/chat/channels/qq/VoiceInput.d.ts.map +0 -1
  1281. package/bin/services/chat/channels/qq/VoiceInput.js +0 -299
  1282. package/bin/services/chat/channels/qq/VoiceInput.js.map +0 -1
  1283. package/bin/services/chat/channels/telegram/ApiClient.d.ts +0 -99
  1284. package/bin/services/chat/channels/telegram/ApiClient.d.ts.map +0 -1
  1285. package/bin/services/chat/channels/telegram/ApiClient.js +0 -306
  1286. package/bin/services/chat/channels/telegram/ApiClient.js.map +0 -1
  1287. package/bin/services/chat/channels/telegram/Bot.d.ts +0 -97
  1288. package/bin/services/chat/channels/telegram/Bot.d.ts.map +0 -1
  1289. package/bin/services/chat/channels/telegram/Bot.js +0 -504
  1290. package/bin/services/chat/channels/telegram/Bot.js.map +0 -1
  1291. package/bin/services/chat/channels/telegram/BotInfo.d.ts +0 -19
  1292. package/bin/services/chat/channels/telegram/BotInfo.d.ts.map +0 -1
  1293. package/bin/services/chat/channels/telegram/BotInfo.js +0 -71
  1294. package/bin/services/chat/channels/telegram/BotInfo.js.map +0 -1
  1295. package/bin/services/chat/channels/telegram/Configuration.d.ts +0 -17
  1296. package/bin/services/chat/channels/telegram/Configuration.d.ts.map +0 -1
  1297. package/bin/services/chat/channels/telegram/Configuration.js +0 -59
  1298. package/bin/services/chat/channels/telegram/Configuration.js.map +0 -1
  1299. package/bin/services/chat/channels/telegram/Handlers.d.ts +0 -42
  1300. package/bin/services/chat/channels/telegram/Handlers.d.ts.map +0 -1
  1301. package/bin/services/chat/channels/telegram/Handlers.js +0 -45
  1302. package/bin/services/chat/channels/telegram/Handlers.js.map +0 -1
  1303. package/bin/services/chat/channels/telegram/PROMPT.direct.txt +0 -1
  1304. package/bin/services/chat/channels/telegram/ReplyContext.d.ts +0 -14
  1305. package/bin/services/chat/channels/telegram/ReplyContext.d.ts.map +0 -1
  1306. package/bin/services/chat/channels/telegram/ReplyContext.js +0 -57
  1307. package/bin/services/chat/channels/telegram/ReplyContext.js.map +0 -1
  1308. package/bin/services/chat/channels/telegram/Shared.d.ts +0 -221
  1309. package/bin/services/chat/channels/telegram/Shared.d.ts.map +0 -1
  1310. package/bin/services/chat/channels/telegram/Shared.js +0 -171
  1311. package/bin/services/chat/channels/telegram/Shared.js.map +0 -1
  1312. package/bin/services/chat/channels/telegram/StateStore.d.ts +0 -27
  1313. package/bin/services/chat/channels/telegram/StateStore.d.ts.map +0 -1
  1314. package/bin/services/chat/channels/telegram/StateStore.js +0 -53
  1315. package/bin/services/chat/channels/telegram/StateStore.js.map +0 -1
  1316. package/bin/services/chat/channels/telegram/TelegramInbound.d.ts +0 -46
  1317. package/bin/services/chat/channels/telegram/TelegramInbound.d.ts.map +0 -1
  1318. package/bin/services/chat/channels/telegram/TelegramInbound.js +0 -148
  1319. package/bin/services/chat/channels/telegram/TelegramInbound.js.map +0 -1
  1320. package/bin/services/chat/channels/telegram/TelegramPlatformClient.d.ts +0 -161
  1321. package/bin/services/chat/channels/telegram/TelegramPlatformClient.d.ts.map +0 -1
  1322. package/bin/services/chat/channels/telegram/TelegramPlatformClient.js +0 -366
  1323. package/bin/services/chat/channels/telegram/TelegramPlatformClient.js.map +0 -1
  1324. package/bin/services/chat/runtime/ChannelContextStore.d.ts +0 -78
  1325. package/bin/services/chat/runtime/ChannelContextStore.d.ts.map +0 -1
  1326. package/bin/services/chat/runtime/ChannelContextStore.js +0 -336
  1327. package/bin/services/chat/runtime/ChannelContextStore.js.map +0 -1
  1328. package/bin/services/chat/runtime/ChatActionExecution.d.ts +0 -145
  1329. package/bin/services/chat/runtime/ChatActionExecution.d.ts.map +0 -1
  1330. package/bin/services/chat/runtime/ChatActionExecution.js +0 -287
  1331. package/bin/services/chat/runtime/ChatActionExecution.js.map +0 -1
  1332. package/bin/services/chat/runtime/ChatActionInput.d.ts +0 -63
  1333. package/bin/services/chat/runtime/ChatActionInput.d.ts.map +0 -1
  1334. package/bin/services/chat/runtime/ChatActionInput.js +0 -458
  1335. package/bin/services/chat/runtime/ChatActionInput.js.map +0 -1
  1336. package/bin/services/chat/runtime/ChatChannelActions.d.ts +0 -122
  1337. package/bin/services/chat/runtime/ChatChannelActions.d.ts.map +0 -1
  1338. package/bin/services/chat/runtime/ChatChannelActions.js +0 -237
  1339. package/bin/services/chat/runtime/ChatChannelActions.js.map +0 -1
  1340. package/bin/services/chat/runtime/ChatChannelConfig.d.ts +0 -61
  1341. package/bin/services/chat/runtime/ChatChannelConfig.d.ts.map +0 -1
  1342. package/bin/services/chat/runtime/ChatChannelConfig.js +0 -265
  1343. package/bin/services/chat/runtime/ChatChannelConfig.js.map +0 -1
  1344. package/bin/services/chat/runtime/ChatChannelCore.d.ts +0 -41
  1345. package/bin/services/chat/runtime/ChatChannelCore.d.ts.map +0 -1
  1346. package/bin/services/chat/runtime/ChatChannelCore.js +0 -92
  1347. package/bin/services/chat/runtime/ChatChannelCore.js.map +0 -1
  1348. package/bin/services/chat/runtime/ChatChannelFacade.d.ts +0 -12
  1349. package/bin/services/chat/runtime/ChatChannelFacade.d.ts.map +0 -1
  1350. package/bin/services/chat/runtime/ChatChannelFacade.js +0 -12
  1351. package/bin/services/chat/runtime/ChatChannelFacade.js.map +0 -1
  1352. package/bin/services/chat/runtime/ChatChannelLifecycle.d.ts +0 -28
  1353. package/bin/services/chat/runtime/ChatChannelLifecycle.d.ts.map +0 -1
  1354. package/bin/services/chat/runtime/ChatChannelLifecycle.js +0 -132
  1355. package/bin/services/chat/runtime/ChatChannelLifecycle.js.map +0 -1
  1356. package/bin/services/chat/runtime/ChatHistoryStore.d.ts +0 -72
  1357. package/bin/services/chat/runtime/ChatHistoryStore.d.ts.map +0 -1
  1358. package/bin/services/chat/runtime/ChatHistoryStore.js +0 -219
  1359. package/bin/services/chat/runtime/ChatHistoryStore.js.map +0 -1
  1360. package/bin/services/chat/runtime/ChatIngressStore.d.ts +0 -52
  1361. package/bin/services/chat/runtime/ChatIngressStore.d.ts.map +0 -1
  1362. package/bin/services/chat/runtime/ChatIngressStore.js +0 -65
  1363. package/bin/services/chat/runtime/ChatIngressStore.js.map +0 -1
  1364. package/bin/services/chat/runtime/ChatMessageMarkup.d.ts +0 -54
  1365. package/bin/services/chat/runtime/ChatMessageMarkup.d.ts.map +0 -1
  1366. package/bin/services/chat/runtime/ChatMessageMarkup.js +0 -233
  1367. package/bin/services/chat/runtime/ChatMessageMarkup.js.map +0 -1
  1368. package/bin/services/chat/runtime/ChatMetaStore.d.ts +0 -68
  1369. package/bin/services/chat/runtime/ChatMetaStore.d.ts.map +0 -1
  1370. package/bin/services/chat/runtime/ChatMetaStore.js +0 -143
  1371. package/bin/services/chat/runtime/ChatMetaStore.js.map +0 -1
  1372. package/bin/services/chat/runtime/ChatQueue.d.ts +0 -40
  1373. package/bin/services/chat/runtime/ChatQueue.d.ts.map +0 -1
  1374. package/bin/services/chat/runtime/ChatQueue.js +0 -52
  1375. package/bin/services/chat/runtime/ChatQueue.js.map +0 -1
  1376. package/bin/services/chat/runtime/ChatQueueReplyDispatch.d.ts +0 -31
  1377. package/bin/services/chat/runtime/ChatQueueReplyDispatch.d.ts.map +0 -1
  1378. package/bin/services/chat/runtime/ChatQueueReplyDispatch.js +0 -168
  1379. package/bin/services/chat/runtime/ChatQueueReplyDispatch.js.map +0 -1
  1380. package/bin/services/chat/runtime/ChatQueueSessionBridge.d.ts +0 -55
  1381. package/bin/services/chat/runtime/ChatQueueSessionBridge.d.ts.map +0 -1
  1382. package/bin/services/chat/runtime/ChatQueueSessionBridge.js +0 -98
  1383. package/bin/services/chat/runtime/ChatQueueSessionBridge.js.map +0 -1
  1384. package/bin/services/chat/runtime/ChatQueueStore.d.ts +0 -85
  1385. package/bin/services/chat/runtime/ChatQueueStore.d.ts.map +0 -1
  1386. package/bin/services/chat/runtime/ChatQueueStore.js +0 -130
  1387. package/bin/services/chat/runtime/ChatQueueStore.js.map +0 -1
  1388. package/bin/services/chat/runtime/ChatQueueWorker.d.ts +0 -88
  1389. package/bin/services/chat/runtime/ChatQueueWorker.d.ts.map +0 -1
  1390. package/bin/services/chat/runtime/ChatQueueWorker.js +0 -435
  1391. package/bin/services/chat/runtime/ChatQueueWorker.js.map +0 -1
  1392. package/bin/services/chat/runtime/ChatQueueWorkerSupport.d.ts +0 -36
  1393. package/bin/services/chat/runtime/ChatQueueWorkerSupport.d.ts.map +0 -1
  1394. package/bin/services/chat/runtime/ChatQueueWorkerSupport.js +0 -101
  1395. package/bin/services/chat/runtime/ChatQueueWorkerSupport.js.map +0 -1
  1396. package/bin/services/chat/runtime/ChatSendMetadata.d.ts +0 -20
  1397. package/bin/services/chat/runtime/ChatSendMetadata.d.ts.map +0 -1
  1398. package/bin/services/chat/runtime/ChatSendMetadata.js +0 -130
  1399. package/bin/services/chat/runtime/ChatSendMetadata.js.map +0 -1
  1400. package/bin/services/chat/runtime/ChatSendRegistry.d.ts +0 -27
  1401. package/bin/services/chat/runtime/ChatSendRegistry.d.ts.map +0 -1
  1402. package/bin/services/chat/runtime/ChatSendRegistry.js +0 -26
  1403. package/bin/services/chat/runtime/ChatSendRegistry.js.map +0 -1
  1404. package/bin/services/chat/runtime/ChatServiceActions.d.ts +0 -17
  1405. package/bin/services/chat/runtime/ChatServiceActions.d.ts.map +0 -1
  1406. package/bin/services/chat/runtime/ChatServiceActions.js +0 -411
  1407. package/bin/services/chat/runtime/ChatServiceActions.js.map +0 -1
  1408. package/bin/services/chat/runtime/ChatServiceSystem.d.ts +0 -22
  1409. package/bin/services/chat/runtime/ChatServiceSystem.d.ts.map +0 -1
  1410. package/bin/services/chat/runtime/ChatServiceSystem.js +0 -87
  1411. package/bin/services/chat/runtime/ChatServiceSystem.js.map +0 -1
  1412. package/bin/services/chat/runtime/ChatSession.d.ts +0 -73
  1413. package/bin/services/chat/runtime/ChatSession.d.ts.map +0 -1
  1414. package/bin/services/chat/runtime/ChatSession.js +0 -78
  1415. package/bin/services/chat/runtime/ChatSession.js.map +0 -1
  1416. package/bin/services/chat/runtime/ChatSessionDelete.d.ts +0 -29
  1417. package/bin/services/chat/runtime/ChatSessionDelete.d.ts.map +0 -1
  1418. package/bin/services/chat/runtime/ChatSessionDelete.js +0 -76
  1419. package/bin/services/chat/runtime/ChatSessionDelete.js.map +0 -1
  1420. package/bin/services/chat/runtime/ChatSessionExecutionComposer.d.ts +0 -45
  1421. package/bin/services/chat/runtime/ChatSessionExecutionComposer.d.ts.map +0 -1
  1422. package/bin/services/chat/runtime/ChatSessionExecutionComposer.js +0 -60
  1423. package/bin/services/chat/runtime/ChatSessionExecutionComposer.js.map +0 -1
  1424. package/bin/services/chat/runtime/ChatkeySend.d.ts +0 -67
  1425. package/bin/services/chat/runtime/ChatkeySend.d.ts.map +0 -1
  1426. package/bin/services/chat/runtime/ChatkeySend.js +0 -147
  1427. package/bin/services/chat/runtime/ChatkeySend.js.map +0 -1
  1428. package/bin/services/chat/runtime/DirectDispatchParser.d.ts +0 -22
  1429. package/bin/services/chat/runtime/DirectDispatchParser.d.ts.map +0 -1
  1430. package/bin/services/chat/runtime/DirectDispatchParser.js +0 -133
  1431. package/bin/services/chat/runtime/DirectDispatchParser.js.map +0 -1
  1432. package/bin/services/chat/runtime/EnqueueDispatch.d.ts +0 -24
  1433. package/bin/services/chat/runtime/EnqueueDispatch.d.ts.map +0 -1
  1434. package/bin/services/chat/runtime/EnqueueDispatch.js +0 -28
  1435. package/bin/services/chat/runtime/EnqueueDispatch.js.map +0 -1
  1436. package/bin/services/chat/runtime/InboundAugment.d.ts +0 -21
  1437. package/bin/services/chat/runtime/InboundAugment.d.ts.map +0 -1
  1438. package/bin/services/chat/runtime/InboundAugment.js +0 -50
  1439. package/bin/services/chat/runtime/InboundAugment.js.map +0 -1
  1440. package/bin/services/chat/runtime/PluginDispatch.d.ts +0 -43
  1441. package/bin/services/chat/runtime/PluginDispatch.d.ts.map +0 -1
  1442. package/bin/services/chat/runtime/PluginDispatch.js +0 -57
  1443. package/bin/services/chat/runtime/PluginDispatch.js.map +0 -1
  1444. package/bin/services/chat/runtime/PluginPoints.d.ts +0 -78
  1445. package/bin/services/chat/runtime/PluginPoints.d.ts.map +0 -1
  1446. package/bin/services/chat/runtime/PluginPoints.js +0 -78
  1447. package/bin/services/chat/runtime/PluginPoints.js.map +0 -1
  1448. package/bin/services/chat/runtime/QueuedUserMessage.d.ts +0 -20
  1449. package/bin/services/chat/runtime/QueuedUserMessage.d.ts.map +0 -1
  1450. package/bin/services/chat/runtime/QueuedUserMessage.js +0 -40
  1451. package/bin/services/chat/runtime/QueuedUserMessage.js.map +0 -1
  1452. package/bin/services/chat/runtime/ReplyContextFormatter.d.ts +0 -29
  1453. package/bin/services/chat/runtime/ReplyContextFormatter.d.ts.map +0 -1
  1454. package/bin/services/chat/runtime/ReplyContextFormatter.js +0 -74
  1455. package/bin/services/chat/runtime/ReplyContextFormatter.js.map +0 -1
  1456. package/bin/services/chat/runtime/ReplyDispatch.d.ts +0 -36
  1457. package/bin/services/chat/runtime/ReplyDispatch.d.ts.map +0 -1
  1458. package/bin/services/chat/runtime/ReplyDispatch.js +0 -51
  1459. package/bin/services/chat/runtime/ReplyDispatch.js.map +0 -1
  1460. package/bin/services/chat/runtime/SystemPrompt.d.ts +0 -26
  1461. package/bin/services/chat/runtime/SystemPrompt.d.ts.map +0 -1
  1462. package/bin/services/chat/runtime/SystemPrompt.js +0 -70
  1463. package/bin/services/chat/runtime/SystemPrompt.js.map +0 -1
  1464. package/bin/services/chat/runtime/UIMessageTransformer.d.ts +0 -24
  1465. package/bin/services/chat/runtime/UIMessageTransformer.d.ts.map +0 -1
  1466. package/bin/services/chat/runtime/UIMessageTransformer.js +0 -102
  1467. package/bin/services/chat/runtime/UIMessageTransformer.js.map +0 -1
  1468. package/bin/services/chat/runtime/UserVisibleText.d.ts +0 -34
  1469. package/bin/services/chat/runtime/UserVisibleText.d.ts.map +0 -1
  1470. package/bin/services/chat/runtime/UserVisibleText.js +0 -73
  1471. package/bin/services/chat/runtime/UserVisibleText.js.map +0 -1
  1472. package/bin/services/chat/types/BotInfo.d.ts +0 -97
  1473. package/bin/services/chat/types/BotInfo.d.ts.map +0 -1
  1474. package/bin/services/chat/types/BotInfo.js +0 -9
  1475. package/bin/services/chat/types/BotInfo.js.map +0 -1
  1476. package/bin/services/chat/types/ChannelAccount.d.ts +0 -226
  1477. package/bin/services/chat/types/ChannelAccount.d.ts.map +0 -1
  1478. package/bin/services/chat/types/ChannelAccount.js +0 -9
  1479. package/bin/services/chat/types/ChannelAccount.js.map +0 -1
  1480. package/bin/services/chat/types/ChannelConfiguration.d.ts +0 -146
  1481. package/bin/services/chat/types/ChannelConfiguration.d.ts.map +0 -1
  1482. package/bin/services/chat/types/ChannelConfiguration.js +0 -9
  1483. package/bin/services/chat/types/ChannelConfiguration.js.map +0 -1
  1484. package/bin/services/chat/types/ChannelContext.d.ts +0 -107
  1485. package/bin/services/chat/types/ChannelContext.d.ts.map +0 -1
  1486. package/bin/services/chat/types/ChannelContext.js +0 -9
  1487. package/bin/services/chat/types/ChannelContext.js.map +0 -1
  1488. package/bin/services/chat/types/ChannelStatus.d.ts +0 -88
  1489. package/bin/services/chat/types/ChannelStatus.d.ts.map +0 -1
  1490. package/bin/services/chat/types/ChannelStatus.js +0 -9
  1491. package/bin/services/chat/types/ChannelStatus.js.map +0 -1
  1492. package/bin/services/chat/types/ChatCommand.d.ts +0 -163
  1493. package/bin/services/chat/types/ChatCommand.d.ts.map +0 -1
  1494. package/bin/services/chat/types/ChatCommand.js +0 -9
  1495. package/bin/services/chat/types/ChatCommand.js.map +0 -1
  1496. package/bin/services/chat/types/ChatDispatcher.d.ts +0 -37
  1497. package/bin/services/chat/types/ChatDispatcher.d.ts.map +0 -1
  1498. package/bin/services/chat/types/ChatDispatcher.js +0 -9
  1499. package/bin/services/chat/types/ChatDispatcher.js.map +0 -1
  1500. package/bin/services/chat/types/ChatHistory.d.ts +0 -36
  1501. package/bin/services/chat/types/ChatHistory.d.ts.map +0 -1
  1502. package/bin/services/chat/types/ChatHistory.js +0 -9
  1503. package/bin/services/chat/types/ChatHistory.js.map +0 -1
  1504. package/bin/services/chat/types/ChatMessageMarkup.d.ts +0 -144
  1505. package/bin/services/chat/types/ChatMessageMarkup.d.ts.map +0 -1
  1506. package/bin/services/chat/types/ChatMessageMarkup.js +0 -9
  1507. package/bin/services/chat/types/ChatMessageMarkup.js.map +0 -1
  1508. package/bin/services/chat/types/ChatMeta.d.ts +0 -34
  1509. package/bin/services/chat/types/ChatMeta.d.ts.map +0 -1
  1510. package/bin/services/chat/types/ChatMeta.js +0 -10
  1511. package/bin/services/chat/types/ChatMeta.js.map +0 -1
  1512. package/bin/services/chat/types/ChatQueue.d.ts +0 -44
  1513. package/bin/services/chat/types/ChatQueue.d.ts.map +0 -1
  1514. package/bin/services/chat/types/ChatQueue.js +0 -9
  1515. package/bin/services/chat/types/ChatQueue.js.map +0 -1
  1516. package/bin/services/chat/types/DirectDispatch.d.ts +0 -115
  1517. package/bin/services/chat/types/DirectDispatch.d.ts.map +0 -1
  1518. package/bin/services/chat/types/DirectDispatch.js +0 -9
  1519. package/bin/services/chat/types/DirectDispatch.js.map +0 -1
  1520. package/bin/services/chat/types/FeishuAttachment.d.ts +0 -42
  1521. package/bin/services/chat/types/FeishuAttachment.d.ts.map +0 -1
  1522. package/bin/services/chat/types/FeishuAttachment.js +0 -9
  1523. package/bin/services/chat/types/FeishuAttachment.js.map +0 -1
  1524. package/bin/services/chat/types/FeishuInboundAttachment.d.ts +0 -114
  1525. package/bin/services/chat/types/FeishuInboundAttachment.d.ts.map +0 -1
  1526. package/bin/services/chat/types/FeishuInboundAttachment.js +0 -9
  1527. package/bin/services/chat/types/FeishuInboundAttachment.js.map +0 -1
  1528. package/bin/services/chat/types/FeishuPost.d.ts +0 -287
  1529. package/bin/services/chat/types/FeishuPost.d.ts.map +0 -1
  1530. package/bin/services/chat/types/FeishuPost.js +0 -9
  1531. package/bin/services/chat/types/FeishuPost.js.map +0 -1
  1532. package/bin/services/chat/types/QqInboundDedupe.d.ts +0 -12
  1533. package/bin/services/chat/types/QqInboundDedupe.d.ts.map +0 -1
  1534. package/bin/services/chat/types/QqInboundDedupe.js +0 -2
  1535. package/bin/services/chat/types/QqInboundDedupe.js.map +0 -1
  1536. package/bin/services/chat/types/QqVoice.d.ts +0 -118
  1537. package/bin/services/chat/types/QqVoice.d.ts.map +0 -1
  1538. package/bin/services/chat/types/QqVoice.js +0 -9
  1539. package/bin/services/chat/types/QqVoice.js.map +0 -1
  1540. package/bin/services/chat/types/ReplyContext.d.ts +0 -46
  1541. package/bin/services/chat/types/ReplyContext.d.ts.map +0 -1
  1542. package/bin/services/chat/types/ReplyContext.js +0 -10
  1543. package/bin/services/chat/types/ReplyContext.js.map +0 -1
  1544. package/bin/services/contact/Action.d.ts +0 -9
  1545. package/bin/services/contact/Action.d.ts.map +0 -1
  1546. package/bin/services/contact/Action.js +0 -9
  1547. package/bin/services/contact/Action.js.map +0 -1
  1548. package/bin/services/contact/ContactService.d.ts +0 -39
  1549. package/bin/services/contact/ContactService.d.ts.map +0 -1
  1550. package/bin/services/contact/ContactService.js +0 -683
  1551. package/bin/services/contact/ContactService.js.map +0 -1
  1552. package/bin/services/contact/Index.d.ts +0 -8
  1553. package/bin/services/contact/Index.d.ts.map +0 -1
  1554. package/bin/services/contact/Index.js +0 -8
  1555. package/bin/services/contact/Index.js.map +0 -1
  1556. package/bin/services/contact/PROMPT.txt +0 -25
  1557. package/bin/services/contact/runtime/ApproveCallback.d.ts +0 -23
  1558. package/bin/services/contact/runtime/ApproveCallback.d.ts.map +0 -1
  1559. package/bin/services/contact/runtime/ApproveCallback.js +0 -83
  1560. package/bin/services/contact/runtime/ApproveCallback.js.map +0 -1
  1561. package/bin/services/contact/runtime/ChatRuntime.d.ts +0 -27
  1562. package/bin/services/contact/runtime/ChatRuntime.d.ts.map +0 -1
  1563. package/bin/services/contact/runtime/ChatRuntime.js +0 -59
  1564. package/bin/services/contact/runtime/ChatRuntime.js.map +0 -1
  1565. package/bin/services/contact/runtime/ContactStore.d.ts +0 -49
  1566. package/bin/services/contact/runtime/ContactStore.d.ts.map +0 -1
  1567. package/bin/services/contact/runtime/ContactStore.js +0 -255
  1568. package/bin/services/contact/runtime/ContactStore.js.map +0 -1
  1569. package/bin/services/contact/runtime/EndpointNotice.d.ts +0 -39
  1570. package/bin/services/contact/runtime/EndpointNotice.d.ts.map +0 -1
  1571. package/bin/services/contact/runtime/EndpointNotice.js +0 -98
  1572. package/bin/services/contact/runtime/EndpointNotice.js.map +0 -1
  1573. package/bin/services/contact/runtime/EndpointResolver.d.ts +0 -36
  1574. package/bin/services/contact/runtime/EndpointResolver.d.ts.map +0 -1
  1575. package/bin/services/contact/runtime/EndpointResolver.js +0 -113
  1576. package/bin/services/contact/runtime/EndpointResolver.js.map +0 -1
  1577. package/bin/services/contact/runtime/InboxStore.d.ts +0 -33
  1578. package/bin/services/contact/runtime/InboxStore.d.ts.map +0 -1
  1579. package/bin/services/contact/runtime/InboxStore.js +0 -142
  1580. package/bin/services/contact/runtime/InboxStore.js.map +0 -1
  1581. package/bin/services/contact/runtime/LinkApproval.d.ts +0 -20
  1582. package/bin/services/contact/runtime/LinkApproval.d.ts.map +0 -1
  1583. package/bin/services/contact/runtime/LinkApproval.js +0 -317
  1584. package/bin/services/contact/runtime/LinkApproval.js.map +0 -1
  1585. package/bin/services/contact/runtime/LinkCode.d.ts +0 -21
  1586. package/bin/services/contact/runtime/LinkCode.d.ts.map +0 -1
  1587. package/bin/services/contact/runtime/LinkCode.js +0 -61
  1588. package/bin/services/contact/runtime/LinkCode.js.map +0 -1
  1589. package/bin/services/contact/runtime/LinkStore.d.ts +0 -17
  1590. package/bin/services/contact/runtime/LinkStore.d.ts.map +0 -1
  1591. package/bin/services/contact/runtime/LinkStore.js +0 -39
  1592. package/bin/services/contact/runtime/LinkStore.js.map +0 -1
  1593. package/bin/services/contact/runtime/Paths.d.ts +0 -64
  1594. package/bin/services/contact/runtime/Paths.d.ts.map +0 -1
  1595. package/bin/services/contact/runtime/Paths.js +0 -103
  1596. package/bin/services/contact/runtime/Paths.js.map +0 -1
  1597. package/bin/services/contact/runtime/RemoteClient.d.ts +0 -46
  1598. package/bin/services/contact/runtime/RemoteClient.d.ts.map +0 -1
  1599. package/bin/services/contact/runtime/RemoteClient.js +0 -102
  1600. package/bin/services/contact/runtime/RemoteClient.js.map +0 -1
  1601. package/bin/services/contact/runtime/ShareBundle.d.ts +0 -65
  1602. package/bin/services/contact/runtime/ShareBundle.d.ts.map +0 -1
  1603. package/bin/services/contact/runtime/ShareBundle.js +0 -185
  1604. package/bin/services/contact/runtime/ShareBundle.js.map +0 -1
  1605. package/bin/services/contact/runtime/SystemProvider.d.ts +0 -12
  1606. package/bin/services/contact/runtime/SystemProvider.d.ts.map +0 -1
  1607. package/bin/services/contact/runtime/SystemProvider.js +0 -21
  1608. package/bin/services/contact/runtime/SystemProvider.js.map +0 -1
  1609. package/bin/services/contact/runtime/Token.d.ts +0 -24
  1610. package/bin/services/contact/runtime/Token.d.ts.map +0 -1
  1611. package/bin/services/contact/runtime/Token.js +0 -36
  1612. package/bin/services/contact/runtime/Token.js.map +0 -1
  1613. package/bin/services/memory/Action.d.ts +0 -41
  1614. package/bin/services/memory/Action.d.ts.map +0 -1
  1615. package/bin/services/memory/Action.js +0 -149
  1616. package/bin/services/memory/Action.js.map +0 -1
  1617. package/bin/services/memory/Index.d.ts +0 -9
  1618. package/bin/services/memory/Index.d.ts.map +0 -1
  1619. package/bin/services/memory/Index.js +0 -9
  1620. package/bin/services/memory/Index.js.map +0 -1
  1621. package/bin/services/memory/MemoryService.d.ts +0 -45
  1622. package/bin/services/memory/MemoryService.d.ts.map +0 -1
  1623. package/bin/services/memory/MemoryService.js +0 -299
  1624. package/bin/services/memory/MemoryService.js.map +0 -1
  1625. package/bin/services/memory/runtime/Flush.d.ts +0 -15
  1626. package/bin/services/memory/runtime/Flush.d.ts.map +0 -1
  1627. package/bin/services/memory/runtime/Flush.js +0 -63
  1628. package/bin/services/memory/runtime/Flush.js.map +0 -1
  1629. package/bin/services/memory/runtime/Indexer.d.ts +0 -71
  1630. package/bin/services/memory/runtime/Indexer.d.ts.map +0 -1
  1631. package/bin/services/memory/runtime/Indexer.js +0 -345
  1632. package/bin/services/memory/runtime/Indexer.js.map +0 -1
  1633. package/bin/services/memory/runtime/Search.d.ts +0 -15
  1634. package/bin/services/memory/runtime/Search.d.ts.map +0 -1
  1635. package/bin/services/memory/runtime/Search.js +0 -64
  1636. package/bin/services/memory/runtime/Search.js.map +0 -1
  1637. package/bin/services/memory/runtime/Store.d.ts +0 -106
  1638. package/bin/services/memory/runtime/Store.d.ts.map +0 -1
  1639. package/bin/services/memory/runtime/Store.js +0 -262
  1640. package/bin/services/memory/runtime/Store.js.map +0 -1
  1641. package/bin/services/memory/runtime/SystemProvider.d.ts +0 -22
  1642. package/bin/services/memory/runtime/SystemProvider.d.ts.map +0 -1
  1643. package/bin/services/memory/runtime/SystemProvider.js +0 -126
  1644. package/bin/services/memory/runtime/SystemProvider.js.map +0 -1
  1645. package/bin/services/memory/runtime/Writer.d.ts +0 -23
  1646. package/bin/services/memory/runtime/Writer.d.ts.map +0 -1
  1647. package/bin/services/memory/runtime/Writer.js +0 -140
  1648. package/bin/services/memory/runtime/Writer.js.map +0 -1
  1649. package/bin/services/memory/types/Memory.d.ts +0 -318
  1650. package/bin/services/memory/types/Memory.d.ts.map +0 -1
  1651. package/bin/services/memory/types/Memory.js +0 -9
  1652. package/bin/services/memory/types/Memory.js.map +0 -1
  1653. package/bin/services/shell/Index.d.ts +0 -9
  1654. package/bin/services/shell/Index.d.ts.map +0 -1
  1655. package/bin/services/shell/Index.js +0 -9
  1656. package/bin/services/shell/Index.js.map +0 -1
  1657. package/bin/services/shell/ShellService.d.ts +0 -65
  1658. package/bin/services/shell/ShellService.d.ts.map +0 -1
  1659. package/bin/services/shell/ShellService.js +0 -138
  1660. package/bin/services/shell/ShellService.js.map +0 -1
  1661. package/bin/services/shell/runtime/Paths.d.ts +0 -12
  1662. package/bin/services/shell/runtime/Paths.d.ts.map +0 -1
  1663. package/bin/services/shell/runtime/Paths.js +0 -21
  1664. package/bin/services/shell/runtime/Paths.js.map +0 -1
  1665. package/bin/services/shell/runtime/ShellActionRuntime.d.ts +0 -49
  1666. package/bin/services/shell/runtime/ShellActionRuntime.d.ts.map +0 -1
  1667. package/bin/services/shell/runtime/ShellActionRuntime.js +0 -463
  1668. package/bin/services/shell/runtime/ShellActionRuntime.js.map +0 -1
  1669. package/bin/services/shell/runtime/ShellActionRuntimeSupport.d.ts +0 -107
  1670. package/bin/services/shell/runtime/ShellActionRuntimeSupport.d.ts.map +0 -1
  1671. package/bin/services/shell/runtime/ShellActionRuntimeSupport.js +0 -452
  1672. package/bin/services/shell/runtime/ShellActionRuntimeSupport.js.map +0 -1
  1673. package/bin/services/shell/types/ShellService.d.ts +0 -216
  1674. package/bin/services/shell/types/ShellService.d.ts.map +0 -1
  1675. package/bin/services/shell/types/ShellService.js +0 -9
  1676. package/bin/services/shell/types/ShellService.js.map +0 -1
  1677. package/bin/services/task/Action.d.ts +0 -36
  1678. package/bin/services/task/Action.d.ts.map +0 -1
  1679. package/bin/services/task/Action.js +0 -407
  1680. package/bin/services/task/Action.js.map +0 -1
  1681. package/bin/services/task/Index.d.ts +0 -9
  1682. package/bin/services/task/Index.d.ts.map +0 -1
  1683. package/bin/services/task/Index.js +0 -9
  1684. package/bin/services/task/Index.js.map +0 -1
  1685. package/bin/services/task/PROMPT.txt +0 -237
  1686. package/bin/services/task/Scheduler.d.ts +0 -17
  1687. package/bin/services/task/Scheduler.d.ts.map +0 -1
  1688. package/bin/services/task/Scheduler.js +0 -231
  1689. package/bin/services/task/Scheduler.js.map +0 -1
  1690. package/bin/services/task/TaskService.d.ts +0 -57
  1691. package/bin/services/task/TaskService.d.ts.map +0 -1
  1692. package/bin/services/task/TaskService.js +0 -126
  1693. package/bin/services/task/TaskService.js.map +0 -1
  1694. package/bin/services/task/runtime/CronRuntime.d.ts +0 -34
  1695. package/bin/services/task/runtime/CronRuntime.d.ts.map +0 -1
  1696. package/bin/services/task/runtime/CronRuntime.js +0 -59
  1697. package/bin/services/task/runtime/CronRuntime.js.map +0 -1
  1698. package/bin/services/task/runtime/CronTrigger.d.ts +0 -19
  1699. package/bin/services/task/runtime/CronTrigger.d.ts.map +0 -1
  1700. package/bin/services/task/runtime/CronTrigger.js +0 -93
  1701. package/bin/services/task/runtime/CronTrigger.js.map +0 -1
  1702. package/bin/services/task/runtime/Frontmatter.d.ts +0 -13
  1703. package/bin/services/task/runtime/Frontmatter.d.ts.map +0 -1
  1704. package/bin/services/task/runtime/Frontmatter.js +0 -19
  1705. package/bin/services/task/runtime/Frontmatter.js.map +0 -1
  1706. package/bin/services/task/runtime/Model.d.ts +0 -73
  1707. package/bin/services/task/runtime/Model.d.ts.map +0 -1
  1708. package/bin/services/task/runtime/Model.js +0 -312
  1709. package/bin/services/task/runtime/Model.js.map +0 -1
  1710. package/bin/services/task/runtime/Paths.d.ts +0 -32
  1711. package/bin/services/task/runtime/Paths.d.ts.map +0 -1
  1712. package/bin/services/task/runtime/Paths.js +0 -103
  1713. package/bin/services/task/runtime/Paths.js.map +0 -1
  1714. package/bin/services/task/runtime/Runner.d.ts +0 -43
  1715. package/bin/services/task/runtime/Runner.d.ts.map +0 -1
  1716. package/bin/services/task/runtime/Runner.js +0 -482
  1717. package/bin/services/task/runtime/Runner.js.map +0 -1
  1718. package/bin/services/task/runtime/Store.d.ts +0 -89
  1719. package/bin/services/task/runtime/Store.d.ts.map +0 -1
  1720. package/bin/services/task/runtime/Store.js +0 -206
  1721. package/bin/services/task/runtime/Store.js.map +0 -1
  1722. package/bin/services/task/runtime/TaskActionExecution.d.ts +0 -160
  1723. package/bin/services/task/runtime/TaskActionExecution.d.ts.map +0 -1
  1724. package/bin/services/task/runtime/TaskActionExecution.js +0 -192
  1725. package/bin/services/task/runtime/TaskActionExecution.js.map +0 -1
  1726. package/bin/services/task/runtime/TaskActionInput.d.ts +0 -48
  1727. package/bin/services/task/runtime/TaskActionInput.d.ts.map +0 -1
  1728. package/bin/services/task/runtime/TaskActionInput.js +0 -357
  1729. package/bin/services/task/runtime/TaskActionInput.js.map +0 -1
  1730. package/bin/services/task/runtime/TaskRunArtifacts.d.ts +0 -189
  1731. package/bin/services/task/runtime/TaskRunArtifacts.d.ts.map +0 -1
  1732. package/bin/services/task/runtime/TaskRunArtifacts.js +0 -271
  1733. package/bin/services/task/runtime/TaskRunArtifacts.js.map +0 -1
  1734. package/bin/services/task/runtime/TaskRunChatDispatch.d.ts +0 -22
  1735. package/bin/services/task/runtime/TaskRunChatDispatch.d.ts.map +0 -1
  1736. package/bin/services/task/runtime/TaskRunChatDispatch.js +0 -66
  1737. package/bin/services/task/runtime/TaskRunChatDispatch.js.map +0 -1
  1738. package/bin/services/task/runtime/TaskRunnerProgress.d.ts +0 -35
  1739. package/bin/services/task/runtime/TaskRunnerProgress.d.ts.map +0 -1
  1740. package/bin/services/task/runtime/TaskRunnerProgress.js +0 -95
  1741. package/bin/services/task/runtime/TaskRunnerProgress.js.map +0 -1
  1742. package/bin/services/task/runtime/TaskRunnerRound.d.ts +0 -80
  1743. package/bin/services/task/runtime/TaskRunnerRound.d.ts.map +0 -1
  1744. package/bin/services/task/runtime/TaskRunnerRound.js +0 -272
  1745. package/bin/services/task/runtime/TaskRunnerRound.js.map +0 -1
  1746. package/bin/services/task/runtime/TaskRunnerSession.d.ts +0 -45
  1747. package/bin/services/task/runtime/TaskRunnerSession.d.ts.map +0 -1
  1748. package/bin/services/task/runtime/TaskRunnerSession.js +0 -138
  1749. package/bin/services/task/runtime/TaskRunnerSession.js.map +0 -1
  1750. package/bin/services/task/runtime/TaskServiceActions.d.ts +0 -16
  1751. package/bin/services/task/runtime/TaskServiceActions.d.ts.map +0 -1
  1752. package/bin/services/task/runtime/TaskServiceActions.js +0 -195
  1753. package/bin/services/task/runtime/TaskServiceActions.js.map +0 -1
  1754. package/bin/services/task/runtime/TaskServiceSystem.d.ts +0 -12
  1755. package/bin/services/task/runtime/TaskServiceSystem.d.ts.map +0 -1
  1756. package/bin/services/task/runtime/TaskServiceSystem.js +0 -26
  1757. package/bin/services/task/runtime/TaskServiceSystem.js.map +0 -1
  1758. package/bin/services/task/types/Cron.d.ts +0 -16
  1759. package/bin/services/task/types/Cron.d.ts.map +0 -1
  1760. package/bin/services/task/types/Cron.js +0 -2
  1761. package/bin/services/task/types/Cron.js.map +0 -1
  1762. package/bin/services/task/types/Task.d.ts +0 -146
  1763. package/bin/services/task/types/Task.d.ts.map +0 -1
  1764. package/bin/services/task/types/Task.js +0 -9
  1765. package/bin/services/task/types/Task.js.map +0 -1
  1766. package/bin/services/task/types/TaskCommand.d.ts +0 -147
  1767. package/bin/services/task/types/TaskCommand.d.ts.map +0 -1
  1768. package/bin/services/task/types/TaskCommand.js +0 -9
  1769. package/bin/services/task/types/TaskCommand.js.map +0 -1
  1770. package/bin/session/Session.d.ts +0 -101
  1771. package/bin/session/Session.d.ts.map +0 -1
  1772. package/bin/session/Session.js +0 -171
  1773. package/bin/session/Session.js.map +0 -1
  1774. package/bin/session/SessionRunScope.d.ts +0 -76
  1775. package/bin/session/SessionRunScope.d.ts.map +0 -1
  1776. package/bin/session/SessionRunScope.js +0 -82
  1777. package/bin/session/SessionRunScope.js.map +0 -1
  1778. package/bin/session/composer/SessionComposer.d.ts +0 -29
  1779. package/bin/session/composer/SessionComposer.d.ts.map +0 -1
  1780. package/bin/session/composer/SessionComposer.js +0 -29
  1781. package/bin/session/composer/SessionComposer.js.map +0 -1
  1782. package/bin/session/composer/compaction/SessionCompactionComposer.d.ts +0 -56
  1783. package/bin/session/composer/compaction/SessionCompactionComposer.d.ts.map +0 -1
  1784. package/bin/session/composer/compaction/SessionCompactionComposer.js +0 -14
  1785. package/bin/session/composer/compaction/SessionCompactionComposer.js.map +0 -1
  1786. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.d.ts +0 -38
  1787. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.d.ts.map +0 -1
  1788. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.js +0 -70
  1789. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.js.map +0 -1
  1790. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts +0 -46
  1791. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.d.ts.map +0 -1
  1792. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.js +0 -199
  1793. package/bin/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.js.map +0 -1
  1794. package/bin/session/composer/execution/LocalSessionExecutionComposer.d.ts +0 -49
  1795. package/bin/session/composer/execution/LocalSessionExecutionComposer.d.ts.map +0 -1
  1796. package/bin/session/composer/execution/LocalSessionExecutionComposer.js +0 -117
  1797. package/bin/session/composer/execution/LocalSessionExecutionComposer.js.map +0 -1
  1798. package/bin/session/composer/execution/SessionExecutionComposer.d.ts +0 -63
  1799. package/bin/session/composer/execution/SessionExecutionComposer.d.ts.map +0 -1
  1800. package/bin/session/composer/execution/SessionExecutionComposer.js +0 -14
  1801. package/bin/session/composer/execution/SessionExecutionComposer.js.map +0 -1
  1802. package/bin/session/composer/history/SessionHistoryComposer.d.ts +0 -156
  1803. package/bin/session/composer/history/SessionHistoryComposer.d.ts.map +0 -1
  1804. package/bin/session/composer/history/SessionHistoryComposer.js +0 -14
  1805. package/bin/session/composer/history/SessionHistoryComposer.js.map +0 -1
  1806. package/bin/session/composer/history/SessionHistoryWriter.d.ts +0 -56
  1807. package/bin/session/composer/history/SessionHistoryWriter.d.ts.map +0 -1
  1808. package/bin/session/composer/history/SessionHistoryWriter.js +0 -95
  1809. package/bin/session/composer/history/SessionHistoryWriter.js.map +0 -1
  1810. package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts +0 -67
  1811. package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.d.ts.map +0 -1
  1812. package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.js +0 -423
  1813. package/bin/session/composer/history/jsonl/JsonlSessionHistoryComposer.js.map +0 -1
  1814. package/bin/session/composer/system/SessionSystemComposer.d.ts +0 -23
  1815. package/bin/session/composer/system/SessionSystemComposer.d.ts.map +0 -1
  1816. package/bin/session/composer/system/SessionSystemComposer.js +0 -14
  1817. package/bin/session/composer/system/SessionSystemComposer.js.map +0 -1
  1818. package/bin/session/composer/system/default/DefaultSessionSystemComposer.d.ts +0 -42
  1819. package/bin/session/composer/system/default/DefaultSessionSystemComposer.d.ts.map +0 -1
  1820. package/bin/session/composer/system/default/DefaultSessionSystemComposer.js +0 -46
  1821. package/bin/session/composer/system/default/DefaultSessionSystemComposer.js.map +0 -1
  1822. package/bin/session/composer/system/default/InitPrompts.d.ts +0 -16
  1823. package/bin/session/composer/system/default/InitPrompts.d.ts.map +0 -1
  1824. package/bin/session/composer/system/default/InitPrompts.js +0 -35
  1825. package/bin/session/composer/system/default/InitPrompts.js.map +0 -1
  1826. package/bin/session/composer/system/default/PromptRenderer.d.ts +0 -35
  1827. package/bin/session/composer/system/default/PromptRenderer.d.ts.map +0 -1
  1828. package/bin/session/composer/system/default/PromptRenderer.js +0 -23
  1829. package/bin/session/composer/system/default/PromptRenderer.js.map +0 -1
  1830. package/bin/session/composer/system/default/StaticPromptCatalog.d.ts +0 -46
  1831. package/bin/session/composer/system/default/StaticPromptCatalog.d.ts.map +0 -1
  1832. package/bin/session/composer/system/default/StaticPromptCatalog.js +0 -223
  1833. package/bin/session/composer/system/default/StaticPromptCatalog.js.map +0 -1
  1834. package/bin/session/composer/system/default/SystemDomain.d.ts +0 -169
  1835. package/bin/session/composer/system/default/SystemDomain.d.ts.map +0 -1
  1836. package/bin/session/composer/system/default/SystemDomain.js +0 -232
  1837. package/bin/session/composer/system/default/SystemDomain.js.map +0 -1
  1838. package/bin/session/composer/system/default/assets/core.prompt.txt +0 -39
  1839. package/bin/session/composer/system/default/assets/init/PROFILE.md.txt +0 -17
  1840. package/bin/session/composer/system/default/assets/init/SOUL.md.txt +0 -88
  1841. package/bin/session/composer/system/default/assets/service.prompt.txt +0 -29
  1842. package/bin/session/composer/system/default/assets/task.prompt.txt +0 -33
  1843. package/bin/session/composer/system/default/variables/GeoContext.d.ts +0 -14
  1844. package/bin/session/composer/system/default/variables/GeoContext.d.ts.map +0 -1
  1845. package/bin/session/composer/system/default/variables/GeoContext.js +0 -150
  1846. package/bin/session/composer/system/default/variables/GeoContext.js.map +0 -1
  1847. package/bin/session/composer/system/default/variables/PromptTypes.d.ts +0 -36
  1848. package/bin/session/composer/system/default/variables/PromptTypes.d.ts.map +0 -1
  1849. package/bin/session/composer/system/default/variables/PromptTypes.js +0 -9
  1850. package/bin/session/composer/system/default/variables/PromptTypes.js.map +0 -1
  1851. package/bin/session/composer/system/default/variables/VariableReplacer.d.ts +0 -61
  1852. package/bin/session/composer/system/default/variables/VariableReplacer.d.ts.map +0 -1
  1853. package/bin/session/composer/system/default/variables/VariableReplacer.js +0 -93
  1854. package/bin/session/composer/system/default/variables/VariableReplacer.js.map +0 -1
  1855. package/bin/session/executors/local/LocalSessionCore.d.ts +0 -116
  1856. package/bin/session/executors/local/LocalSessionCore.d.ts.map +0 -1
  1857. package/bin/session/executors/local/LocalSessionCore.js +0 -574
  1858. package/bin/session/executors/local/LocalSessionCore.js.map +0 -1
  1859. package/bin/session/executors/local/LocalSessionExecutor.d.ts +0 -61
  1860. package/bin/session/executors/local/LocalSessionExecutor.d.ts.map +0 -1
  1861. package/bin/session/executors/local/LocalSessionExecutor.js +0 -36
  1862. package/bin/session/executors/local/LocalSessionExecutor.js.map +0 -1
  1863. package/bin/session/executors/local/SessionLoopDecision.d.ts +0 -27
  1864. package/bin/session/executors/local/SessionLoopDecision.d.ts.map +0 -1
  1865. package/bin/session/executors/local/SessionLoopDecision.js +0 -62
  1866. package/bin/session/executors/local/SessionLoopDecision.js.map +0 -1
  1867. package/bin/session/executors/local/SessionSignals.d.ts +0 -72
  1868. package/bin/session/executors/local/SessionSignals.d.ts.map +0 -1
  1869. package/bin/session/executors/local/SessionSignals.js +0 -357
  1870. package/bin/session/executors/local/SessionSignals.js.map +0 -1
  1871. package/bin/session/ids/resolveSessionId.d.ts +0 -11
  1872. package/bin/session/ids/resolveSessionId.d.ts.map +0 -1
  1873. package/bin/session/ids/resolveSessionId.js +0 -17
  1874. package/bin/session/ids/resolveSessionId.js.map +0 -1
  1875. package/bin/session/messages/SessionAttachmentMapper.d.ts +0 -14
  1876. package/bin/session/messages/SessionAttachmentMapper.d.ts.map +0 -1
  1877. package/bin/session/messages/SessionAttachmentMapper.js +0 -145
  1878. package/bin/session/messages/SessionAttachmentMapper.js.map +0 -1
  1879. package/bin/session/messages/SessionMessageCodec.d.ts +0 -41
  1880. package/bin/session/messages/SessionMessageCodec.d.ts.map +0 -1
  1881. package/bin/session/messages/SessionMessageCodec.js +0 -93
  1882. package/bin/session/messages/SessionMessageCodec.js.map +0 -1
  1883. package/bin/session/messages/SessionMessageLog.d.ts +0 -19
  1884. package/bin/session/messages/SessionMessageLog.d.ts.map +0 -1
  1885. package/bin/session/messages/SessionMessageLog.js +0 -34
  1886. package/bin/session/messages/SessionMessageLog.js.map +0 -1
  1887. package/bin/session/messages/SessionStepEventMapper.d.ts +0 -20
  1888. package/bin/session/messages/SessionStepEventMapper.d.ts.map +0 -1
  1889. package/bin/session/messages/SessionStepEventMapper.js +0 -208
  1890. package/bin/session/messages/SessionStepEventMapper.js.map +0 -1
  1891. package/bin/session/tools/shell/ShellToolBridge.d.ts +0 -79
  1892. package/bin/session/tools/shell/ShellToolBridge.d.ts.map +0 -1
  1893. package/bin/session/tools/shell/ShellToolBridge.js +0 -288
  1894. package/bin/session/tools/shell/ShellToolBridge.js.map +0 -1
  1895. package/bin/session/tools/shell/ShellToolDefinition.d.ts +0 -114
  1896. package/bin/session/tools/shell/ShellToolDefinition.d.ts.map +0 -1
  1897. package/bin/session/tools/shell/ShellToolDefinition.js +0 -359
  1898. package/bin/session/tools/shell/ShellToolDefinition.js.map +0 -1
  1899. package/bin/session/tools/shell/ShellToolFormatting.d.ts +0 -26
  1900. package/bin/session/tools/shell/ShellToolFormatting.d.ts.map +0 -1
  1901. package/bin/session/tools/shell/ShellToolFormatting.js +0 -74
  1902. package/bin/session/tools/shell/ShellToolFormatting.js.map +0 -1
  1903. package/bin/session/tools/shell/ShellToolSchemas.d.ts +0 -118
  1904. package/bin/session/tools/shell/ShellToolSchemas.d.ts.map +0 -1
  1905. package/bin/session/tools/shell/ShellToolSchemas.js +0 -113
  1906. package/bin/session/tools/shell/ShellToolSchemas.js.map +0 -1
  1907. package/bin/shared/constants/DowncityDefault.d.ts +0 -3
  1908. package/bin/shared/constants/DowncityDefault.d.ts.map +0 -1
  1909. package/bin/shared/constants/DowncityDefault.js +0 -37
  1910. package/bin/shared/constants/DowncityDefault.js.map +0 -1
  1911. package/bin/shared/constants/DowncitySchema.d.ts +0 -3
  1912. package/bin/shared/constants/DowncitySchema.d.ts.map +0 -1
  1913. package/bin/shared/constants/DowncitySchema.js +0 -367
  1914. package/bin/shared/constants/DowncitySchema.js.map +0 -1
  1915. package/bin/shared/types/AgentHost.d.ts +0 -72
  1916. package/bin/shared/types/AgentHost.d.ts.map +0 -1
  1917. package/bin/shared/types/AgentHost.js +0 -10
  1918. package/bin/shared/types/AgentHost.js.map +0 -1
  1919. package/bin/shared/types/AgentProject.d.ts +0 -80
  1920. package/bin/shared/types/AgentProject.d.ts.map +0 -1
  1921. package/bin/shared/types/AgentProject.js +0 -9
  1922. package/bin/shared/types/AgentProject.js.map +0 -1
  1923. package/bin/shared/types/AuthDashboard.d.ts +0 -30
  1924. package/bin/shared/types/AuthDashboard.d.ts.map +0 -1
  1925. package/bin/shared/types/AuthDashboard.js +0 -9
  1926. package/bin/shared/types/AuthDashboard.js.map +0 -1
  1927. package/bin/shared/types/AuthPlugin.d.ts +0 -407
  1928. package/bin/shared/types/AuthPlugin.d.ts.map +0 -1
  1929. package/bin/shared/types/AuthPlugin.js +0 -115
  1930. package/bin/shared/types/AuthPlugin.js.map +0 -1
  1931. package/bin/shared/types/ChatPlugin.d.ts +0 -238
  1932. package/bin/shared/types/ChatPlugin.d.ts.map +0 -1
  1933. package/bin/shared/types/ChatPlugin.js +0 -10
  1934. package/bin/shared/types/ChatPlugin.js.map +0 -1
  1935. package/bin/shared/types/ChatPromptContext.d.ts +0 -125
  1936. package/bin/shared/types/ChatPromptContext.d.ts.map +0 -1
  1937. package/bin/shared/types/ChatPromptContext.js +0 -10
  1938. package/bin/shared/types/ChatPromptContext.js.map +0 -1
  1939. package/bin/shared/types/ChatQueueWorker.d.ts +0 -25
  1940. package/bin/shared/types/ChatQueueWorker.d.ts.map +0 -1
  1941. package/bin/shared/types/ChatQueueWorker.js +0 -9
  1942. package/bin/shared/types/ChatQueueWorker.js.map +0 -1
  1943. package/bin/shared/types/ChatRuntime.d.ts +0 -32
  1944. package/bin/shared/types/ChatRuntime.d.ts.map +0 -1
  1945. package/bin/shared/types/ChatRuntime.js +0 -9
  1946. package/bin/shared/types/ChatRuntime.js.map +0 -1
  1947. package/bin/shared/types/ChatService.d.ts +0 -145
  1948. package/bin/shared/types/ChatService.d.ts.map +0 -1
  1949. package/bin/shared/types/ChatService.js +0 -10
  1950. package/bin/shared/types/ChatService.js.map +0 -1
  1951. package/bin/shared/types/ClaudeSkill.d.ts +0 -63
  1952. package/bin/shared/types/ClaudeSkill.d.ts.map +0 -1
  1953. package/bin/shared/types/ClaudeSkill.js +0 -10
  1954. package/bin/shared/types/ClaudeSkill.js.map +0 -1
  1955. package/bin/shared/types/Console.d.ts +0 -373
  1956. package/bin/shared/types/Console.d.ts.map +0 -1
  1957. package/bin/shared/types/Console.js +0 -9
  1958. package/bin/shared/types/Console.js.map +0 -1
  1959. package/bin/shared/types/ConsoleGateway.d.ts +0 -174
  1960. package/bin/shared/types/ConsoleGateway.d.ts.map +0 -1
  1961. package/bin/shared/types/ConsoleGateway.js +0 -9
  1962. package/bin/shared/types/ConsoleGateway.js.map +0 -1
  1963. package/bin/shared/types/Daemon.d.ts +0 -46
  1964. package/bin/shared/types/Daemon.d.ts.map +0 -1
  1965. package/bin/shared/types/Daemon.js +0 -14
  1966. package/bin/shared/types/Daemon.js.map +0 -1
  1967. package/bin/shared/types/DashboardData.d.ts +0 -320
  1968. package/bin/shared/types/DashboardData.d.ts.map +0 -1
  1969. package/bin/shared/types/DashboardData.js +0 -9
  1970. package/bin/shared/types/DashboardData.js.map +0 -1
  1971. package/bin/shared/types/DashboardRoutes.d.ts +0 -28
  1972. package/bin/shared/types/DashboardRoutes.d.ts.map +0 -1
  1973. package/bin/shared/types/DashboardRoutes.js +0 -9
  1974. package/bin/shared/types/DashboardRoutes.js.map +0 -1
  1975. package/bin/shared/types/DashboardSessionExecute.d.ts +0 -85
  1976. package/bin/shared/types/DashboardSessionExecute.d.ts.map +0 -1
  1977. package/bin/shared/types/DashboardSessionExecute.js +0 -9
  1978. package/bin/shared/types/DashboardSessionExecute.js.map +0 -1
  1979. package/bin/shared/types/DowncityConfig.d.ts +0 -214
  1980. package/bin/shared/types/DowncityConfig.d.ts.map +0 -1
  1981. package/bin/shared/types/DowncityConfig.js +0 -2
  1982. package/bin/shared/types/DowncityConfig.js.map +0 -1
  1983. package/bin/shared/types/ExecutionBinding.d.ts +0 -26
  1984. package/bin/shared/types/ExecutionBinding.d.ts.map +0 -1
  1985. package/bin/shared/types/ExecutionBinding.js +0 -10
  1986. package/bin/shared/types/ExecutionBinding.js.map +0 -1
  1987. package/bin/shared/types/FeishuChannel.d.ts +0 -127
  1988. package/bin/shared/types/FeishuChannel.d.ts.map +0 -1
  1989. package/bin/shared/types/FeishuChannel.js +0 -9
  1990. package/bin/shared/types/FeishuChannel.js.map +0 -1
  1991. package/bin/shared/types/InlineInstant.d.ts +0 -82
  1992. package/bin/shared/types/InlineInstant.d.ts.map +0 -1
  1993. package/bin/shared/types/InlineInstant.js +0 -10
  1994. package/bin/shared/types/InlineInstant.js.map +0 -1
  1995. package/bin/shared/types/Json.d.ts +0 -32
  1996. package/bin/shared/types/Json.d.ts.map +0 -1
  1997. package/bin/shared/types/Json.js +0 -9
  1998. package/bin/shared/types/Json.js.map +0 -1
  1999. package/bin/shared/types/LlmConfig.d.ts +0 -100
  2000. package/bin/shared/types/LlmConfig.d.ts.map +0 -1
  2001. package/bin/shared/types/LlmConfig.js +0 -10
  2002. package/bin/shared/types/LlmConfig.js.map +0 -1
  2003. package/bin/shared/types/LocalRpc.d.ts +0 -69
  2004. package/bin/shared/types/LocalRpc.d.ts.map +0 -1
  2005. package/bin/shared/types/LocalRpc.js +0 -9
  2006. package/bin/shared/types/LocalRpc.js.map +0 -1
  2007. package/bin/shared/types/ModelBinding.d.ts +0 -19
  2008. package/bin/shared/types/ModelBinding.d.ts.map +0 -1
  2009. package/bin/shared/types/ModelBinding.js +0 -2
  2010. package/bin/shared/types/ModelBinding.js.map +0 -1
  2011. package/bin/shared/types/Plugin.d.ts +0 -693
  2012. package/bin/shared/types/Plugin.d.ts.map +0 -1
  2013. package/bin/shared/types/Plugin.js +0 -10
  2014. package/bin/shared/types/Plugin.js.map +0 -1
  2015. package/bin/shared/types/PluginApi.d.ts +0 -151
  2016. package/bin/shared/types/PluginApi.d.ts.map +0 -1
  2017. package/bin/shared/types/PluginApi.js +0 -9
  2018. package/bin/shared/types/PluginApi.js.map +0 -1
  2019. package/bin/shared/types/PluginLifecycle.d.ts +0 -34
  2020. package/bin/shared/types/PluginLifecycle.d.ts.map +0 -1
  2021. package/bin/shared/types/PluginLifecycle.js +0 -9
  2022. package/bin/shared/types/PluginLifecycle.js.map +0 -1
  2023. package/bin/shared/types/QqChannel.d.ts +0 -485
  2024. package/bin/shared/types/QqChannel.d.ts.map +0 -1
  2025. package/bin/shared/types/QqChannel.js +0 -42
  2026. package/bin/shared/types/QqChannel.js.map +0 -1
  2027. package/bin/shared/types/QqGatewaySupport.d.ts +0 -82
  2028. package/bin/shared/types/QqGatewaySupport.d.ts.map +0 -1
  2029. package/bin/shared/types/QqGatewaySupport.js +0 -9
  2030. package/bin/shared/types/QqGatewaySupport.js.map +0 -1
  2031. package/bin/shared/types/Sandbox.d.ts +0 -130
  2032. package/bin/shared/types/Sandbox.d.ts.map +0 -1
  2033. package/bin/shared/types/Sandbox.js +0 -10
  2034. package/bin/shared/types/Sandbox.js.map +0 -1
  2035. package/bin/shared/types/Service.d.ts +0 -205
  2036. package/bin/shared/types/Service.d.ts.map +0 -1
  2037. package/bin/shared/types/Service.js +0 -10
  2038. package/bin/shared/types/Service.js.map +0 -1
  2039. package/bin/shared/types/ServiceSchedule.d.ts +0 -114
  2040. package/bin/shared/types/ServiceSchedule.d.ts.map +0 -1
  2041. package/bin/shared/types/ServiceSchedule.js +0 -9
  2042. package/bin/shared/types/ServiceSchedule.js.map +0 -1
  2043. package/bin/shared/types/ServiceState.d.ts +0 -104
  2044. package/bin/shared/types/ServiceState.d.ts.map +0 -1
  2045. package/bin/shared/types/ServiceState.js +0 -9
  2046. package/bin/shared/types/ServiceState.js.map +0 -1
  2047. package/bin/shared/types/Services.d.ts +0 -94
  2048. package/bin/shared/types/Services.d.ts.map +0 -1
  2049. package/bin/shared/types/Services.js +0 -9
  2050. package/bin/shared/types/Services.js.map +0 -1
  2051. package/bin/shared/types/Shell.d.ts +0 -97
  2052. package/bin/shared/types/Shell.d.ts.map +0 -1
  2053. package/bin/shared/types/Shell.js +0 -9
  2054. package/bin/shared/types/Shell.js.map +0 -1
  2055. package/bin/shared/types/SkillCommand.d.ts +0 -87
  2056. package/bin/shared/types/SkillCommand.d.ts.map +0 -1
  2057. package/bin/shared/types/SkillCommand.js +0 -9
  2058. package/bin/shared/types/SkillCommand.js.map +0 -1
  2059. package/bin/shared/types/SkillPlugin.d.ts +0 -102
  2060. package/bin/shared/types/SkillPlugin.d.ts.map +0 -1
  2061. package/bin/shared/types/SkillPlugin.js +0 -29
  2062. package/bin/shared/types/SkillPlugin.js.map +0 -1
  2063. package/bin/shared/types/SkillRoot.d.ts +0 -48
  2064. package/bin/shared/types/SkillRoot.d.ts.map +0 -1
  2065. package/bin/shared/types/SkillRoot.js +0 -9
  2066. package/bin/shared/types/SkillRoot.js.map +0 -1
  2067. package/bin/shared/types/Start.d.ts +0 -16
  2068. package/bin/shared/types/Start.d.ts.map +0 -1
  2069. package/bin/shared/types/Start.js +0 -11
  2070. package/bin/shared/types/Start.js.map +0 -1
  2071. package/bin/shared/types/Store.d.ts +0 -507
  2072. package/bin/shared/types/Store.d.ts.map +0 -1
  2073. package/bin/shared/types/Store.js +0 -2
  2074. package/bin/shared/types/Store.js.map +0 -1
  2075. package/bin/shared/types/TaskService.d.ts +0 -52
  2076. package/bin/shared/types/TaskService.d.ts.map +0 -1
  2077. package/bin/shared/types/TaskService.js +0 -9
  2078. package/bin/shared/types/TaskService.js.map +0 -1
  2079. package/bin/shared/types/Template.d.ts +0 -9
  2080. package/bin/shared/types/Template.d.ts.map +0 -1
  2081. package/bin/shared/types/Template.js +0 -9
  2082. package/bin/shared/types/Template.js.map +0 -1
  2083. package/bin/shared/types/Tts.d.ts +0 -91
  2084. package/bin/shared/types/Tts.d.ts.map +0 -1
  2085. package/bin/shared/types/Tts.js +0 -9
  2086. package/bin/shared/types/Tts.js.map +0 -1
  2087. package/bin/shared/types/TtsPlugin.d.ts +0 -161
  2088. package/bin/shared/types/TtsPlugin.d.ts.map +0 -1
  2089. package/bin/shared/types/TtsPlugin.js +0 -9
  2090. package/bin/shared/types/TtsPlugin.js.map +0 -1
  2091. package/bin/shared/types/Voice.d.ts +0 -58
  2092. package/bin/shared/types/Voice.d.ts.map +0 -1
  2093. package/bin/shared/types/Voice.js +0 -9
  2094. package/bin/shared/types/Voice.js.map +0 -1
  2095. package/bin/shared/types/VoicePlugin.d.ts +0 -190
  2096. package/bin/shared/types/VoicePlugin.d.ts.map +0 -1
  2097. package/bin/shared/types/VoicePlugin.js +0 -9
  2098. package/bin/shared/types/VoicePlugin.js.map +0 -1
  2099. package/bin/shared/types/WebPlugin.d.ts +0 -133
  2100. package/bin/shared/types/WebPlugin.d.ts.map +0 -1
  2101. package/bin/shared/types/WebPlugin.js +0 -12
  2102. package/bin/shared/types/WebPlugin.js.map +0 -1
  2103. package/bin/shared/types/auth/AuthPermission.d.ts +0 -49
  2104. package/bin/shared/types/auth/AuthPermission.d.ts.map +0 -1
  2105. package/bin/shared/types/auth/AuthPermission.js +0 -92
  2106. package/bin/shared/types/auth/AuthPermission.js.map +0 -1
  2107. package/bin/shared/types/auth/AuthRoute.d.ts +0 -29
  2108. package/bin/shared/types/auth/AuthRoute.d.ts.map +0 -1
  2109. package/bin/shared/types/auth/AuthRoute.js +0 -8
  2110. package/bin/shared/types/auth/AuthRoute.js.map +0 -1
  2111. package/bin/shared/types/auth/AuthToken.d.ts +0 -46
  2112. package/bin/shared/types/auth/AuthToken.d.ts.map +0 -1
  2113. package/bin/shared/types/auth/AuthToken.js +0 -9
  2114. package/bin/shared/types/auth/AuthToken.js.map +0 -1
  2115. package/bin/shared/types/auth/AuthTypes.d.ts +0 -227
  2116. package/bin/shared/types/auth/AuthTypes.d.ts.map +0 -1
  2117. package/bin/shared/types/auth/AuthTypes.js +0 -9
  2118. package/bin/shared/types/auth/AuthTypes.js.map +0 -1
  2119. package/bin/shared/utils/Id.d.ts.map +0 -1
  2120. package/bin/shared/utils/Id.js.map +0 -1
  2121. package/bin/shared/utils/Template.d.ts +0 -17
  2122. package/bin/shared/utils/Template.d.ts.map +0 -1
  2123. package/bin/shared/utils/Template.js +0 -24
  2124. package/bin/shared/utils/Template.js.map +0 -1
  2125. package/bin/shared/utils/Time.d.ts +0 -15
  2126. package/bin/shared/utils/Time.d.ts.map +0 -1
  2127. package/bin/shared/utils/Time.js +0 -69
  2128. package/bin/shared/utils/Time.js.map +0 -1
  2129. package/bin/shared/utils/cli/CliOutput.d.ts +0 -51
  2130. package/bin/shared/utils/cli/CliOutput.d.ts.map +0 -1
  2131. package/bin/shared/utils/cli/CliOutput.js +0 -117
  2132. package/bin/shared/utils/cli/CliOutput.js.map +0 -1
  2133. package/bin/shared/utils/cli/Spinner.d.ts.map +0 -1
  2134. package/bin/shared/utils/cli/Spinner.js.map +0 -1
  2135. package/bin/shared/utils/logger/Fetch.d.ts +0 -14
  2136. package/bin/shared/utils/logger/Fetch.d.ts.map +0 -1
  2137. package/bin/shared/utils/logger/Fetch.js +0 -68
  2138. package/bin/shared/utils/logger/Fetch.js.map +0 -1
  2139. package/bin/shared/utils/logger/Format.d.ts +0 -11
  2140. package/bin/shared/utils/logger/Format.d.ts.map +0 -1
  2141. package/bin/shared/utils/logger/Format.js +0 -10
  2142. package/bin/shared/utils/logger/Format.js.map +0 -1
  2143. package/bin/shared/utils/logger/FormatRequest.d.ts +0 -29
  2144. package/bin/shared/utils/logger/FormatRequest.d.ts.map +0 -1
  2145. package/bin/shared/utils/logger/FormatRequest.js +0 -309
  2146. package/bin/shared/utils/logger/FormatRequest.js.map +0 -1
  2147. package/bin/shared/utils/logger/FormatResponse.d.ts +0 -46
  2148. package/bin/shared/utils/logger/FormatResponse.d.ts.map +0 -1
  2149. package/bin/shared/utils/logger/FormatResponse.js +0 -186
  2150. package/bin/shared/utils/logger/FormatResponse.js.map +0 -1
  2151. package/bin/shared/utils/logger/FormatShared.d.ts +0 -33
  2152. package/bin/shared/utils/logger/FormatShared.d.ts.map +0 -1
  2153. package/bin/shared/utils/logger/FormatShared.js +0 -215
  2154. package/bin/shared/utils/logger/FormatShared.js.map +0 -1
  2155. package/bin/shared/utils/logger/Logger.d.ts +0 -101
  2156. package/bin/shared/utils/logger/Logger.d.ts.map +0 -1
  2157. package/bin/shared/utils/logger/Logger.js +0 -308
  2158. package/bin/shared/utils/logger/Logger.js.map +0 -1
  2159. package/bin/shared/utils/storage/index.d.ts +0 -5
  2160. package/bin/shared/utils/storage/index.d.ts.map +0 -1
  2161. package/bin/shared/utils/storage/index.js +0 -23
  2162. package/bin/shared/utils/storage/index.js.map +0 -1
  2163. package/bin/shared/utils/store/StoreChannelAccountRepository.d.ts +0 -34
  2164. package/bin/shared/utils/store/StoreChannelAccountRepository.d.ts.map +0 -1
  2165. package/bin/shared/utils/store/StoreChannelAccountRepository.js +0 -198
  2166. package/bin/shared/utils/store/StoreChannelAccountRepository.js.map +0 -1
  2167. package/bin/shared/utils/store/StoreChatAuthRepository.d.ts +0 -26
  2168. package/bin/shared/utils/store/StoreChatAuthRepository.d.ts.map +0 -1
  2169. package/bin/shared/utils/store/StoreChatAuthRepository.js +0 -145
  2170. package/bin/shared/utils/store/StoreChatAuthRepository.js.map +0 -1
  2171. package/bin/shared/utils/store/StoreEnvRepository.d.ts +0 -98
  2172. package/bin/shared/utils/store/StoreEnvRepository.d.ts.map +0 -1
  2173. package/bin/shared/utils/store/StoreEnvRepository.js +0 -334
  2174. package/bin/shared/utils/store/StoreEnvRepository.js.map +0 -1
  2175. package/bin/shared/utils/store/StoreModelRepository.d.ts +0 -61
  2176. package/bin/shared/utils/store/StoreModelRepository.d.ts.map +0 -1
  2177. package/bin/shared/utils/store/StoreModelRepository.js +0 -278
  2178. package/bin/shared/utils/store/StoreModelRepository.js.map +0 -1
  2179. package/bin/shared/utils/store/StoreSchema.d.ts +0 -13
  2180. package/bin/shared/utils/store/StoreSchema.d.ts.map +0 -1
  2181. package/bin/shared/utils/store/StoreSchema.js +0 -514
  2182. package/bin/shared/utils/store/StoreSchema.js.map +0 -1
  2183. package/bin/shared/utils/store/StoreSecureSettings.d.ts +0 -33
  2184. package/bin/shared/utils/store/StoreSecureSettings.d.ts.map +0 -1
  2185. package/bin/shared/utils/store/StoreSecureSettings.js +0 -91
  2186. package/bin/shared/utils/store/StoreSecureSettings.js.map +0 -1
  2187. package/bin/shared/utils/store/StoreShared.d.ts +0 -44
  2188. package/bin/shared/utils/store/StoreShared.d.ts.map +0 -1
  2189. package/bin/shared/utils/store/StoreShared.js +0 -40
  2190. package/bin/shared/utils/store/StoreShared.js.map +0 -1
  2191. package/bin/shared/utils/store/crypto.d.ts +0 -24
  2192. package/bin/shared/utils/store/crypto.d.ts.map +0 -1
  2193. package/bin/shared/utils/store/crypto.js +0 -101
  2194. package/bin/shared/utils/store/crypto.js.map +0 -1
  2195. package/bin/shared/utils/store/index.d.ts +0 -246
  2196. package/bin/shared/utils/store/index.d.ts.map +0 -1
  2197. package/bin/shared/utils/store/index.js +0 -383
  2198. package/bin/shared/utils/store/index.js.map +0 -1
  2199. package/bin/shared/utils/store/schema.d.ts +0 -690
  2200. package/bin/shared/utils/store/schema.d.ts.map +0 -1
  2201. package/bin/shared/utils/store/schema.js +0 -81
  2202. package/bin/shared/utils/store/schema.js.map +0 -1
  2203. package/bin/types/agent/AgentContext.d.ts +0 -345
  2204. package/bin/types/agent/AgentContext.d.ts.map +0 -1
  2205. package/bin/types/agent/AgentContext.js +0 -10
  2206. package/bin/types/agent/AgentContext.js.map +0 -1
  2207. package/bin/types/agent/AgentRuntime.d.ts +0 -81
  2208. package/bin/types/agent/AgentRuntime.d.ts.map +0 -1
  2209. package/bin/types/agent/AgentRuntime.js +0 -10
  2210. package/bin/types/agent/AgentRuntime.js.map +0 -1
  2211. package/bin/types/chat/ChatSession.d.ts +0 -30
  2212. package/bin/types/chat/ChatSession.d.ts.map +0 -1
  2213. package/bin/types/chat/ChatSession.js +0 -9
  2214. package/bin/types/chat/ChatSession.js.map +0 -1
  2215. package/bin/types/city/PublicHostEnv.d.ts +0 -72
  2216. package/bin/types/city/PublicHostEnv.d.ts.map +0 -1
  2217. package/bin/types/city/PublicHostEnv.js +0 -9
  2218. package/bin/types/city/PublicHostEnv.js.map +0 -1
  2219. package/bin/types/cli/AgentChat.d.ts +0 -147
  2220. package/bin/types/cli/AgentChat.d.ts.map +0 -1
  2221. package/bin/types/cli/AgentChat.js +0 -12
  2222. package/bin/types/cli/AgentChat.js.map +0 -1
  2223. package/bin/types/cli/AgentHistory.d.ts +0 -127
  2224. package/bin/types/cli/AgentHistory.d.ts.map +0 -1
  2225. package/bin/types/cli/AgentHistory.js +0 -9
  2226. package/bin/types/cli/AgentHistory.js.map +0 -1
  2227. package/bin/types/cli/AgentManager.d.ts +0 -113
  2228. package/bin/types/cli/AgentManager.d.ts.map +0 -1
  2229. package/bin/types/cli/AgentManager.js +0 -9
  2230. package/bin/types/cli/AgentManager.js.map +0 -1
  2231. package/bin/types/cli/AgentSelection.d.ts +0 -146
  2232. package/bin/types/cli/AgentSelection.d.ts.map +0 -1
  2233. package/bin/types/cli/AgentSelection.js +0 -9
  2234. package/bin/types/cli/AgentSelection.js.map +0 -1
  2235. package/bin/types/cli/ChatManager.d.ts +0 -64
  2236. package/bin/types/cli/ChatManager.d.ts.map +0 -1
  2237. package/bin/types/cli/ChatManager.js +0 -9
  2238. package/bin/types/cli/ChatManager.js.map +0 -1
  2239. package/bin/types/cli/CliError.d.ts.map +0 -1
  2240. package/bin/types/cli/CliError.js.map +0 -1
  2241. package/bin/types/cli/CliReporter.d.ts +0 -157
  2242. package/bin/types/cli/CliReporter.d.ts.map +0 -1
  2243. package/bin/types/cli/CliReporter.js +0 -10
  2244. package/bin/types/cli/CliReporter.js.map +0 -1
  2245. package/bin/types/cli/ModelManager.d.ts +0 -127
  2246. package/bin/types/cli/ModelManager.d.ts.map +0 -1
  2247. package/bin/types/cli/ModelManager.js +0 -9
  2248. package/bin/types/cli/ModelManager.js.map +0 -1
  2249. package/bin/types/contact/Contact.d.ts +0 -78
  2250. package/bin/types/contact/Contact.d.ts.map +0 -1
  2251. package/bin/types/contact/Contact.js +0 -9
  2252. package/bin/types/contact/Contact.js.map +0 -1
  2253. package/bin/types/contact/ContactApproval.d.ts +0 -145
  2254. package/bin/types/contact/ContactApproval.d.ts.map +0 -1
  2255. package/bin/types/contact/ContactApproval.js +0 -9
  2256. package/bin/types/contact/ContactApproval.js.map +0 -1
  2257. package/bin/types/contact/ContactChat.d.ts +0 -46
  2258. package/bin/types/contact/ContactChat.d.ts.map +0 -1
  2259. package/bin/types/contact/ContactChat.js +0 -9
  2260. package/bin/types/contact/ContactChat.js.map +0 -1
  2261. package/bin/types/contact/ContactCheck.d.ts +0 -66
  2262. package/bin/types/contact/ContactCheck.d.ts.map +0 -1
  2263. package/bin/types/contact/ContactCheck.js +0 -9
  2264. package/bin/types/contact/ContactCheck.js.map +0 -1
  2265. package/bin/types/contact/ContactCommand.d.ts +0 -93
  2266. package/bin/types/contact/ContactCommand.d.ts.map +0 -1
  2267. package/bin/types/contact/ContactCommand.js +0 -8
  2268. package/bin/types/contact/ContactCommand.js.map +0 -1
  2269. package/bin/types/contact/ContactEndpoint.d.ts +0 -12
  2270. package/bin/types/contact/ContactEndpoint.d.ts.map +0 -1
  2271. package/bin/types/contact/ContactEndpoint.js +0 -9
  2272. package/bin/types/contact/ContactEndpoint.js.map +0 -1
  2273. package/bin/types/contact/ContactLink.d.ts +0 -160
  2274. package/bin/types/contact/ContactLink.d.ts.map +0 -1
  2275. package/bin/types/contact/ContactLink.js +0 -9
  2276. package/bin/types/contact/ContactLink.js.map +0 -1
  2277. package/bin/types/contact/ContactShare.d.ts +0 -163
  2278. package/bin/types/contact/ContactShare.d.ts.map +0 -1
  2279. package/bin/types/contact/ContactShare.js +0 -9
  2280. package/bin/types/contact/ContactShare.js.map +0 -1
  2281. package/bin/types/sandbox/SandboxRuntime.d.ts +0 -318
  2282. package/bin/types/sandbox/SandboxRuntime.d.ts.map +0 -1
  2283. package/bin/types/sandbox/SandboxRuntime.js +0 -10
  2284. package/bin/types/sandbox/SandboxRuntime.js.map +0 -1
  2285. package/bin/types/session/SessionExecutor.d.ts +0 -18
  2286. package/bin/types/session/SessionExecutor.d.ts.map +0 -1
  2287. package/bin/types/session/SessionExecutor.js +0 -9
  2288. package/bin/types/session/SessionExecutor.js.map +0 -1
  2289. package/bin/types/session/SessionHistoryMeta.d.ts +0 -26
  2290. package/bin/types/session/SessionHistoryMeta.d.ts.map +0 -1
  2291. package/bin/types/session/SessionHistoryMeta.js +0 -9
  2292. package/bin/types/session/SessionHistoryMeta.js.map +0 -1
  2293. package/bin/types/session/SessionHistoryPaths.d.ts +0 -30
  2294. package/bin/types/session/SessionHistoryPaths.d.ts.map +0 -1
  2295. package/bin/types/session/SessionHistoryPaths.js +0 -2
  2296. package/bin/types/session/SessionHistoryPaths.js.map +0 -1
  2297. package/bin/types/session/SessionLoop.d.ts +0 -79
  2298. package/bin/types/session/SessionLoop.d.ts.map +0 -1
  2299. package/bin/types/session/SessionLoop.js +0 -9
  2300. package/bin/types/session/SessionLoop.js.map +0 -1
  2301. package/bin/types/session/SessionMessages.d.ts +0 -83
  2302. package/bin/types/session/SessionMessages.d.ts.map +0 -1
  2303. package/bin/types/session/SessionMessages.js +0 -10
  2304. package/bin/types/session/SessionMessages.js.map +0 -1
  2305. package/bin/types/session/SessionPrompts.d.ts +0 -13
  2306. package/bin/types/session/SessionPrompts.d.ts.map +0 -1
  2307. package/bin/types/session/SessionPrompts.js +0 -9
  2308. package/bin/types/session/SessionPrompts.js.map +0 -1
  2309. package/bin/types/session/SessionRun.d.ts +0 -100
  2310. package/bin/types/session/SessionRun.d.ts.map +0 -1
  2311. package/bin/types/session/SessionRun.js +0 -10
  2312. package/bin/types/session/SessionRun.js.map +0 -1
  2313. package/bin/types/shell/ShellRuntime.d.ts +0 -91
  2314. package/bin/types/shell/ShellRuntime.d.ts.map +0 -1
  2315. package/bin/types/shell/ShellRuntime.js +0 -10
  2316. package/bin/types/shell/ShellRuntime.js.map +0 -1
  2317. package/bin/types/task/TaskRunner.d.ts +0 -186
  2318. package/bin/types/task/TaskRunner.d.ts.map +0 -1
  2319. package/bin/types/task/TaskRunner.js +0 -9
  2320. package/bin/types/task/TaskRunner.js.map +0 -1
  2321. package/src/agent/AgentContext.ts +0 -181
  2322. package/src/agent/AgentRuntime.ts +0 -348
  2323. package/src/agent/AgentRuntimeState.ts +0 -149
  2324. package/src/agent/project/AgentInitializer.ts +0 -382
  2325. package/src/agent/project/ProjectExecutionBinding.ts +0 -53
  2326. package/src/cli/AgentChat.ts +0 -415
  2327. package/src/cli/AgentHistory.ts +0 -187
  2328. package/src/cli/AgentManager.ts +0 -667
  2329. package/src/cli/AgentReset.ts +0 -181
  2330. package/src/cli/AgentSelection.ts +0 -297
  2331. package/src/cli/ChatAuth.ts +0 -186
  2332. package/src/cli/ChatManager.ts +0 -439
  2333. package/src/cli/CliReporter.ts +0 -362
  2334. package/src/cli/Config.ts +0 -301
  2335. package/src/cli/Console.ts +0 -610
  2336. package/src/cli/ConsoleAuthBootstrap.ts +0 -72
  2337. package/src/cli/ConsoleInit.ts +0 -83
  2338. package/src/cli/Env.ts +0 -556
  2339. package/src/cli/IndexAgentCommand.ts +0 -303
  2340. package/src/cli/IndexConsoleCommand.ts +0 -211
  2341. package/src/cli/IndexConsoleProcess.ts +0 -497
  2342. package/src/cli/IndexConsoleStatus.ts +0 -152
  2343. package/src/cli/IndexSupport.ts +0 -138
  2344. package/src/cli/Init.ts +0 -291
  2345. package/src/cli/ModelCommandShared.ts +0 -126
  2346. package/src/cli/ModelCreateCommand.ts +0 -424
  2347. package/src/cli/ModelManageCommand.ts +0 -516
  2348. package/src/cli/ModelManager.ts +0 -631
  2349. package/src/cli/ModelReadCommand.ts +0 -207
  2350. package/src/cli/ModelSupport.ts +0 -223
  2351. package/src/cli/Plugins.ts +0 -568
  2352. package/src/cli/PortHints.ts +0 -80
  2353. package/src/cli/PublicAccess.ts +0 -106
  2354. package/src/cli/PublicHostEnv.ts +0 -116
  2355. package/src/cli/Restart.ts +0 -68
  2356. package/src/cli/Run.ts +0 -153
  2357. package/src/cli/ServiceCommandRemote.ts +0 -230
  2358. package/src/cli/ServiceCommandSupport.ts +0 -275
  2359. package/src/cli/ServiceScheduleCommand.ts +0 -305
  2360. package/src/cli/Services.ts +0 -189
  2361. package/src/cli/Start.ts +0 -72
  2362. package/src/cli/Status.ts +0 -116
  2363. package/src/cli/Stop.ts +0 -45
  2364. package/src/cli/Token.ts +0 -702
  2365. package/src/cli/Update.ts +0 -183
  2366. package/src/config/Config.ts +0 -251
  2367. package/src/console/AgentStatusApiRoutes.ts +0 -225
  2368. package/src/console/ChannelAccountApiRoutes.ts +0 -119
  2369. package/src/console/ChannelAccountService.ts +0 -9
  2370. package/src/console/ConsoleClient.ts +0 -293
  2371. package/src/console/ConsoleGateway.ts +0 -463
  2372. package/src/console/ConsoleGatewayRoutes.ts +0 -495
  2373. package/src/console/EnvApiRoutes.ts +0 -257
  2374. package/src/console/InlineInstantRoutes.ts +0 -74
  2375. package/src/console/InlineInstantSessionService.ts +0 -276
  2376. package/src/console/InlineInstantSystemComposer.ts +0 -58
  2377. package/src/console/ModelApiRoutes.ts +0 -336
  2378. package/src/console/ModelPoolService.ts +0 -395
  2379. package/src/console/PluginApiRoutes.ts +0 -453
  2380. package/src/console/gateway/AgentActions.ts +0 -413
  2381. package/src/console/gateway/AgentCatalog.ts +0 -606
  2382. package/src/console/gateway/FrontendAssets.ts +0 -79
  2383. package/src/console/gateway/GatewaySupport.ts +0 -59
  2384. package/src/console/gateway/Proxy.ts +0 -62
  2385. package/src/daemon/Api.ts +0 -64
  2386. package/src/daemon/CliArgs.ts +0 -39
  2387. package/src/daemon/Client.ts +0 -182
  2388. package/src/daemon/Manager.ts +0 -344
  2389. package/src/daemon/ProjectSetup.ts +0 -126
  2390. package/src/http/Server.ts +0 -170
  2391. package/src/http/dashboard/AuthDashboardService.ts +0 -161
  2392. package/src/http/dashboard/CommonHelpers.ts +0 -50
  2393. package/src/http/dashboard/DashboardApiRoutes.ts +0 -30
  2394. package/src/http/dashboard/DashboardAuthorizationRoutes.ts +0 -101
  2395. package/src/http/dashboard/ExecuteBySession.ts +0 -152
  2396. package/src/http/dashboard/ExecuteInput.ts +0 -236
  2397. package/src/http/dashboard/Helpers.ts +0 -22
  2398. package/src/http/dashboard/MessageTimeline.ts +0 -269
  2399. package/src/http/dashboard/ModelRoutes.ts +0 -102
  2400. package/src/http/dashboard/OverviewRoutes.ts +0 -101
  2401. package/src/http/dashboard/Router.ts +0 -26
  2402. package/src/http/dashboard/SessionRoutes.ts +0 -402
  2403. package/src/http/dashboard/SessionSummaryStore.ts +0 -76
  2404. package/src/http/dashboard/TaskRoutes.ts +0 -372
  2405. package/src/http/dashboard/TaskStore.ts +0 -222
  2406. package/src/http/execute/execute.ts +0 -120
  2407. package/src/http/health/health.ts +0 -27
  2408. package/src/http/plugins/plugins.ts +0 -67
  2409. package/src/http/services/services.ts +0 -94
  2410. package/src/http/static/static.ts +0 -104
  2411. package/src/model/CreateModel.ts +0 -343
  2412. package/src/model/ModelCommand.ts +0 -95
  2413. package/src/model/ModelManager.ts +0 -242
  2414. package/src/plugin/Activation.ts +0 -22
  2415. package/src/plugin/Catalog.ts +0 -118
  2416. package/src/plugin/HookRegistry.ts +0 -249
  2417. package/src/plugin/HttpRoutes.ts +0 -50
  2418. package/src/plugin/Lifecycle.ts +0 -116
  2419. package/src/plugin/LocalExecution.ts +0 -157
  2420. package/src/plugin/PluginCommand.ts +0 -220
  2421. package/src/plugin/PluginManager.ts +0 -66
  2422. package/src/plugin/PluginRegistry.ts +0 -244
  2423. package/src/plugin/Plugins.ts +0 -39
  2424. package/src/plugin/ProjectConfigStore.ts +0 -58
  2425. package/src/plugins/asr/Dependency.ts +0 -336
  2426. package/src/plugins/asr/ModelCatalog.ts +0 -43
  2427. package/src/plugins/asr/Plugin.ts +0 -640
  2428. package/src/plugins/auth/Plugin.ts +0 -208
  2429. package/src/plugins/auth/runtime/AuthorizationConfig.ts +0 -336
  2430. package/src/plugins/auth/runtime/AuthorizationPolicy.ts +0 -168
  2431. package/src/plugins/auth/runtime/AuthorizationStore.ts +0 -218
  2432. package/src/plugins/skill/Action.ts +0 -159
  2433. package/src/plugins/skill/Command.ts +0 -98
  2434. package/src/plugins/skill/Config.ts +0 -51
  2435. package/src/plugins/skill/PROMPT.txt +0 -10
  2436. package/src/plugins/skill/Plugin.ts +0 -355
  2437. package/src/plugins/skill/runtime/Discovery.ts +0 -141
  2438. package/src/plugins/skill/runtime/Frontmatter.ts +0 -17
  2439. package/src/plugins/skill/runtime/Paths.ts +0 -130
  2440. package/src/plugins/skill/runtime/Prompt.ts +0 -67
  2441. package/src/plugins/skill/runtime/Store.ts +0 -95
  2442. package/src/plugins/skill/runtime/SystemProvider.ts +0 -52
  2443. package/src/plugins/skill/runtime/Types.ts +0 -22
  2444. package/src/plugins/skill/runtime/Utils.ts +0 -28
  2445. package/src/plugins/tts/Dependency.ts +0 -473
  2446. package/src/plugins/tts/Plugin.ts +0 -554
  2447. package/src/plugins/tts/runtime/Catalog.ts +0 -97
  2448. package/src/plugins/tts/runtime/DependencyInstaller.ts +0 -436
  2449. package/src/plugins/tts/runtime/Installer.ts +0 -297
  2450. package/src/plugins/tts/runtime/Paths.ts +0 -39
  2451. package/src/plugins/tts/runtime/Synthesizer.ts +0 -480
  2452. package/src/plugins/voice/Dependency.ts +0 -329
  2453. package/src/plugins/voice/ModelCatalog.ts +0 -43
  2454. package/src/plugins/voice/Plugin.ts +0 -599
  2455. package/src/plugins/voice/runtime/Catalog.ts +0 -68
  2456. package/src/plugins/voice/runtime/DependencyInstaller.ts +0 -505
  2457. package/src/plugins/voice/runtime/Installer.ts +0 -324
  2458. package/src/plugins/voice/runtime/Paths.ts +0 -26
  2459. package/src/plugins/voice/runtime/Transcriber.ts +0 -467
  2460. package/src/plugins/web/Dependency.ts +0 -17
  2461. package/src/plugins/web/PROMPT.agent-browser.txt +0 -17
  2462. package/src/plugins/web/PROMPT.txt +0 -33
  2463. package/src/plugins/web/PROMPT.web-access.txt +0 -13
  2464. package/src/plugins/web/Plugin.ts +0 -516
  2465. package/src/plugins/web/runtime/Config.ts +0 -105
  2466. package/src/plugins/web/runtime/Source.ts +0 -263
  2467. package/src/plugins/workboard/Plugin.ts +0 -81
  2468. package/src/plugins/workboard/runtime/Collector.ts +0 -78
  2469. package/src/plugins/workboard/runtime/Normalizer.ts +0 -213
  2470. package/src/plugins/workboard/runtime/Store.ts +0 -110
  2471. package/src/plugins/workboard/types/Workboard.ts +0 -158
  2472. package/src/registry/AgentHostRuntime.ts +0 -65
  2473. package/src/registry/CityPaths.ts +0 -101
  2474. package/src/registry/CityRegistry.ts +0 -256
  2475. package/src/registry/CityRuntime.ts +0 -45
  2476. package/src/registry/PluginRuntime.ts +0 -42
  2477. package/src/registry/ProcessSweep.ts +0 -256
  2478. package/src/rpc/Client.ts +0 -110
  2479. package/src/rpc/Paths.ts +0 -43
  2480. package/src/rpc/Server.ts +0 -395
  2481. package/src/rpc/Transport.ts +0 -40
  2482. package/src/runtime/AgentHostRuntime.ts +0 -65
  2483. package/src/runtime/CityPaths.ts +0 -101
  2484. package/src/runtime/CityRegistry.ts +0 -256
  2485. package/src/runtime/CityRuntime.ts +0 -45
  2486. package/src/runtime/PluginRuntime.ts +0 -42
  2487. package/src/runtime/ProcessSweep.ts +0 -256
  2488. package/src/sandbox/MacOsSeatbeltSandbox.ts +0 -196
  2489. package/src/sandbox/SandboxConfigResolver.ts +0 -134
  2490. package/src/sandbox/SandboxRunner.ts +0 -101
  2491. package/src/service/Manager.ts +0 -25
  2492. package/src/service/ServiceActionApi.ts +0 -304
  2493. package/src/service/ServiceActionRunner.ts +0 -272
  2494. package/src/service/ServiceClassRegistry.ts +0 -77
  2495. package/src/service/ServiceCommand.ts +0 -413
  2496. package/src/service/ServiceManager.ts +0 -20
  2497. package/src/service/ServiceStateController.ts +0 -316
  2498. package/src/service/ServiceSystemProviders.ts +0 -50
  2499. package/src/service/Services.ts +0 -33
  2500. package/src/service/schedule/Executor.ts +0 -54
  2501. package/src/service/schedule/Runtime.ts +0 -78
  2502. package/src/service/schedule/Schema.ts +0 -34
  2503. package/src/service/schedule/Store.ts +0 -316
  2504. package/src/service/schedule/Time.ts +0 -131
  2505. package/src/services/BaseService.ts +0 -85
  2506. package/src/services/README.md +0 -100
  2507. package/src/services/chat/Action.ts +0 -477
  2508. package/src/services/chat/ChatService.ts +0 -111
  2509. package/src/services/chat/Index.ts +0 -9
  2510. package/src/services/chat/PROMPT.direct.txt +0 -55
  2511. package/src/services/chat/accounts/ChannelAccountService.ts +0 -317
  2512. package/src/services/chat/channels/BaseChatChannel.ts +0 -450
  2513. package/src/services/chat/channels/BaseChatChannelQueue.ts +0 -321
  2514. package/src/services/chat/channels/BaseChatChannelSupport.ts +0 -321
  2515. package/src/services/chat/channels/BotInfoProvider.ts +0 -49
  2516. package/src/services/chat/channels/Configuration.ts +0 -35
  2517. package/src/services/chat/channels/ConfigurationRegistry.ts +0 -43
  2518. package/src/services/chat/channels/feishu/BotInfo.ts +0 -199
  2519. package/src/services/chat/channels/feishu/Configuration.ts +0 -65
  2520. package/src/services/chat/channels/feishu/Feishu.ts +0 -634
  2521. package/src/services/chat/channels/feishu/FeishuInbound.ts +0 -51
  2522. package/src/services/chat/channels/feishu/FeishuPlatformClient.ts +0 -421
  2523. package/src/services/chat/channels/feishu/FeishuPlatformLookup.ts +0 -523
  2524. package/src/services/chat/channels/feishu/FeishuPlatformMessaging.ts +0 -219
  2525. package/src/services/chat/channels/feishu/InboundAttachment.ts +0 -261
  2526. package/src/services/chat/channels/feishu/PROMPT.direct.txt +0 -5
  2527. package/src/services/chat/channels/feishu/PostMessage.ts +0 -492
  2528. package/src/services/chat/channels/feishu/ReplyContext.ts +0 -68
  2529. package/src/services/chat/channels/feishu/Shared.ts +0 -94
  2530. package/src/services/chat/channels/qq/BotInfo.ts +0 -137
  2531. package/src/services/chat/channels/qq/Configuration.ts +0 -64
  2532. package/src/services/chat/channels/qq/PROMPT.direct.txt +0 -11
  2533. package/src/services/chat/channels/qq/QQ.ts +0 -633
  2534. package/src/services/chat/channels/qq/QQEventCapture.ts +0 -88
  2535. package/src/services/chat/channels/qq/QQGatewayAuth.ts +0 -318
  2536. package/src/services/chat/channels/qq/QQGatewayClient.ts +0 -641
  2537. package/src/services/chat/channels/qq/QQGatewaySend.ts +0 -258
  2538. package/src/services/chat/channels/qq/QQGatewaySupport.ts +0 -159
  2539. package/src/services/chat/channels/qq/QQInbound.ts +0 -262
  2540. package/src/services/chat/channels/qq/QQInboundDedupe.ts +0 -126
  2541. package/src/services/chat/channels/qq/QQSendSupport.ts +0 -91
  2542. package/src/services/chat/channels/qq/QQSupport.ts +0 -263
  2543. package/src/services/chat/channels/qq/VoiceInput.ts +0 -381
  2544. package/src/services/chat/channels/telegram/ApiClient.ts +0 -373
  2545. package/src/services/chat/channels/telegram/Bot.ts +0 -652
  2546. package/src/services/chat/channels/telegram/BotInfo.ts +0 -92
  2547. package/src/services/chat/channels/telegram/Configuration.ts +0 -65
  2548. package/src/services/chat/channels/telegram/Handlers.ts +0 -91
  2549. package/src/services/chat/channels/telegram/PROMPT.direct.txt +0 -1
  2550. package/src/services/chat/channels/telegram/ReplyContext.ts +0 -76
  2551. package/src/services/chat/channels/telegram/Shared.ts +0 -404
  2552. package/src/services/chat/channels/telegram/StateStore.ts +0 -58
  2553. package/src/services/chat/channels/telegram/TelegramInbound.ts +0 -186
  2554. package/src/services/chat/channels/telegram/TelegramPlatformClient.ts +0 -482
  2555. package/src/services/chat/runtime/ChannelContextStore.ts +0 -395
  2556. package/src/services/chat/runtime/ChatActionExecution.ts +0 -362
  2557. package/src/services/chat/runtime/ChatActionInput.ts +0 -590
  2558. package/src/services/chat/runtime/ChatChannelActions.ts +0 -313
  2559. package/src/services/chat/runtime/ChatChannelConfig.ts +0 -334
  2560. package/src/services/chat/runtime/ChatChannelCore.ts +0 -112
  2561. package/src/services/chat/runtime/ChatChannelFacade.ts +0 -23
  2562. package/src/services/chat/runtime/ChatChannelLifecycle.ts +0 -165
  2563. package/src/services/chat/runtime/ChatHistoryStore.ts +0 -289
  2564. package/src/services/chat/runtime/ChatIngressStore.ts +0 -88
  2565. package/src/services/chat/runtime/ChatMessageMarkup.ts +0 -263
  2566. package/src/services/chat/runtime/ChatMetaStore.ts +0 -186
  2567. package/src/services/chat/runtime/ChatQueue.ts +0 -77
  2568. package/src/services/chat/runtime/ChatQueueReplyDispatch.ts +0 -191
  2569. package/src/services/chat/runtime/ChatQueueSessionBridge.ts +0 -122
  2570. package/src/services/chat/runtime/ChatQueueStore.ts +0 -185
  2571. package/src/services/chat/runtime/ChatQueueWorker.ts +0 -504
  2572. package/src/services/chat/runtime/ChatQueueWorkerSupport.ts +0 -137
  2573. package/src/services/chat/runtime/ChatSendMetadata.ts +0 -170
  2574. package/src/services/chat/runtime/ChatSendRegistry.ts +0 -43
  2575. package/src/services/chat/runtime/ChatServiceActions.ts +0 -484
  2576. package/src/services/chat/runtime/ChatServiceSystem.ts +0 -119
  2577. package/src/services/chat/runtime/ChatSession.ts +0 -125
  2578. package/src/services/chat/runtime/ChatSessionDelete.ts +0 -95
  2579. package/src/services/chat/runtime/ChatSessionExecutionComposer.ts +0 -106
  2580. package/src/services/chat/runtime/ChatkeySend.ts +0 -187
  2581. package/src/services/chat/runtime/DirectDispatchParser.ts +0 -158
  2582. package/src/services/chat/runtime/EnqueueDispatch.ts +0 -49
  2583. package/src/services/chat/runtime/InboundAugment.ts +0 -63
  2584. package/src/services/chat/runtime/PluginDispatch.ts +0 -89
  2585. package/src/services/chat/runtime/PluginPoints.ts +0 -78
  2586. package/src/services/chat/runtime/QueuedUserMessage.ts +0 -43
  2587. package/src/services/chat/runtime/ReplyContextFormatter.ts +0 -85
  2588. package/src/services/chat/runtime/ReplyDispatch.ts +0 -78
  2589. package/src/services/chat/runtime/SystemPrompt.ts +0 -84
  2590. package/src/services/chat/runtime/UIMessageTransformer.ts +0 -141
  2591. package/src/services/chat/runtime/UserVisibleText.ts +0 -84
  2592. package/src/services/chat/types/BotInfo.ts +0 -101
  2593. package/src/services/chat/types/ChannelAccount.ts +0 -232
  2594. package/src/services/chat/types/ChannelConfiguration.ts +0 -161
  2595. package/src/services/chat/types/ChannelContext.ts +0 -110
  2596. package/src/services/chat/types/ChannelStatus.ts +0 -98
  2597. package/src/services/chat/types/ChatCommand.ts +0 -174
  2598. package/src/services/chat/types/ChatDispatcher.ts +0 -42
  2599. package/src/services/chat/types/ChatHistory.ts +0 -42
  2600. package/src/services/chat/types/ChatMessageMarkup.ts +0 -168
  2601. package/src/services/chat/types/ChatMeta.ts +0 -35
  2602. package/src/services/chat/types/ChatQueue.ts +0 -49
  2603. package/src/services/chat/types/DirectDispatch.ts +0 -133
  2604. package/src/services/chat/types/FeishuAttachment.ts +0 -50
  2605. package/src/services/chat/types/FeishuInboundAttachment.ts +0 -138
  2606. package/src/services/chat/types/FeishuPost.ts +0 -338
  2607. package/src/services/chat/types/QqInboundDedupe.ts +0 -12
  2608. package/src/services/chat/types/QqVoice.ts +0 -126
  2609. package/src/services/chat/types/ReplyContext.ts +0 -49
  2610. package/src/services/contact/Action.ts +0 -9
  2611. package/src/services/contact/ContactService.ts +0 -799
  2612. package/src/services/contact/Index.ts +0 -8
  2613. package/src/services/contact/PROMPT.txt +0 -25
  2614. package/src/services/contact/runtime/ApproveCallback.ts +0 -97
  2615. package/src/services/contact/runtime/ChatRuntime.ts +0 -82
  2616. package/src/services/contact/runtime/ContactStore.ts +0 -299
  2617. package/src/services/contact/runtime/EndpointNotice.ts +0 -125
  2618. package/src/services/contact/runtime/EndpointResolver.ts +0 -146
  2619. package/src/services/contact/runtime/InboxStore.ts +0 -178
  2620. package/src/services/contact/runtime/LinkApproval.ts +0 -387
  2621. package/src/services/contact/runtime/LinkCode.ts +0 -70
  2622. package/src/services/contact/runtime/LinkStore.ts +0 -50
  2623. package/src/services/contact/runtime/Paths.ts +0 -139
  2624. package/src/services/contact/runtime/RemoteClient.ts +0 -137
  2625. package/src/services/contact/runtime/ShareBundle.ts +0 -286
  2626. package/src/services/contact/runtime/SystemProvider.ts +0 -22
  2627. package/src/services/contact/runtime/Token.ts +0 -40
  2628. package/src/services/memory/Action.ts +0 -188
  2629. package/src/services/memory/Index.ts +0 -9
  2630. package/src/services/memory/MemoryService.ts +0 -329
  2631. package/src/services/memory/runtime/Flush.ts +0 -83
  2632. package/src/services/memory/runtime/Indexer.ts +0 -466
  2633. package/src/services/memory/runtime/Search.ts +0 -90
  2634. package/src/services/memory/runtime/Store.ts +0 -370
  2635. package/src/services/memory/runtime/SystemProvider.ts +0 -145
  2636. package/src/services/memory/runtime/Writer.ts +0 -174
  2637. package/src/services/memory/types/Memory.ts +0 -341
  2638. package/src/services/shell/Index.ts +0 -9
  2639. package/src/services/shell/ShellService.ts +0 -199
  2640. package/src/services/shell/runtime/Paths.ts +0 -28
  2641. package/src/services/shell/runtime/ShellActionRuntime.ts +0 -579
  2642. package/src/services/shell/runtime/ShellActionRuntimeSupport.ts +0 -552
  2643. package/src/services/shell/types/ShellService.ts +0 -233
  2644. package/src/services/task/Action.ts +0 -491
  2645. package/src/services/task/Index.ts +0 -9
  2646. package/src/services/task/PROMPT.txt +0 -237
  2647. package/src/services/task/Scheduler.ts +0 -245
  2648. package/src/services/task/TaskService.ts +0 -167
  2649. package/src/services/task/runtime/CronRuntime.ts +0 -73
  2650. package/src/services/task/runtime/CronTrigger.ts +0 -110
  2651. package/src/services/task/runtime/Frontmatter.ts +0 -24
  2652. package/src/services/task/runtime/Model.ts +0 -347
  2653. package/src/services/task/runtime/Paths.ts +0 -116
  2654. package/src/services/task/runtime/Runner.ts +0 -558
  2655. package/src/services/task/runtime/Store.ts +0 -253
  2656. package/src/services/task/runtime/TaskActionExecution.ts +0 -276
  2657. package/src/services/task/runtime/TaskActionInput.ts +0 -463
  2658. package/src/services/task/runtime/TaskRunArtifacts.ts +0 -493
  2659. package/src/services/task/runtime/TaskRunChatDispatch.ts +0 -81
  2660. package/src/services/task/runtime/TaskRunnerProgress.ts +0 -112
  2661. package/src/services/task/runtime/TaskRunnerRound.ts +0 -337
  2662. package/src/services/task/runtime/TaskRunnerSession.ts +0 -167
  2663. package/src/services/task/runtime/TaskServiceActions.ts +0 -248
  2664. package/src/services/task/runtime/TaskServiceSystem.ts +0 -30
  2665. package/src/services/task/types/Cron.ts +0 -16
  2666. package/src/services/task/types/Task.ts +0 -157
  2667. package/src/services/task/types/TaskCommand.ts +0 -165
  2668. package/src/session/Session.ts +0 -237
  2669. package/src/session/SessionRunScope.ts +0 -134
  2670. package/src/session/composer/SessionComposer.ts +0 -34
  2671. package/src/session/composer/compaction/SessionCompactionComposer.ts +0 -68
  2672. package/src/session/composer/compaction/jsonl/JsonlSessionCompactionComposer.ts +0 -100
  2673. package/src/session/composer/compaction/jsonl/JsonlSessionCompactionExecutor.ts +0 -261
  2674. package/src/session/composer/execution/LocalSessionExecutionComposer.ts +0 -169
  2675. package/src/session/composer/execution/SessionExecutionComposer.ts +0 -71
  2676. package/src/session/composer/history/SessionHistoryComposer.ts +0 -194
  2677. package/src/session/composer/history/SessionHistoryWriter.ts +0 -131
  2678. package/src/session/composer/history/jsonl/JsonlSessionHistoryComposer.ts +0 -508
  2679. package/src/session/composer/system/SessionSystemComposer.ts +0 -25
  2680. package/src/session/composer/system/default/DefaultSessionSystemComposer.ts +0 -78
  2681. package/src/session/composer/system/default/InitPrompts.ts +0 -52
  2682. package/src/session/composer/system/default/PromptRenderer.ts +0 -52
  2683. package/src/session/composer/system/default/StaticPromptCatalog.ts +0 -287
  2684. package/src/session/composer/system/default/SystemDomain.ts +0 -405
  2685. package/src/session/composer/system/default/assets/core.prompt.txt +0 -39
  2686. package/src/session/composer/system/default/assets/init/PROFILE.md.txt +0 -17
  2687. package/src/session/composer/system/default/assets/init/SOUL.md.txt +0 -88
  2688. package/src/session/composer/system/default/assets/service.prompt.txt +0 -29
  2689. package/src/session/composer/system/default/assets/task.prompt.txt +0 -33
  2690. package/src/session/composer/system/default/variables/GeoContext.ts +0 -180
  2691. package/src/session/composer/system/default/variables/PromptTypes.ts +0 -37
  2692. package/src/session/composer/system/default/variables/VariableReplacer.ts +0 -154
  2693. package/src/session/executors/local/LocalSessionCore.ts +0 -753
  2694. package/src/session/executors/local/LocalSessionExecutor.ts +0 -89
  2695. package/src/session/executors/local/SessionLoopDecision.ts +0 -80
  2696. package/src/session/executors/local/SessionSignals.ts +0 -416
  2697. package/src/session/ids/resolveSessionId.ts +0 -18
  2698. package/src/session/messages/SessionAttachmentMapper.ts +0 -155
  2699. package/src/session/messages/SessionMessageCodec.ts +0 -116
  2700. package/src/session/messages/SessionMessageLog.ts +0 -39
  2701. package/src/session/messages/SessionStepEventMapper.ts +0 -233
  2702. package/src/session/tools/shell/ShellToolBridge.ts +0 -378
  2703. package/src/session/tools/shell/ShellToolDefinition.ts +0 -509
  2704. package/src/session/tools/shell/ShellToolFormatting.ts +0 -83
  2705. package/src/session/tools/shell/ShellToolSchemas.ts +0 -120
  2706. package/src/shared/constants/DowncityDefault.ts +0 -38
  2707. package/src/shared/constants/DowncitySchema.ts +0 -377
  2708. package/src/shared/types/AgentHost.ts +0 -74
  2709. package/src/shared/types/AgentProject.ts +0 -92
  2710. package/src/shared/types/AuthDashboard.ts +0 -38
  2711. package/src/shared/types/AuthPlugin.ts +0 -545
  2712. package/src/shared/types/ChatPlugin.ts +0 -251
  2713. package/src/shared/types/ChatPromptContext.ts +0 -139
  2714. package/src/shared/types/ChatQueueWorker.ts +0 -25
  2715. package/src/shared/types/ChatRuntime.ts +0 -33
  2716. package/src/shared/types/ChatService.ts +0 -165
  2717. package/src/shared/types/ClaudeSkill.ts +0 -64
  2718. package/src/shared/types/Console.ts +0 -448
  2719. package/src/shared/types/ConsoleGateway.ts +0 -196
  2720. package/src/shared/types/Daemon.ts +0 -53
  2721. package/src/shared/types/DashboardData.ts +0 -392
  2722. package/src/shared/types/DashboardRoutes.ts +0 -31
  2723. package/src/shared/types/DashboardSessionExecute.ts +0 -99
  2724. package/src/shared/types/DowncityConfig.ts +0 -215
  2725. package/src/shared/types/ExecutionBinding.ts +0 -27
  2726. package/src/shared/types/FeishuChannel.ts +0 -131
  2727. package/src/shared/types/InlineInstant.ts +0 -96
  2728. package/src/shared/types/Json.ts +0 -34
  2729. package/src/shared/types/LlmConfig.ts +0 -115
  2730. package/src/shared/types/LocalRpc.ts +0 -72
  2731. package/src/shared/types/ModelBinding.ts +0 -18
  2732. package/src/shared/types/Plugin.ts +0 -743
  2733. package/src/shared/types/PluginApi.ts +0 -157
  2734. package/src/shared/types/PluginLifecycle.ts +0 -35
  2735. package/src/shared/types/QqChannel.ts +0 -501
  2736. package/src/shared/types/QqGatewaySupport.ts +0 -97
  2737. package/src/shared/types/README.md +0 -53
  2738. package/src/shared/types/Sandbox.ts +0 -144
  2739. package/src/shared/types/Service.ts +0 -223
  2740. package/src/shared/types/ServiceSchedule.ts +0 -134
  2741. package/src/shared/types/ServiceState.ts +0 -112
  2742. package/src/shared/types/Services.ts +0 -100
  2743. package/src/shared/types/Shell.ts +0 -103
  2744. package/src/shared/types/SkillCommand.ts +0 -90
  2745. package/src/shared/types/SkillPlugin.ts +0 -107
  2746. package/src/shared/types/SkillRoot.ts +0 -49
  2747. package/src/shared/types/Start.ts +0 -16
  2748. package/src/shared/types/Store.ts +0 -526
  2749. package/src/shared/types/TaskService.ts +0 -55
  2750. package/src/shared/types/Template.ts +0 -9
  2751. package/src/shared/types/Tts.ts +0 -99
  2752. package/src/shared/types/TtsPlugin.ts +0 -164
  2753. package/src/shared/types/Voice.ts +0 -68
  2754. package/src/shared/types/VoicePlugin.ts +0 -194
  2755. package/src/shared/types/WebPlugin.ts +0 -141
  2756. package/src/shared/types/auth/AuthPermission.ts +0 -126
  2757. package/src/shared/types/auth/AuthRoute.ts +0 -31
  2758. package/src/shared/types/auth/AuthToken.ts +0 -47
  2759. package/src/shared/types/auth/AuthTypes.ts +0 -235
  2760. package/src/shared/utils/README.md +0 -49
  2761. package/src/shared/utils/Template.ts +0 -28
  2762. package/src/shared/utils/Time.ts +0 -77
  2763. package/src/shared/utils/cli/CliOutput.ts +0 -170
  2764. package/src/shared/utils/logger/Fetch.ts +0 -93
  2765. package/src/shared/utils/logger/Format.ts +0 -15
  2766. package/src/shared/utils/logger/FormatRequest.ts +0 -455
  2767. package/src/shared/utils/logger/FormatResponse.ts +0 -265
  2768. package/src/shared/utils/logger/FormatShared.ts +0 -258
  2769. package/src/shared/utils/logger/Logger.ts +0 -372
  2770. package/src/shared/utils/storage/index.ts +0 -26
  2771. package/src/shared/utils/store/StoreChannelAccountRepository.ts +0 -269
  2772. package/src/shared/utils/store/StoreChatAuthRepository.ts +0 -215
  2773. package/src/shared/utils/store/StoreEnvRepository.ts +0 -452
  2774. package/src/shared/utils/store/StoreModelRepository.ts +0 -324
  2775. package/src/shared/utils/store/StoreSchema.ts +0 -567
  2776. package/src/shared/utils/store/StoreSecureSettings.ts +0 -126
  2777. package/src/shared/utils/store/StoreShared.ts +0 -67
  2778. package/src/shared/utils/store/crypto.ts +0 -112
  2779. package/src/shared/utils/store/index.ts +0 -532
  2780. package/src/shared/utils/store/schema.ts +0 -103
  2781. package/src/types/agent/AgentContext.ts +0 -380
  2782. package/src/types/agent/AgentRuntime.ts +0 -86
  2783. package/src/types/chat/ChatSession.ts +0 -32
  2784. package/src/types/city/PublicHostEnv.ts +0 -76
  2785. package/src/types/cli/AgentChat.ts +0 -172
  2786. package/src/types/cli/AgentHistory.ts +0 -146
  2787. package/src/types/cli/AgentManager.ts +0 -119
  2788. package/src/types/cli/AgentSelection.ts +0 -162
  2789. package/src/types/cli/ChatManager.ts +0 -65
  2790. package/src/types/cli/CliReporter.ts +0 -167
  2791. package/src/types/cli/ModelManager.ts +0 -139
  2792. package/src/types/contact/Contact.ts +0 -82
  2793. package/src/types/contact/ContactApproval.ts +0 -150
  2794. package/src/types/contact/ContactChat.ts +0 -47
  2795. package/src/types/contact/ContactCheck.ts +0 -67
  2796. package/src/types/contact/ContactCommand.ts +0 -98
  2797. package/src/types/contact/ContactEndpoint.ts +0 -16
  2798. package/src/types/contact/ContactLink.ts +0 -169
  2799. package/src/types/contact/ContactShare.ts +0 -172
  2800. package/src/types/sandbox/SandboxRuntime.ts +0 -377
  2801. package/src/types/session/SessionExecutor.ts +0 -33
  2802. package/src/types/session/SessionHistoryMeta.ts +0 -26
  2803. package/src/types/session/SessionHistoryPaths.ts +0 -33
  2804. package/src/types/session/SessionLoop.ts +0 -95
  2805. package/src/types/session/SessionMessages.ts +0 -90
  2806. package/src/types/session/SessionPrompts.ts +0 -14
  2807. package/src/types/session/SessionRun.ts +0 -116
  2808. package/src/types/shell/ShellRuntime.ts +0 -94
  2809. package/src/types/task/TaskRunner.ts +0 -199
  2810. /package/bin/cli/{AgentManager.d.ts → agent/AgentManager.d.ts} +0 -0
  2811. /package/bin/cli/{Init.d.ts → agent/Init.d.ts} +0 -0
  2812. /package/bin/cli/{Status.d.ts → agent/Status.d.ts} +0 -0
  2813. /package/bin/cli/{Stop.d.ts → agent/Stop.d.ts} +0 -0
  2814. /package/bin/cli/{Model.d.ts → model/Model.d.ts} +0 -0
  2815. /package/bin/cli/{Model.js → model/Model.js} +0 -0
  2816. /package/bin/cli/{ModelCreateCommand.d.ts → model/ModelCreateCommand.d.ts} +0 -0
  2817. /package/bin/cli/{ModelManageCommand.d.ts → model/ModelManageCommand.d.ts} +0 -0
  2818. /package/bin/cli/{ModelManager.d.ts → model/ModelManager.d.ts} +0 -0
  2819. /package/bin/cli/{Services.d.ts → service/Services.d.ts} +0 -0
  2820. /package/bin/cli/{Alias.d.ts → shared/Alias.d.ts} +0 -0
  2821. /package/bin/cli/{Alias.js → shared/Alias.js} +0 -0
  2822. /package/bin/cli/{Chat.d.ts → shared/Chat.d.ts} +0 -0
  2823. /package/bin/cli/{Chat.js → shared/Chat.js} +0 -0
  2824. /package/bin/cli/{ChatManager.d.ts → shared/ChatManager.d.ts} +0 -0
  2825. /package/bin/{types/cli → cli/shared}/CliError.d.ts +0 -0
  2826. /package/bin/{types/cli → cli/shared}/CliError.js +0 -0
  2827. /package/bin/cli/{CliReporter.js → shared/CliReporter.js} +0 -0
  2828. /package/bin/cli/{Config.d.ts → shared/Config.d.ts} +0 -0
  2829. /package/bin/cli/{IndexAgentCommand.d.ts → shared/IndexAgentCommand.d.ts} +0 -0
  2830. /package/bin/cli/{IndexSupport.d.ts → shared/IndexSupport.d.ts} +0 -0
  2831. /package/bin/cli/{Plugins.d.ts → shared/Plugins.d.ts} +0 -0
  2832. /package/bin/cli/{Reset.d.ts → shared/Reset.d.ts} +0 -0
  2833. /package/bin/cli/{Reset.js → shared/Reset.js} +0 -0
  2834. /package/bin/cli/{Token.d.ts → shared/Token.d.ts} +0 -0
  2835. /package/bin/cli/{Update.d.ts → shared/Update.d.ts} +0 -0
  2836. /package/bin/{daemon → process/daemon}/Api.js +0 -0
  2837. /package/bin/{daemon → process/daemon}/Client.d.ts +0 -0
  2838. /package/bin/{daemon → process/daemon}/PortAllocator.d.ts +0 -0
  2839. /package/bin/{daemon → process/daemon}/PortAllocator.js +0 -0
  2840. /package/bin/{registry → process/registry}/PluginRuntime.js +0 -0
  2841. /package/bin/{rpc → process/rpc}/Client.js +0 -0
  2842. /package/bin/{rpc → process/rpc}/Paths.d.ts +0 -0
  2843. /package/bin/{shared/utils → utils}/Id.d.ts +0 -0
  2844. /package/bin/{shared/utils → utils}/Id.js +0 -0
  2845. /package/bin/{shared/utils → utils}/cli/Spinner.d.ts +0 -0
  2846. /package/bin/{shared/utils → utils}/cli/Spinner.js +0 -0
  2847. /package/src/cli/{Model.ts → model/Model.ts} +0 -0
  2848. /package/src/cli/{Alias.ts → shared/Alias.ts} +0 -0
  2849. /package/src/cli/{Chat.ts → shared/Chat.ts} +0 -0
  2850. /package/src/{types/cli → cli/shared}/CliError.ts +0 -0
  2851. /package/src/cli/{Reset.ts → shared/Reset.ts} +0 -0
  2852. /package/src/{daemon → process/daemon}/PortAllocator.ts +0 -0
  2853. /package/src/{shared/utils → utils}/Id.ts +0 -0
  2854. /package/src/{shared/utils → utils}/cli/Spinner.ts +0 -0
@@ -0,0 +1,291 @@
1
+ /**
2
+ * `city agent create`:在目标目录生成最小可用的 Downcity 工程骨架与配置文件。
3
+ *
4
+ * 目标
5
+ * - 生成 `PROFILE.md` / `SOUL.md` / `downcity.json` / `.downcity/` 目录结构与 schema 文件
6
+ * - 通过交互式问题收集必要配置(模型、channels 等)
7
+ *
8
+ * 设计要点
9
+ * - Chat channels 支持多选:仅写入用户选择的 channels(未选择的不出现在 `downcity.json`)
10
+ * - 避免写入无意义的默认值:能省则省,保持配置简洁
11
+ */
12
+
13
+ import path from "path";
14
+ import os from "os";
15
+ import prompts from "prompts";
16
+ import fs from "fs-extra";
17
+ import fg from "fast-glob";
18
+ import { getProfileMdPath, getDowncityJsonPath, getSoulMdPath } from "@/config/Paths.js";
19
+ import {
20
+ initializeAgentProject,
21
+ listPlatformModelChoices,
22
+ normalizeDefaultAgentName,
23
+ } from "@downcity/agent";
24
+ import type { AgentProjectChannel } from "@downcity/agent";
25
+ import type { ExecutionBindingConfig } from "@downcity/agent";
26
+ import { emitCliBlock, emitCliList } from "../shared/CliReporter.js";
27
+ import { CliError } from "../shared/CliError.js";
28
+
29
+ type InitPromptResponse = {
30
+ name?: string;
31
+ primaryModelId?: string;
32
+ channels?: string[];
33
+ };
34
+
35
+
36
+ /**
37
+ * init 命令入口。
38
+ *
39
+ * 流程(中文)
40
+ * 1) 校验项目目录与覆盖策略
41
+ * 2) 交互收集配置
42
+ * 3) 生成配置与目录
43
+ * 4) 生成最小可运行结构(skills 目录仅创建,不做自动同步/安装)
44
+ */
45
+ export async function initCommand(
46
+ cwd: string = ".",
47
+ options: { force?: boolean } = {},
48
+ ): Promise<void> {
49
+ const projectRoot = path.resolve(cwd);
50
+ const projectBaseName = path.basename(projectRoot);
51
+ const defaultAgentName =
52
+ normalizeDefaultAgentName(projectBaseName) || projectBaseName;
53
+ let allowOverwrite = Boolean(options.force);
54
+
55
+ emitCliBlock({
56
+ tone: "accent",
57
+ title: "Initializing agent project",
58
+ facts: [
59
+ {
60
+ label: "Project",
61
+ value: projectRoot,
62
+ },
63
+ ],
64
+ });
65
+
66
+ // Check if core initialization files already exist
67
+ const existingProfileMd = fs.existsSync(getProfileMdPath(projectRoot));
68
+ const existingSoulMd = fs.existsSync(getSoulMdPath(projectRoot));
69
+ const existingShipJson = fs.existsSync(getDowncityJsonPath(projectRoot));
70
+ const platformModelChoices = await listPlatformModelChoices();
71
+ const platformModelIds = platformModelChoices.map((item) => item.value);
72
+
73
+ // 关键点(中文):已存在的 PROFILE.md 永远不覆盖,只在 downcity.json 已存在时询问覆盖。
74
+ if (existingShipJson) {
75
+ if (!allowOverwrite) {
76
+ const confirmResponse = (await prompts({
77
+ type: "confirm",
78
+ name: "overwrite",
79
+ message:
80
+ "downcity.json already exists. Overwrite existing downcity.json and continue?",
81
+ initial: false,
82
+ })) as { overwrite?: boolean };
83
+
84
+ if (!confirmResponse.overwrite) {
85
+ emitCliBlock({
86
+ tone: "info",
87
+ title: "Initialization cancelled",
88
+ });
89
+ return;
90
+ }
91
+ allowOverwrite = true;
92
+ }
93
+ }
94
+
95
+ // Collect configuration information
96
+ // 交互采集(中文):agent name + model + channels。
97
+ const response = (await prompts([
98
+ {
99
+ type: "text",
100
+ name: "name",
101
+ message: "Agent name",
102
+ initial: defaultAgentName,
103
+ },
104
+ {
105
+ type: "select",
106
+ name: "primaryModelId",
107
+ message: "Select primary model (from platform model pool)",
108
+ choices: platformModelChoices,
109
+ initial: 0,
110
+ },
111
+ {
112
+ // 关键交互: Chat channels 允许多选,未选择的就不写入 downcity.json
113
+ type: "multiselect",
114
+ name: "channels",
115
+ message: "Select chat channels (multi-select)",
116
+ choices: [
117
+ { title: "Telegram", value: "telegram" },
118
+ { title: "Feishu", value: "feishu" },
119
+ { title: "QQ", value: "qq" },
120
+ ],
121
+ },
122
+ ])) as InitPromptResponse;
123
+
124
+ // 关键点(中文):agent_name 同时用于 `downcity.json.name` 与 init 模板变量渲染,避免两处来源不一致。
125
+ const agentName =
126
+ String(response.name || "").trim() || defaultAgentName;
127
+ const primaryModelId =
128
+ String(response.primaryModelId || "").trim() || "default";
129
+ if (platformModelIds.length === 0) {
130
+ throw new CliError({
131
+ title: "Platform model pool is empty",
132
+ note: "Please configure at least one model first.",
133
+ fix: "city model create",
134
+ });
135
+ }
136
+ const execution: ExecutionBindingConfig = {
137
+ type: "api",
138
+ modelId: primaryModelId,
139
+ };
140
+ const selectedChannels = Array.isArray(response.channels)
141
+ ? (response.channels as AgentProjectChannel[])
142
+ : [];
143
+ const initResult = await initializeAgentProject({
144
+ projectRoot,
145
+ agentName,
146
+ execution,
147
+ channels: selectedChannels,
148
+ forceOverwriteShipJson: allowOverwrite,
149
+ });
150
+
151
+ const createdItems: string[] = [];
152
+ const skippedItems: string[] = [];
153
+ if (!existingProfileMd && initResult.createdFiles.includes("PROFILE.md")) {
154
+ createdItems.push("PROFILE.md");
155
+ } else if (existingProfileMd) {
156
+ skippedItems.push("PROFILE.md");
157
+ }
158
+ if (!existingSoulMd && initResult.createdFiles.includes("SOUL.md")) {
159
+ createdItems.push("SOUL.md");
160
+ } else if (existingSoulMd) {
161
+ skippedItems.push("SOUL.md");
162
+ }
163
+ createdItems.push("downcity.json", ".downcity/", "downcity.schema.json");
164
+ skippedItems.push(".env", ".env.example");
165
+
166
+ emitCliBlock({
167
+ tone: "success",
168
+ title: "Initialization complete",
169
+ summary: agentName,
170
+ });
171
+ emitCliList({
172
+ tone: "accent",
173
+ title: "Created",
174
+ items: createdItems.map((item) => ({ title: item })),
175
+ });
176
+ emitCliList({
177
+ tone: "info",
178
+ title: "Skipped",
179
+ items: skippedItems.map((item) => ({ title: item })),
180
+ });
181
+ if (primaryModelId) {
182
+ emitCliBlock({
183
+ tone: "info",
184
+ title: "Execution",
185
+ summary: "api",
186
+ facts: [
187
+ {
188
+ label: "Model ID",
189
+ value: primaryModelId,
190
+ },
191
+ {
192
+ label: "Source",
193
+ value: "~/.downcity/downcity.db",
194
+ },
195
+ ],
196
+ });
197
+ }
198
+
199
+ const channelItems: Array<{ title: string; facts: Array<{ label: string; value: string }> }> = [];
200
+ if (selectedChannels.includes("feishu")) {
201
+ channelItems.push({
202
+ title: "feishu",
203
+ facts: [
204
+ {
205
+ label: "Bind",
206
+ value: "services.chat.channels.feishu.channelAccountId",
207
+ },
208
+ {
209
+ label: "Manage",
210
+ value: "Console > Global / Channel Accounts",
211
+ },
212
+ ],
213
+ });
214
+ }
215
+ if (selectedChannels.includes("telegram")) {
216
+ channelItems.push({
217
+ title: "telegram",
218
+ facts: [
219
+ {
220
+ label: "Bind",
221
+ value: "services.chat.channels.telegram.channelAccountId",
222
+ },
223
+ {
224
+ label: "Manage",
225
+ value: "Console > Global / Channel Accounts",
226
+ },
227
+ ],
228
+ });
229
+ }
230
+ if (selectedChannels.includes("qq")) {
231
+ channelItems.push({
232
+ title: "qq",
233
+ facts: [
234
+ {
235
+ label: "Bind",
236
+ value: "services.chat.channels.qq.channelAccountId",
237
+ },
238
+ {
239
+ label: "Manage",
240
+ value: "Console > Global / Channel Accounts",
241
+ },
242
+ ],
243
+ });
244
+ }
245
+ if (channelItems.length > 0) {
246
+ emitCliList({
247
+ tone: "accent",
248
+ title: "Channels",
249
+ items: channelItems,
250
+ });
251
+ }
252
+
253
+ const nextSteps: string[] = [
254
+ "Edit PROFILE.md to customize agent behavior",
255
+ "Edit SOUL.md to customize your core operating principles",
256
+ "Edit downcity.json.execution to adjust execution target",
257
+ ];
258
+ if (primaryModelId) {
259
+ nextSteps.push("Edit downcity.json.execution.modelId (bind to console API model id)");
260
+ nextSteps.push('Use "city model ..." to manage global model pool');
261
+ }
262
+
263
+ if (selectedChannels.includes("telegram")) {
264
+ nextSteps.push(
265
+ "Bind services.chat.channels.telegram.channelAccountId to an existing channel account",
266
+ );
267
+ }
268
+ if (selectedChannels.includes("feishu")) {
269
+ nextSteps.push(
270
+ "Bind services.chat.channels.feishu.channelAccountId to an existing channel account",
271
+ );
272
+ }
273
+ if (selectedChannels.includes("qq")) {
274
+ nextSteps.push(
275
+ "Bind services.chat.channels.qq.channelAccountId to an existing channel account",
276
+ );
277
+ }
278
+ nextSteps.push('Run "city agent start" to start the agent');
279
+
280
+ emitCliList({
281
+ tone: "accent",
282
+ title: "Next steps",
283
+ items: nextSteps.map((line, idx) => ({
284
+ title: `${idx + 1}. ${line}`,
285
+ })),
286
+ });
287
+ emitCliBlock({
288
+ tone: "info",
289
+ title: "Tip",
290
+ });
291
+ }
@@ -0,0 +1,68 @@
1
+ /**
2
+ * `city agent restart`:重启后台常驻的 Agent 进程(daemon)。
3
+ *
4
+ * 关键点(中文)
5
+ * - 这是 `start` / `stop` 之间的组合命令,不直接复用 shell 层面的进程替换。
6
+ * - 重启前必须重新校验项目初始化状态与 execution binding,避免先停后起失败。
7
+ * - 成功后会重新生成 daemon 元信息与日志路径,确保运行态与当前配置一致。
8
+ */
9
+
10
+ import path from "path";
11
+ import { fileURLToPath } from "url";
12
+ import { buildRunArgsFromOptions } from "@/process/daemon/CliArgs.js";
13
+ import { startDaemonProcess, stopDaemonProcess } from "@/process/daemon/Manager.js";
14
+ import type { StartOptions } from "@downcity/agent";
15
+ import { emitCliBlock } from "../shared/CliReporter.js";
16
+ import { resolveAgentName } from "../shared/IndexSupport.js";
17
+ import { checkAgentPreflight } from "../service/ServiceCommandSupport.js";
18
+ import { CliError } from "../shared/CliError.js";
19
+
20
+ /**
21
+ * restart 命令执行流程。
22
+ *
23
+ * 关键点(中文)
24
+ * 1) 统一预检(项目初始化 + binding)
25
+ * 2) 停止旧 daemon
26
+ * 3) 按当前参数重建启动参数并拉起新 daemon
27
+ */
28
+ export async function restartCommand(
29
+ cwd: string = ".",
30
+ options: StartOptions,
31
+ ): Promise<void> {
32
+ const projectRoot = path.resolve(cwd);
33
+
34
+ // 关键点(中文):统一预检(restart 不强制要求 city runtime running,因为 stop 后可能已停)。
35
+ await checkAgentPreflight(projectRoot, { requireCityRunning: false });
36
+
37
+ // 计算当前 CLI 的入口路径(编译后是 `bin/main/modules/cli/Index.js`)。
38
+ const __filename = fileURLToPath(import.meta.url);
39
+ const __dirname = path.dirname(__filename);
40
+ const cliPath = path.resolve(__dirname, "../Index.js");
41
+
42
+ try {
43
+ await stopDaemonProcess({ projectRoot });
44
+ const args = await buildRunArgsFromOptions(projectRoot, options || {});
45
+ await startDaemonProcess({
46
+ projectRoot,
47
+ cliPath,
48
+ args,
49
+ });
50
+
51
+ emitCliBlock({
52
+ tone: "success",
53
+ title: "Agent daemon restarted",
54
+ summary: resolveAgentName(projectRoot),
55
+ facts: [
56
+ {
57
+ label: "Project",
58
+ value: projectRoot,
59
+ },
60
+ ],
61
+ });
62
+ } catch (error) {
63
+ throw new CliError({
64
+ title: "Failed to restart daemon",
65
+ note: error instanceof Error ? error.message : String(error),
66
+ });
67
+ }
68
+ }
@@ -0,0 +1,148 @@
1
+ /**
2
+ * 前台启动 Agent 进程(当前终端进程内运行)。
3
+ *
4
+ * 场景
5
+ * - `city agent start --foreground` 走这里(当前终端前台运行)
6
+ * - daemon 子进程也复用这里作为真正运行入口
7
+ *
8
+ * 说明
9
+ * - 后台常驻启动请使用 `downcity agent start`,并用
10
+ * `downcity agent restart` 管理。
11
+ */
12
+
13
+ import {
14
+ getAgentContext,
15
+ getAgentRuntime,
16
+ initAgentRuntime,
17
+ startAllServices,
18
+ startLocalRpcServer,
19
+ startServer,
20
+ startServiceScheduleRuntime,
21
+ stopAgentHotReload,
22
+ stopAllServices,
23
+ stopServiceScheduleRuntime,
24
+ } from "@downcity/agent";
25
+ import type { StartOptions } from "@downcity/agent";
26
+ import { logger } from "@downcity/agent";
27
+ import { CliError } from "../shared/CliError.js";
28
+
29
+ /**
30
+ * 前台启动入口(由 `agent start` 前台模式与内部 daemon 子进程复用)。
31
+ *
32
+ * 职责(中文)
33
+ * - 初始化 agent 状态(配置、日志、services 依赖)
34
+ * - 解析并合并启动参数(CLI > downcity.json > 默认值)
35
+ * - 启动主 HTTP 服务
36
+ * - 启动 services(例如 task cron)
37
+ * - 统一处理进程信号并优雅停机
38
+ */
39
+ export async function runCommand(
40
+ cwd: string = ".",
41
+ options: StartOptions,
42
+ ): Promise<void> {
43
+ // 初始化加载(进程级单例状态:root / config / logger / chat / agents 等)
44
+ await initAgentRuntime(cwd);
45
+ // 端口解析(中文):允许 number / string;空值返回 undefined 以便走配置回退链。
46
+ const parsePort = (
47
+ value: string | number | undefined,
48
+ label: string,
49
+ ): number | undefined => {
50
+ if (value === undefined || value === null || value === "") return undefined;
51
+ const num =
52
+ typeof value === "number" ? value : Number.parseInt(String(value), 10);
53
+ if (!Number.isFinite(num) || Number.isNaN(num)) {
54
+ throw new Error(`${label} must be a number`);
55
+ }
56
+ if (!Number.isInteger(num) || num <= 0 || num > 65535) {
57
+ throw new Error(`${label} must be an integer between 1 and 65535`);
58
+ }
59
+ return num;
60
+ };
61
+ // Resolve startup options: CLI flags override built-in defaults.
62
+ let port: number;
63
+ try {
64
+ port = parsePort(options.port, "port") ?? 5314;
65
+ } catch (error) {
66
+ throw new CliError({
67
+ title: "Invalid start options",
68
+ note: error instanceof Error ? error.message : String(error),
69
+ });
70
+ }
71
+
72
+ const host = (options.host ?? "0.0.0.0").trim();
73
+
74
+ process.env.DC_SERVER_PORT = String(port);
75
+ process.env.DC_SERVER_HOST = host;
76
+
77
+ // Create and start server
78
+ const server = await startServer({
79
+ port,
80
+ host,
81
+ });
82
+ const localRpc = await startLocalRpcServer({
83
+ context: getAgentContext(),
84
+ runtime: getAgentRuntime(),
85
+ });
86
+
87
+ // 处理进程信号
88
+ // 停机顺序(中文):services -> API server -> flush logs。
89
+ let isShuttingDown = false;
90
+ const shutdown = async (signal: string) => {
91
+ if (isShuttingDown) return;
92
+ isShuttingDown = true;
93
+
94
+ logger.info(`Received ${signal} signal, shutting down...`);
95
+
96
+ // 先停掉文件监听,避免关停阶段触发额外重载。
97
+ stopAgentHotReload();
98
+
99
+ // 先停持久化调度器,避免关停过程中继续触发新的 service action。
100
+ try {
101
+ await stopServiceScheduleRuntime();
102
+ } catch {
103
+ // ignore
104
+ }
105
+
106
+ // 停止全部 service
107
+ try {
108
+ await stopAllServices(getAgentContext());
109
+ } catch {
110
+ // ignore
111
+ }
112
+
113
+ // 停止服务器
114
+ await localRpc.stop();
115
+ await server.stop();
116
+
117
+ // Save logs
118
+ await logger.saveAllLogs();
119
+
120
+ logger.info("👋 Downcity stopped");
121
+ process.exit(0);
122
+ };
123
+
124
+ process.on("SIGINT", () => shutdown("SIGINT"));
125
+ process.on("SIGTERM", () => shutdown("SIGTERM"));
126
+
127
+ // 启动全部 service(含 task cron 等模块内生命周期逻辑)
128
+ // 调度策略(中文):单服务失败不阻断主服务启动,仅记录日志。
129
+ try {
130
+ const lifecycle = await startAllServices(getAgentContext());
131
+ for (const item of lifecycle.results) {
132
+ if (item.success) continue;
133
+ logger.error(
134
+ `Service start failed: ${item.service?.name || "unknown"} - ${item.error || "unknown error"}`,
135
+ );
136
+ }
137
+ } catch (e) {
138
+ logger.error(`Service bootstrap failed: ${String(e)}`);
139
+ }
140
+
141
+ try {
142
+ await startServiceScheduleRuntime(getAgentContext());
143
+ } catch (e) {
144
+ logger.error(`Service schedule runtime bootstrap failed: ${String(e)}`);
145
+ }
146
+
147
+ logger.info("=== Downcity Started ===");
148
+ }
@@ -0,0 +1,72 @@
1
+ /**
2
+ * 后台常驻启动(daemon)。
3
+ *
4
+ * 对应用户命令:`city agent start`
5
+ *
6
+ * 行为
7
+ * - 在 `.downcity/debug/` 写入 pid/log/meta 文件
8
+ * - 通过 `node <commands/index.js> agent start ...` 启动真正的前台逻辑,但以 detached 方式在后台运行
9
+ *
10
+ * 注意
11
+ * - 前台启动请显式使用 `city agent start --foreground`。
12
+ */
13
+
14
+ import path from "path";
15
+ import { fileURLToPath } from "url";
16
+ import { startDaemonProcess } from "@/process/daemon/Manager.js";
17
+ import { buildRunArgsFromOptions } from "@/process/daemon/CliArgs.js";
18
+ import type { StartOptions } from "@downcity/agent";
19
+ import { emitCliBlock } from "../shared/CliReporter.js";
20
+ import { resolveAgentName } from "../shared/IndexSupport.js";
21
+ import { checkAgentPreflight } from "../service/ServiceCommandSupport.js";
22
+ import { CliError } from "../shared/CliError.js";
23
+
24
+ /**
25
+ * daemon 启动入口。
26
+ *
27
+ * 流程(中文)
28
+ * 1) 统一预检(city runtime + 项目初始化 + binding)
29
+ * 2) 组装 `agent start` 子进程参数
30
+ * 3) 通过 daemon manager 后台拉起并打印 pid/log
31
+ */
32
+ export async function startCommand(
33
+ cwd: string = ".",
34
+ options: StartOptions,
35
+ ): Promise<void> {
36
+ const projectRoot = path.resolve(cwd);
37
+
38
+ // 关键点(中文):统一预检,替代分散的内联校验。
39
+ await checkAgentPreflight(projectRoot);
40
+
41
+ // 计算当前 CLI 的入口路径(编译后是 `bin/main/modules/cli/Index.js`)。
42
+ const __filename = fileURLToPath(import.meta.url);
43
+ const __dirname = path.dirname(__filename);
44
+ const cliPath = path.resolve(__dirname, "../Index.js");
45
+
46
+ const args = await buildRunArgsFromOptions(projectRoot, options || {});
47
+
48
+ try {
49
+ const { logPath: _logPath } = await startDaemonProcess({
50
+ projectRoot,
51
+ cliPath,
52
+ args,
53
+ });
54
+
55
+ emitCliBlock({
56
+ tone: "success",
57
+ title: "Agent daemon started",
58
+ summary: resolveAgentName(projectRoot),
59
+ facts: [
60
+ {
61
+ label: "Project",
62
+ value: projectRoot,
63
+ },
64
+ ],
65
+ });
66
+ } catch (error) {
67
+ throw new CliError({
68
+ title: "Failed to start daemon",
69
+ note: error instanceof Error ? error.message : String(error),
70
+ });
71
+ }
72
+ }
@@ -0,0 +1,116 @@
1
+ /**
2
+ * 查询后台 Agent 进程(daemon)状态。
3
+ *
4
+ * 对应命令:
5
+ * - `city agent status [path]`
6
+ */
7
+
8
+ import path from "path";
9
+ import fs from "fs-extra";
10
+ import {
11
+ diagnoseDaemonStaleReasons,
12
+ isProcessAlive,
13
+ readDaemonMeta,
14
+ readDaemonPid,
15
+ } from "@/process/daemon/Manager.js";
16
+ import { getProfileMdPath, getDowncityJsonPath } from "@/config/Paths.js";
17
+ import { emitCliBlock } from "../shared/CliReporter.js";
18
+
19
+ /**
20
+ * daemon 状态查询入口。
21
+ *
22
+ * 状态规则(中文)
23
+ * - 运行中:输出 pid / log / startedAt
24
+ * - 已初始化但未运行:输出 not running
25
+ * - 未初始化:提示执行 `city agent create`
26
+ */
27
+ export async function statusCommand(cwd: string = "."): Promise<void> {
28
+ const projectRoot = path.resolve(cwd);
29
+ const missingInitFiles: string[] = [];
30
+
31
+ if (!fs.existsSync(getProfileMdPath(projectRoot))) {
32
+ missingInitFiles.push("PROFILE.md");
33
+ }
34
+ if (!fs.existsSync(getDowncityJsonPath(projectRoot))) {
35
+ missingInitFiles.push("downcity.json");
36
+ }
37
+
38
+ const pid = await readDaemonPid(projectRoot);
39
+
40
+ if (pid && isProcessAlive(pid)) {
41
+ const meta = await readDaemonMeta(projectRoot);
42
+
43
+ emitCliBlock({
44
+ tone: "success",
45
+ title: "Agent status",
46
+ summary: "running",
47
+ facts: [
48
+ ["project", projectRoot],
49
+ ...(meta?.startedAt ? [["started at", meta.startedAt]] : []),
50
+ ...(missingInitFiles.length > 0
51
+ ? [["warning", `missing init files: ${missingInitFiles.join(", ")}`]]
52
+ : []),
53
+ ].map(([label, value]) => ({ label, value })),
54
+ });
55
+ return;
56
+ }
57
+
58
+ if (pid) {
59
+ const reasons = await diagnoseDaemonStaleReasons(projectRoot, pid);
60
+ emitCliBlock({
61
+ tone: "warning",
62
+ title: "Agent status",
63
+ summary: "stale",
64
+ facts: [
65
+ {
66
+ label: "project",
67
+ value: projectRoot,
68
+ },
69
+ {
70
+ label: "reason",
71
+ value: reasons.map((item) => item.message).join("; "),
72
+ },
73
+ {
74
+ label: "fix",
75
+ value: `city agent doctor ${projectRoot} --fix`,
76
+ },
77
+ ],
78
+ });
79
+ return;
80
+ }
81
+
82
+ if (missingInitFiles.length > 0) {
83
+ emitCliBlock({
84
+ tone: "error",
85
+ title: "Agent status",
86
+ summary: "not initialized",
87
+ facts: [
88
+ {
89
+ label: "project",
90
+ value: projectRoot,
91
+ },
92
+ {
93
+ label: "missing",
94
+ value: missingInitFiles.join(", "),
95
+ },
96
+ {
97
+ label: "fix",
98
+ value: 'run "city agent create" first',
99
+ },
100
+ ],
101
+ });
102
+ return;
103
+ }
104
+
105
+ emitCliBlock({
106
+ tone: "info",
107
+ title: "Agent status",
108
+ summary: "stopped",
109
+ facts: [
110
+ {
111
+ label: "project",
112
+ value: projectRoot,
113
+ },
114
+ ],
115
+ });
116
+ }