agent-enderun 0.9.1 → 0.9.2

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 (253) hide show
  1. package/.enderun/PROJECT_MEMORY.md +2 -0
  2. package/.enderun/STATUS.md +2 -2
  3. package/.enderun/config.json +1 -1
  4. package/README.md +1 -1
  5. package/framework-mcp/node_modules/@types/node/LICENSE +21 -0
  6. package/framework-mcp/node_modules/@types/node/README.md +15 -0
  7. package/framework-mcp/node_modules/@types/node/assert/strict.d.ts +111 -0
  8. package/framework-mcp/node_modules/@types/node/assert.d.ts +1078 -0
  9. package/framework-mcp/node_modules/@types/node/async_hooks.d.ts +603 -0
  10. package/framework-mcp/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  11. package/framework-mcp/node_modules/@types/node/buffer.d.ts +1934 -0
  12. package/framework-mcp/node_modules/@types/node/child_process.d.ts +1476 -0
  13. package/framework-mcp/node_modules/@types/node/cluster.d.ts +578 -0
  14. package/framework-mcp/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  15. package/framework-mcp/node_modules/@types/node/compatibility/index.d.ts +9 -0
  16. package/framework-mcp/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  17. package/framework-mcp/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  18. package/framework-mcp/node_modules/@types/node/console.d.ts +452 -0
  19. package/framework-mcp/node_modules/@types/node/constants.d.ts +21 -0
  20. package/framework-mcp/node_modules/@types/node/crypto.d.ts +4545 -0
  21. package/framework-mcp/node_modules/@types/node/dgram.d.ts +600 -0
  22. package/framework-mcp/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  23. package/framework-mcp/node_modules/@types/node/dns/promises.d.ts +503 -0
  24. package/framework-mcp/node_modules/@types/node/dns.d.ts +923 -0
  25. package/framework-mcp/node_modules/@types/node/domain.d.ts +170 -0
  26. package/framework-mcp/node_modules/@types/node/events.d.ts +976 -0
  27. package/framework-mcp/node_modules/@types/node/fs/promises.d.ts +1295 -0
  28. package/framework-mcp/node_modules/@types/node/fs.d.ts +4461 -0
  29. package/framework-mcp/node_modules/@types/node/globals.d.ts +172 -0
  30. package/framework-mcp/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  31. package/framework-mcp/node_modules/@types/node/http.d.ts +2089 -0
  32. package/framework-mcp/node_modules/@types/node/http2.d.ts +2721 -0
  33. package/framework-mcp/node_modules/@types/node/https.d.ts +579 -0
  34. package/framework-mcp/node_modules/@types/node/index.d.ts +97 -0
  35. package/framework-mcp/node_modules/@types/node/inspector.d.ts +253 -0
  36. package/framework-mcp/node_modules/@types/node/inspector.generated.d.ts +4052 -0
  37. package/framework-mcp/node_modules/@types/node/module.d.ts +891 -0
  38. package/framework-mcp/node_modules/@types/node/net.d.ts +1076 -0
  39. package/framework-mcp/node_modules/@types/node/os.d.ts +506 -0
  40. package/framework-mcp/node_modules/@types/node/package.json +145 -0
  41. package/framework-mcp/node_modules/@types/node/path.d.ts +200 -0
  42. package/framework-mcp/node_modules/@types/node/perf_hooks.d.ts +968 -0
  43. package/framework-mcp/node_modules/@types/node/process.d.ts +2084 -0
  44. package/framework-mcp/node_modules/@types/node/punycode.d.ts +117 -0
  45. package/framework-mcp/node_modules/@types/node/querystring.d.ts +152 -0
  46. package/framework-mcp/node_modules/@types/node/readline/promises.d.ts +161 -0
  47. package/framework-mcp/node_modules/@types/node/readline.d.ts +594 -0
  48. package/framework-mcp/node_modules/@types/node/repl.d.ts +428 -0
  49. package/framework-mcp/node_modules/@types/node/sea.d.ts +153 -0
  50. package/framework-mcp/node_modules/@types/node/sqlite.d.ts +721 -0
  51. package/framework-mcp/node_modules/@types/node/stream/consumers.d.ts +38 -0
  52. package/framework-mcp/node_modules/@types/node/stream/promises.d.ts +90 -0
  53. package/framework-mcp/node_modules/@types/node/stream/web.d.ts +622 -0
  54. package/framework-mcp/node_modules/@types/node/stream.d.ts +1687 -0
  55. package/framework-mcp/node_modules/@types/node/string_decoder.d.ts +67 -0
  56. package/framework-mcp/node_modules/@types/node/test.d.ts +2163 -0
  57. package/framework-mcp/node_modules/@types/node/timers/promises.d.ts +108 -0
  58. package/framework-mcp/node_modules/@types/node/timers.d.ts +287 -0
  59. package/framework-mcp/node_modules/@types/node/tls.d.ts +1319 -0
  60. package/framework-mcp/node_modules/@types/node/trace_events.d.ts +197 -0
  61. package/framework-mcp/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  62. package/framework-mcp/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  63. package/framework-mcp/node_modules/@types/node/ts5.6/index.d.ts +97 -0
  64. package/framework-mcp/node_modules/@types/node/tty.d.ts +208 -0
  65. package/framework-mcp/node_modules/@types/node/url.d.ts +984 -0
  66. package/framework-mcp/node_modules/@types/node/util.d.ts +2606 -0
  67. package/framework-mcp/node_modules/@types/node/v8.d.ts +920 -0
  68. package/framework-mcp/node_modules/@types/node/vm.d.ts +1000 -0
  69. package/framework-mcp/node_modules/@types/node/wasi.d.ts +181 -0
  70. package/framework-mcp/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  71. package/framework-mcp/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  72. package/framework-mcp/node_modules/@types/node/web-globals/events.d.ts +97 -0
  73. package/framework-mcp/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  74. package/framework-mcp/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  75. package/framework-mcp/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  76. package/framework-mcp/node_modules/@types/node/worker_threads.d.ts +784 -0
  77. package/framework-mcp/node_modules/@types/node/zlib.d.ts +747 -0
  78. package/framework-mcp/node_modules/typescript/LICENSE.txt +55 -0
  79. package/framework-mcp/node_modules/typescript/README.md +50 -0
  80. package/framework-mcp/node_modules/typescript/SECURITY.md +41 -0
  81. package/framework-mcp/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  82. package/framework-mcp/node_modules/typescript/bin/tsc +2 -0
  83. package/framework-mcp/node_modules/typescript/bin/tsserver +2 -0
  84. package/framework-mcp/node_modules/typescript/lib/_tsc.js +133818 -0
  85. package/framework-mcp/node_modules/typescript/lib/_tsserver.js +659 -0
  86. package/framework-mcp/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  87. package/framework-mcp/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  88. package/framework-mcp/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  89. package/framework-mcp/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  90. package/framework-mcp/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  91. package/framework-mcp/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  92. package/framework-mcp/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  93. package/framework-mcp/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  94. package/framework-mcp/node_modules/typescript/lib/lib.d.ts +22 -0
  95. package/framework-mcp/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
  96. package/framework-mcp/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  97. package/framework-mcp/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  98. package/framework-mcp/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
  99. package/framework-mcp/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
  100. package/framework-mcp/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  101. package/framework-mcp/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  102. package/framework-mcp/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  103. package/framework-mcp/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  104. package/framework-mcp/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
  105. package/framework-mcp/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  106. package/framework-mcp/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  107. package/framework-mcp/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  108. package/framework-mcp/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  109. package/framework-mcp/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  110. package/framework-mcp/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  111. package/framework-mcp/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  112. package/framework-mcp/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  113. package/framework-mcp/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  114. package/framework-mcp/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
  115. package/framework-mcp/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
  116. package/framework-mcp/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  117. package/framework-mcp/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  118. package/framework-mcp/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  119. package/framework-mcp/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  120. package/framework-mcp/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  121. package/framework-mcp/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  122. package/framework-mcp/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  123. package/framework-mcp/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  124. package/framework-mcp/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  125. package/framework-mcp/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  126. package/framework-mcp/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  127. package/framework-mcp/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  128. package/framework-mcp/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  129. package/framework-mcp/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  130. package/framework-mcp/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  131. package/framework-mcp/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  132. package/framework-mcp/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  133. package/framework-mcp/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  134. package/framework-mcp/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  135. package/framework-mcp/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  136. package/framework-mcp/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  137. package/framework-mcp/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
  138. package/framework-mcp/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  139. package/framework-mcp/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  140. package/framework-mcp/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  141. package/framework-mcp/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  142. package/framework-mcp/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  143. package/framework-mcp/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  144. package/framework-mcp/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
  145. package/framework-mcp/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
  146. package/framework-mcp/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  147. package/framework-mcp/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  148. package/framework-mcp/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  149. package/framework-mcp/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  150. package/framework-mcp/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  151. package/framework-mcp/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  152. package/framework-mcp/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
  153. package/framework-mcp/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  154. package/framework-mcp/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
  155. package/framework-mcp/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
  156. package/framework-mcp/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  157. package/framework-mcp/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
  158. package/framework-mcp/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  159. package/framework-mcp/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  160. package/framework-mcp/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  161. package/framework-mcp/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  162. package/framework-mcp/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  163. package/framework-mcp/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  164. package/framework-mcp/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  165. package/framework-mcp/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  166. package/framework-mcp/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
  167. package/framework-mcp/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
  168. package/framework-mcp/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
  169. package/framework-mcp/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
  170. package/framework-mcp/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
  171. package/framework-mcp/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
  172. package/framework-mcp/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
  173. package/framework-mcp/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
  174. package/framework-mcp/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
  175. package/framework-mcp/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
  176. package/framework-mcp/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  177. package/framework-mcp/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  178. package/framework-mcp/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
  179. package/framework-mcp/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  180. package/framework-mcp/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  181. package/framework-mcp/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  182. package/framework-mcp/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
  183. package/framework-mcp/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
  184. package/framework-mcp/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  185. package/framework-mcp/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  186. package/framework-mcp/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  187. package/framework-mcp/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
  188. package/framework-mcp/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
  189. package/framework-mcp/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  190. package/framework-mcp/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  191. package/framework-mcp/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
  192. package/framework-mcp/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  193. package/framework-mcp/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
  194. package/framework-mcp/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  195. package/framework-mcp/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  196. package/framework-mcp/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  197. package/framework-mcp/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  198. package/framework-mcp/node_modules/typescript/lib/tsc.js +8 -0
  199. package/framework-mcp/node_modules/typescript/lib/tsserver.js +8 -0
  200. package/framework-mcp/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  201. package/framework-mcp/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  202. package/framework-mcp/node_modules/typescript/lib/typesMap.json +497 -0
  203. package/framework-mcp/node_modules/typescript/lib/typescript.d.ts +11437 -0
  204. package/framework-mcp/node_modules/typescript/lib/typescript.js +200276 -0
  205. package/framework-mcp/node_modules/typescript/lib/typingsInstaller.js +8 -0
  206. package/framework-mcp/node_modules/typescript/lib/watchGuard.js +53 -0
  207. package/framework-mcp/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  208. package/framework-mcp/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  209. package/framework-mcp/node_modules/typescript/package.json +120 -0
  210. package/framework-mcp/node_modules/undici-types/LICENSE +21 -0
  211. package/framework-mcp/node_modules/undici-types/README.md +6 -0
  212. package/framework-mcp/node_modules/undici-types/agent.d.ts +31 -0
  213. package/framework-mcp/node_modules/undici-types/api.d.ts +43 -0
  214. package/framework-mcp/node_modules/undici-types/balanced-pool.d.ts +29 -0
  215. package/framework-mcp/node_modules/undici-types/cache.d.ts +36 -0
  216. package/framework-mcp/node_modules/undici-types/client.d.ts +108 -0
  217. package/framework-mcp/node_modules/undici-types/connector.d.ts +34 -0
  218. package/framework-mcp/node_modules/undici-types/content-type.d.ts +21 -0
  219. package/framework-mcp/node_modules/undici-types/cookies.d.ts +28 -0
  220. package/framework-mcp/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  221. package/framework-mcp/node_modules/undici-types/dispatcher.d.ts +256 -0
  222. package/framework-mcp/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  223. package/framework-mcp/node_modules/undici-types/errors.d.ts +149 -0
  224. package/framework-mcp/node_modules/undici-types/eventsource.d.ts +61 -0
  225. package/framework-mcp/node_modules/undici-types/fetch.d.ts +209 -0
  226. package/framework-mcp/node_modules/undici-types/file.d.ts +39 -0
  227. package/framework-mcp/node_modules/undici-types/filereader.d.ts +54 -0
  228. package/framework-mcp/node_modules/undici-types/formdata.d.ts +108 -0
  229. package/framework-mcp/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  230. package/framework-mcp/node_modules/undici-types/global-origin.d.ts +7 -0
  231. package/framework-mcp/node_modules/undici-types/handlers.d.ts +15 -0
  232. package/framework-mcp/node_modules/undici-types/header.d.ts +4 -0
  233. package/framework-mcp/node_modules/undici-types/index.d.ts +71 -0
  234. package/framework-mcp/node_modules/undici-types/interceptors.d.ts +17 -0
  235. package/framework-mcp/node_modules/undici-types/mock-agent.d.ts +50 -0
  236. package/framework-mcp/node_modules/undici-types/mock-client.d.ts +25 -0
  237. package/framework-mcp/node_modules/undici-types/mock-errors.d.ts +12 -0
  238. package/framework-mcp/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  239. package/framework-mcp/node_modules/undici-types/mock-pool.d.ts +25 -0
  240. package/framework-mcp/node_modules/undici-types/package.json +55 -0
  241. package/framework-mcp/node_modules/undici-types/patch.d.ts +33 -0
  242. package/framework-mcp/node_modules/undici-types/pool-stats.d.ts +19 -0
  243. package/framework-mcp/node_modules/undici-types/pool.d.ts +39 -0
  244. package/framework-mcp/node_modules/undici-types/proxy-agent.d.ts +28 -0
  245. package/framework-mcp/node_modules/undici-types/readable.d.ts +65 -0
  246. package/framework-mcp/node_modules/undici-types/retry-agent.d.ts +8 -0
  247. package/framework-mcp/node_modules/undici-types/retry-handler.d.ts +116 -0
  248. package/framework-mcp/node_modules/undici-types/util.d.ts +18 -0
  249. package/framework-mcp/node_modules/undici-types/webidl.d.ts +228 -0
  250. package/framework-mcp/node_modules/undici-types/websocket.d.ts +150 -0
  251. package/framework-mcp/src/declarations.d.ts +3 -0
  252. package/framework-mcp/src/index.ts +228 -0
  253. package/package.json +2 -3
@@ -38,5 +38,7 @@
38
38
  - **DYNAMIC PATH RESOLUTION ALIGNMENT:** Eliminated all hardcoded framework and application directories, introducing configuration-driven dynamic path mapping via `paths` inside `config.json`.
39
39
  - **COMPILER & TYPE SAFETY REMEDIATION:** Fixed type-safety signature mismatches in `fs.ts` and const reassignment issues in `log.ts`, ensuring perfect TypeScript compiler build verification with zero errors.
40
40
  - **ESLINT RUNTIME ALIGNMENT:** Patched ESLint to completely ignore hidden framework files, preventing EPERM scan crashes under sandboxed runtime restrictions.
41
+ - **VERSION BUMP:** Framework version updated to v0.9.2.
42
+ - **PACKAGING BUG FIX:** Included entire `framework-mcp` folder inside npm packaging files configuration, resolving compiler input errors during downstream workspace installations.
41
43
 
42
44
 
@@ -1,5 +1,5 @@
1
1
  # 🏛️ AGENT ENDERUN — ARMY COMMAND DASHBOARD
2
- > v0.9.1 | State Machine Active | Memory Graph: Online
2
+ > v0.9.2 | State Machine Active | Memory Graph: Online
3
3
 
4
4
  ---
5
5
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  | Metric | Value |
26
26
  | :--- | :--- |
27
- | **Framework Version** | v0.9.1 |
27
+ | **Framework Version** | v0.9.2 |
28
28
  | **System Health** | 🟢 GREEN |
29
29
  | **Major Governance Audit** | COMPLETED |
30
30
  | **Active Tasks** | 1 |
@@ -2,7 +2,7 @@
2
2
  "logLevel": "info",
3
3
  "outputFormat": "text",
4
4
  "defaultProfile": "Lightweight",
5
- "version": "0.9.1",
5
+ "version": "0.9.2",
6
6
  "paths": {
7
7
  "backend": "apps/backend",
8
8
  "frontend": "apps/web",
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # 🏛️ Agent Enderun — Enterprise AI Governance & Autonomous Orchestration Framework
2
2
 
3
- > **Stable Release:** v0.9.1
3
+ > **Stable Release:** v0.9.2
4
4
  > **Author:** Yusuf BEKAR
5
5
  > **Trace ID:** `01HGT8J5E2N0W0W0W0W0W0W0W4`
6
6
  > **System Status:** 🟢 All Systems Operational | Build Compile: Clean | Type-Safety: 100% Verified
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
@@ -0,0 +1,15 @@
1
+ # Installation
2
+ > `npm install --save @types/node`
3
+
4
+ # Summary
5
+ This package contains type definitions for node (https://nodejs.org/).
6
+
7
+ # Details
8
+ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v22.
9
+
10
+ ### Additional Details
11
+ * Last updated: Mon, 11 May 2026 22:25:21 GMT
12
+ * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
+
14
+ # Credits
15
+ These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [David Junger](https://github.com/touffy), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Sebastian Silbermann](https://github.com/eps1lon), [Wilco Bakker](https://github.com/WilcoBakker), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), [Dmitry Semigradsky](https://github.com/Semigradsky), and [René](https://github.com/Renegade334).
@@ -0,0 +1,111 @@
1
+ /**
2
+ * In strict assertion mode, non-strict methods behave like their corresponding
3
+ * strict methods. For example, `assert.deepEqual()` will behave like
4
+ * `assert.deepStrictEqual()`.
5
+ *
6
+ * In strict assertion mode, error messages for objects display a diff. In legacy
7
+ * assertion mode, error messages for objects display the objects, often truncated.
8
+ *
9
+ * To use strict assertion mode:
10
+ *
11
+ * ```js
12
+ * import { strict as assert } from 'node:assert';
13
+ * ```
14
+ *
15
+ * ```js
16
+ * import assert from 'node:assert/strict';
17
+ * ```
18
+ *
19
+ * Example error diff:
20
+ *
21
+ * ```js
22
+ * import { strict as assert } from 'node:assert';
23
+ *
24
+ * assert.deepEqual([[[1, 2, 3]], 4, 5], [[[1, 2, '3']], 4, 5]);
25
+ * // AssertionError: Expected inputs to be strictly deep-equal:
26
+ * // + actual - expected ... Lines skipped
27
+ * //
28
+ * // [
29
+ * // [
30
+ * // ...
31
+ * // 2,
32
+ * // + 3
33
+ * // - '3'
34
+ * // ],
35
+ * // ...
36
+ * // 5
37
+ * // ]
38
+ * ```
39
+ *
40
+ * To deactivate the colors, use the `NO_COLOR` or `NODE_DISABLE_COLORS`
41
+ * environment variables. This will also deactivate the colors in the REPL. For
42
+ * more on color support in terminal environments, read the tty
43
+ * [`getColorDepth()`](https://nodejs.org/docs/latest-v22.x/api/tty.html#writestreamgetcolordepthenv) documentation.
44
+ * @since v15.0.0
45
+ * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/assert/strict.js)
46
+ */
47
+ declare module "assert/strict" {
48
+ import {
49
+ Assert,
50
+ AssertionError,
51
+ AssertionErrorOptions,
52
+ AssertOptions,
53
+ AssertPredicate,
54
+ AssertStrict,
55
+ CallTracker,
56
+ CallTrackerCall,
57
+ CallTrackerReportInformation,
58
+ deepStrictEqual,
59
+ doesNotMatch,
60
+ doesNotReject,
61
+ doesNotThrow,
62
+ fail,
63
+ ifError,
64
+ match,
65
+ notDeepStrictEqual,
66
+ notStrictEqual,
67
+ ok,
68
+ partialDeepStrictEqual,
69
+ rejects,
70
+ strictEqual,
71
+ throws,
72
+ } from "node:assert";
73
+ function strict(value: unknown, message?: string | Error): asserts value;
74
+ namespace strict {
75
+ export {
76
+ Assert,
77
+ AssertionError,
78
+ AssertionErrorOptions,
79
+ AssertOptions,
80
+ AssertPredicate,
81
+ AssertStrict,
82
+ CallTracker,
83
+ CallTrackerCall,
84
+ CallTrackerReportInformation,
85
+ deepStrictEqual,
86
+ deepStrictEqual as deepEqual,
87
+ doesNotMatch,
88
+ doesNotReject,
89
+ doesNotThrow,
90
+ fail,
91
+ ifError,
92
+ match,
93
+ notDeepStrictEqual,
94
+ notDeepStrictEqual as notDeepEqual,
95
+ notStrictEqual,
96
+ notStrictEqual as notEqual,
97
+ ok,
98
+ partialDeepStrictEqual,
99
+ rejects,
100
+ strict,
101
+ strictEqual,
102
+ strictEqual as equal,
103
+ throws,
104
+ };
105
+ }
106
+ export = strict;
107
+ }
108
+ declare module "node:assert/strict" {
109
+ import strict = require("assert/strict");
110
+ export = strict;
111
+ }