@agentlang/agentmanager 0.0.3 → 0.0.4

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 (815) hide show
  1. package/dist/apps/monolith/apps/agentcraft/src/agentcraft-core.module.d.ts +4 -0
  2. package/dist/apps/monolith/apps/agentcraft/src/agentcraft-core.module.js +49 -0
  3. package/dist/apps/monolith/apps/agentcraft/src/agentcraft-core.module.js.map +1 -0
  4. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.controller.d.ts +17 -0
  5. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.controller.js +87 -0
  6. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.controller.js.map +1 -0
  7. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.module.d.ts +2 -0
  8. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.module.js +24 -0
  9. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.module.js.map +1 -0
  10. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.service.d.ts +34 -0
  11. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.service.js +170 -0
  12. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.service.js.map +1 -0
  13. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.store.d.ts +25 -0
  14. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.store.js +50 -0
  15. package/dist/apps/monolith/apps/agentcraft/src/architect/architect.store.js.map +1 -0
  16. package/dist/apps/monolith/apps/agentcraft/src/architect/dto/ingest-signal.dto.d.ts +40 -0
  17. package/dist/apps/monolith/apps/agentcraft/src/architect/dto/ingest-signal.dto.js +24 -0
  18. package/dist/apps/monolith/apps/agentcraft/src/architect/dto/ingest-signal.dto.js.map +1 -0
  19. package/dist/apps/monolith/apps/agentcraft/src/architect/interfaces/architect.interfaces.d.ts +21 -0
  20. package/dist/apps/monolith/apps/agentcraft/src/architect/interfaces/architect.interfaces.js +3 -0
  21. package/dist/apps/monolith/apps/agentcraft/src/architect/interfaces/architect.interfaces.js.map +1 -0
  22. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.controller.d.ts +17 -0
  23. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.controller.js +117 -0
  24. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.controller.js.map +1 -0
  25. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.module.d.ts +2 -0
  26. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.module.js +22 -0
  27. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.module.js.map +1 -0
  28. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.service.d.ts +48 -0
  29. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.service.js +121 -0
  30. package/dist/apps/monolith/apps/agentcraft/src/autonomous/autonomous.service.js.map +1 -0
  31. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/run-autonomous.dto.d.ts +26 -0
  32. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/run-autonomous.dto.js +20 -0
  33. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/run-autonomous.dto.js.map +1 -0
  34. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/watch-kb.dto.d.ts +18 -0
  35. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/watch-kb.dto.js +20 -0
  36. package/dist/apps/monolith/apps/agentcraft/src/autonomous/dto/watch-kb.dto.js.map +1 -0
  37. package/dist/apps/monolith/apps/agentcraft/src/health/health.controller.d.ts +7 -0
  38. package/dist/apps/monolith/apps/agentcraft/src/health/health.controller.js +41 -0
  39. package/dist/apps/monolith/apps/agentcraft/src/health/health.controller.js.map +1 -0
  40. package/dist/apps/monolith/apps/agentcraft/src/health/health.module.d.ts +2 -0
  41. package/dist/apps/monolith/apps/agentcraft/src/health/health.module.js +22 -0
  42. package/dist/apps/monolith/apps/agentcraft/src/health/health.module.js.map +1 -0
  43. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/create-resolver.dto.d.ts +22 -0
  44. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/create-resolver.dto.js +18 -0
  45. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/create-resolver.dto.js.map +1 -0
  46. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/install-registry.dto.d.ts +14 -0
  47. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/install-registry.dto.js +14 -0
  48. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/install-registry.dto.js.map +1 -0
  49. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/search-registry-query.dto.d.ts +10 -0
  50. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/search-registry-query.dto.js +12 -0
  51. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/search-registry-query.dto.js.map +1 -0
  52. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/submit-action.dto.d.ts +1 -0
  53. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/submit-action.dto.js +7 -0
  54. package/dist/apps/monolith/apps/agentcraft/src/resolver/dto/submit-action.dto.js.map +1 -0
  55. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver-session.store.d.ts +19 -0
  56. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver-session.store.js +39 -0
  57. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver-session.store.js.map +1 -0
  58. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.controller.d.ts +36 -0
  59. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.controller.js +121 -0
  60. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.controller.js.map +1 -0
  61. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.module.d.ts +2 -0
  62. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.module.js +23 -0
  63. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.module.js.map +1 -0
  64. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.service.d.ts +42 -0
  65. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.service.js +101 -0
  66. package/dist/apps/monolith/apps/agentcraft/src/resolver/resolver.service.js.map +1 -0
  67. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/create-session.dto.d.ts +18 -0
  68. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/create-session.dto.js +16 -0
  69. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/create-session.dto.js.map +1 -0
  70. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-action.dto.d.ts +1 -0
  71. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-action.dto.js +7 -0
  72. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-action.dto.js.map +1 -0
  73. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-idea.dto.d.ts +10 -0
  74. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-idea.dto.js +12 -0
  75. package/dist/apps/monolith/apps/agentcraft/src/sessions/dto/submit-idea.dto.js.map +1 -0
  76. package/dist/apps/monolith/apps/agentcraft/src/sessions/session.store.d.ts +19 -0
  77. package/dist/apps/monolith/apps/agentcraft/src/sessions/session.store.js +39 -0
  78. package/dist/apps/monolith/apps/agentcraft/src/sessions/session.store.js.map +1 -0
  79. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.controller.d.ts +47 -0
  80. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.controller.js +139 -0
  81. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.controller.js.map +1 -0
  82. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.module.d.ts +2 -0
  83. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.module.js +23 -0
  84. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.module.js.map +1 -0
  85. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.service.d.ts +60 -0
  86. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.service.js +203 -0
  87. package/dist/apps/monolith/apps/agentcraft/src/sessions/sessions.service.js.map +1 -0
  88. package/dist/apps/monolith/apps/agentmanager/src/agentmanager-core.module.d.ts +4 -0
  89. package/dist/apps/monolith/apps/agentmanager/src/agentmanager-core.module.js +54 -0
  90. package/dist/apps/monolith/apps/agentmanager/src/agentmanager-core.module.js.map +1 -0
  91. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.controller.d.ts +9 -0
  92. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.controller.js +50 -0
  93. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.controller.js.map +1 -0
  94. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.module.d.ts +2 -0
  95. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.module.js +23 -0
  96. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.module.js.map +1 -0
  97. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.service.d.ts +17 -0
  98. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.service.js +169 -0
  99. package/dist/apps/monolith/apps/agentmanager/src/deployments/deployments.service.js.map +1 -0
  100. package/dist/apps/monolith/apps/agentmanager/src/deployments/errors/deployment.errors.d.ts +7 -0
  101. package/dist/apps/monolith/apps/agentmanager/src/deployments/errors/deployment.errors.js +17 -0
  102. package/dist/apps/monolith/apps/agentmanager/src/deployments/errors/deployment.errors.js.map +1 -0
  103. package/dist/apps/monolith/apps/agentmanager/src/deployments/interfaces/deployment.interfaces.d.ts +22 -0
  104. package/dist/apps/monolith/apps/agentmanager/src/deployments/interfaces/deployment.interfaces.js +3 -0
  105. package/dist/apps/monolith/apps/agentmanager/src/deployments/interfaces/deployment.interfaces.js.map +1 -0
  106. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.controller.d.ts +7 -0
  107. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.controller.js +41 -0
  108. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.controller.js.map +1 -0
  109. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.module.d.ts +2 -0
  110. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.module.js +41 -0
  111. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.module.js.map +1 -0
  112. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.service.d.ts +17 -0
  113. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.service.js +160 -0
  114. package/dist/apps/monolith/apps/agentmanager/src/discovery/discovery.service.js.map +1 -0
  115. package/dist/apps/monolith/apps/agentmanager/src/discovery/dto/discover.dto.d.ts +10 -0
  116. package/dist/apps/monolith/apps/agentmanager/src/discovery/dto/discover.dto.js +12 -0
  117. package/dist/apps/monolith/apps/agentmanager/src/discovery/dto/discover.dto.js.map +1 -0
  118. package/dist/apps/monolith/apps/agentmanager/src/discovery/interfaces/discovery.interfaces.d.ts +21 -0
  119. package/dist/apps/monolith/apps/agentmanager/src/discovery/interfaces/discovery.interfaces.js +3 -0
  120. package/dist/apps/monolith/apps/agentmanager/src/discovery/interfaces/discovery.interfaces.js.map +1 -0
  121. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/anthropic-llm.service.d.ts +8 -0
  122. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/anthropic-llm.service.js +67 -0
  123. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/anthropic-llm.service.js.map +1 -0
  124. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm-provider.interface.d.ts +14 -0
  125. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm-provider.interface.js +5 -0
  126. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm-provider.interface.js.map +1 -0
  127. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm.errors.d.ts +4 -0
  128. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm.errors.js +11 -0
  129. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/llm.errors.js.map +1 -0
  130. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/openai-llm.service.d.ts +8 -0
  131. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/openai-llm.service.js +69 -0
  132. package/dist/apps/monolith/apps/agentmanager/src/discovery/llm/openai-llm.service.js.map +1 -0
  133. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-config.dto.d.ts +10 -0
  134. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-config.dto.js +12 -0
  135. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-config.dto.js.map +1 -0
  136. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-module.dto.d.ts +10 -0
  137. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-module.dto.js +12 -0
  138. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-module.dto.js.map +1 -0
  139. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-package.dto.d.ts +16 -0
  140. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-package.dto.js +17 -0
  141. package/dist/apps/monolith/apps/agentmanager/src/employee-code/dto/put-package.dto.js.map +1 -0
  142. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.controller.d.ts +20 -0
  143. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.controller.js +130 -0
  144. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.controller.js.map +1 -0
  145. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.module.d.ts +2 -0
  146. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.module.js +23 -0
  147. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.module.js.map +1 -0
  148. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.service.d.ts +13 -0
  149. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.service.js +54 -0
  150. package/dist/apps/monolith/apps/agentmanager/src/employee-code/employee-code.service.js.map +1 -0
  151. package/dist/apps/monolith/apps/agentmanager/src/employees/dto/register-employee.dto.d.ts +12 -0
  152. package/dist/apps/monolith/apps/agentmanager/src/employees/dto/register-employee.dto.js +13 -0
  153. package/dist/apps/monolith/apps/agentmanager/src/employees/dto/register-employee.dto.js.map +1 -0
  154. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.controller.d.ts +12 -0
  155. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.controller.js +76 -0
  156. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.controller.js.map +1 -0
  157. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.module.d.ts +2 -0
  158. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.module.js +23 -0
  159. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.module.js.map +1 -0
  160. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.service.d.ts +9 -0
  161. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.service.js +42 -0
  162. package/dist/apps/monolith/apps/agentmanager/src/employees/employees.service.js.map +1 -0
  163. package/dist/apps/monolith/apps/agentmanager/src/health/health.controller.d.ts +7 -0
  164. package/dist/apps/monolith/apps/agentmanager/src/health/health.controller.js +41 -0
  165. package/dist/apps/monolith/apps/agentmanager/src/health/health.controller.js.map +1 -0
  166. package/dist/apps/monolith/apps/agentmanager/src/health/health.module.d.ts +2 -0
  167. package/dist/apps/monolith/apps/agentmanager/src/health/health.module.js +22 -0
  168. package/dist/apps/monolith/apps/agentmanager/src/health/health.module.js.map +1 -0
  169. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/list-messages-query.dto.d.ts +30 -0
  170. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/list-messages-query.dto.js +14 -0
  171. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/list-messages-query.dto.js.map +1 -0
  172. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/push-message.dto.d.ts +80 -0
  173. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/push-message.dto.js +49 -0
  174. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/push-message.dto.js.map +1 -0
  175. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/respond-message.dto.d.ts +12 -0
  176. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/respond-message.dto.js +13 -0
  177. package/dist/apps/monolith/apps/agentmanager/src/inbox/dto/respond-message.dto.js.map +1 -0
  178. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.controller.d.ts +15 -0
  179. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.controller.js +103 -0
  180. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.controller.js.map +1 -0
  181. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.module.d.ts +2 -0
  182. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.module.js +23 -0
  183. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.module.js.map +1 -0
  184. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.service.d.ts +16 -0
  185. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.service.js +173 -0
  186. package/dist/apps/monolith/apps/agentmanager/src/inbox/inbox.service.js.map +1 -0
  187. package/dist/apps/monolith/apps/agentmanager/src/projects/dto/create-project.dto.d.ts +14 -0
  188. package/dist/apps/monolith/apps/agentmanager/src/projects/dto/create-project.dto.js +14 -0
  189. package/dist/apps/monolith/apps/agentmanager/src/projects/dto/create-project.dto.js.map +1 -0
  190. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.controller.d.ts +17 -0
  191. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.controller.js +73 -0
  192. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.controller.js.map +1 -0
  193. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.module.d.ts +2 -0
  194. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.module.js +23 -0
  195. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.module.js.map +1 -0
  196. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.service.d.ts +11 -0
  197. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.service.js +39 -0
  198. package/dist/apps/monolith/apps/agentmanager/src/projects/projects.service.js.map +1 -0
  199. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.module.d.ts +2 -0
  200. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.module.js +82 -0
  201. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.module.js.map +1 -0
  202. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.service.d.ts +63 -0
  203. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.service.js +295 -0
  204. package/dist/apps/monolith/apps/fabric/src/ai-agent/ai-agent.service.js.map +1 -0
  205. package/dist/apps/monolith/apps/fabric/src/ai-agent/probe-investigation.types.d.ts +19 -0
  206. package/dist/apps/monolith/apps/fabric/src/ai-agent/probe-investigation.types.js +3 -0
  207. package/dist/apps/monolith/apps/fabric/src/ai-agent/probe-investigation.types.js.map +1 -0
  208. package/dist/apps/monolith/apps/fabric/src/auth/current-user.decorator.d.ts +2 -0
  209. package/dist/apps/monolith/apps/fabric/src/auth/current-user.decorator.js +11 -0
  210. package/dist/apps/monolith/apps/fabric/src/auth/current-user.decorator.js.map +1 -0
  211. package/dist/apps/monolith/apps/fabric/src/auth/request-user.d.ts +4 -0
  212. package/dist/apps/monolith/apps/fabric/src/auth/request-user.js +3 -0
  213. package/dist/apps/monolith/apps/fabric/src/auth/request-user.js.map +1 -0
  214. package/dist/apps/monolith/apps/fabric/src/config/configuration.d.ts +57 -0
  215. package/dist/apps/monolith/apps/fabric/src/config/configuration.js +185 -0
  216. package/dist/apps/monolith/apps/fabric/src/config/configuration.js.map +1 -0
  217. package/dist/apps/monolith/apps/fabric/src/database/entities/deployment-event.entity.d.ts +11 -0
  218. package/dist/apps/monolith/apps/fabric/src/database/entities/deployment-event.entity.js +67 -0
  219. package/dist/apps/monolith/apps/fabric/src/database/entities/deployment-event.entity.js.map +1 -0
  220. package/dist/apps/monolith/apps/fabric/src/database/entities/environment.entity.d.ts +9 -0
  221. package/dist/apps/monolith/apps/fabric/src/database/entities/environment.entity.js +55 -0
  222. package/dist/apps/monolith/apps/fabric/src/database/entities/environment.entity.js.map +1 -0
  223. package/dist/apps/monolith/apps/fabric/src/database/entities/index.d.ts +8 -0
  224. package/dist/apps/monolith/apps/fabric/src/database/entities/index.js +24 -0
  225. package/dist/apps/monolith/apps/fabric/src/database/entities/index.js.map +1 -0
  226. package/dist/apps/monolith/apps/fabric/src/database/entities/project.entity.d.ts +9 -0
  227. package/dist/apps/monolith/apps/fabric/src/database/entities/project.entity.js +55 -0
  228. package/dist/apps/monolith/apps/fabric/src/database/entities/project.entity.js.map +1 -0
  229. package/dist/apps/monolith/apps/fabric/src/database/entities/runtime.entity.d.ts +19 -0
  230. package/dist/apps/monolith/apps/fabric/src/database/entities/runtime.entity.js +105 -0
  231. package/dist/apps/monolith/apps/fabric/src/database/entities/runtime.entity.js.map +1 -0
  232. package/dist/apps/monolith/apps/fabric/src/database/entities/user-config.entity.d.ts +8 -0
  233. package/dist/apps/monolith/apps/fabric/src/database/entities/user-config.entity.js +50 -0
  234. package/dist/apps/monolith/apps/fabric/src/database/entities/user-config.entity.js.map +1 -0
  235. package/dist/apps/monolith/apps/fabric/src/database/entities/version.entity.d.ts +8 -0
  236. package/dist/apps/monolith/apps/fabric/src/database/entities/version.entity.js +50 -0
  237. package/dist/apps/monolith/apps/fabric/src/database/entities/version.entity.js.map +1 -0
  238. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.controller.d.ts +8 -0
  239. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.controller.js +49 -0
  240. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.controller.js.map +1 -0
  241. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.module.d.ts +2 -0
  242. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.module.js +24 -0
  243. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.module.js.map +1 -0
  244. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.service.d.ts +25 -0
  245. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.service.js +50 -0
  246. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.service.js.map +1 -0
  247. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.store.d.ts +28 -0
  248. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.store.js +132 -0
  249. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.store.js.map +1 -0
  250. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.types.d.ts +12 -0
  251. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.types.js +3 -0
  252. package/dist/apps/monolith/apps/fabric/src/deployment-events/deployment-events.types.js.map +1 -0
  253. package/dist/apps/monolith/apps/fabric/src/employees/dto/deploy.dto.d.ts +124 -0
  254. package/dist/apps/monolith/apps/fabric/src/employees/dto/deploy.dto.js +62 -0
  255. package/dist/apps/monolith/apps/fabric/src/employees/dto/deploy.dto.js.map +1 -0
  256. package/dist/apps/monolith/apps/fabric/src/employees/employees.controller.d.ts +38 -0
  257. package/dist/apps/monolith/apps/fabric/src/employees/employees.controller.js +222 -0
  258. package/dist/apps/monolith/apps/fabric/src/employees/employees.controller.js.map +1 -0
  259. package/dist/apps/monolith/apps/fabric/src/employees/employees.module.d.ts +2 -0
  260. package/dist/apps/monolith/apps/fabric/src/employees/employees.module.js +45 -0
  261. package/dist/apps/monolith/apps/fabric/src/employees/employees.module.js.map +1 -0
  262. package/dist/apps/monolith/apps/fabric/src/employees/employees.service.d.ts +81 -0
  263. package/dist/apps/monolith/apps/fabric/src/employees/employees.service.js +952 -0
  264. package/dist/apps/monolith/apps/fabric/src/employees/employees.service.js.map +1 -0
  265. package/dist/apps/monolith/apps/fabric/src/employees/employees.types.d.ts +43 -0
  266. package/dist/apps/monolith/apps/fabric/src/employees/employees.types.js +12 -0
  267. package/dist/apps/monolith/apps/fabric/src/employees/employees.types.js.map +1 -0
  268. package/dist/apps/monolith/apps/fabric/src/employees/errors/employee-deployment.errors.d.ts +25 -0
  269. package/dist/apps/monolith/apps/fabric/src/employees/errors/employee-deployment.errors.js +54 -0
  270. package/dist/apps/monolith/apps/fabric/src/employees/errors/employee-deployment.errors.js.map +1 -0
  271. package/dist/apps/monolith/apps/fabric/src/employees/runtime.store.d.ts +52 -0
  272. package/dist/apps/monolith/apps/fabric/src/employees/runtime.store.js +222 -0
  273. package/dist/apps/monolith/apps/fabric/src/employees/runtime.store.js.map +1 -0
  274. package/dist/apps/monolith/apps/fabric/src/environments/dto/environment.dto.d.ts +48 -0
  275. package/dist/apps/monolith/apps/fabric/src/environments/dto/environment.dto.js +25 -0
  276. package/dist/apps/monolith/apps/fabric/src/environments/dto/environment.dto.js.map +1 -0
  277. package/dist/apps/monolith/apps/fabric/src/environments/environments.controller.d.ts +13 -0
  278. package/dist/apps/monolith/apps/fabric/src/environments/environments.controller.js +82 -0
  279. package/dist/apps/monolith/apps/fabric/src/environments/environments.controller.js.map +1 -0
  280. package/dist/apps/monolith/apps/fabric/src/environments/environments.module.d.ts +2 -0
  281. package/dist/apps/monolith/apps/fabric/src/environments/environments.module.js +24 -0
  282. package/dist/apps/monolith/apps/fabric/src/environments/environments.module.js.map +1 -0
  283. package/dist/apps/monolith/apps/fabric/src/environments/environments.service.d.ts +24 -0
  284. package/dist/apps/monolith/apps/fabric/src/environments/environments.service.js +82 -0
  285. package/dist/apps/monolith/apps/fabric/src/environments/environments.service.js.map +1 -0
  286. package/dist/apps/monolith/apps/fabric/src/environments/environments.store.d.ts +22 -0
  287. package/dist/apps/monolith/apps/fabric/src/environments/environments.store.js +131 -0
  288. package/dist/apps/monolith/apps/fabric/src/environments/environments.store.js.map +1 -0
  289. package/dist/apps/monolith/apps/fabric/src/environments/environments.types.d.ts +10 -0
  290. package/dist/apps/monolith/apps/fabric/src/environments/environments.types.js +3 -0
  291. package/dist/apps/monolith/apps/fabric/src/environments/environments.types.js.map +1 -0
  292. package/dist/apps/monolith/apps/fabric/src/environments/errors/environment.errors.d.ts +7 -0
  293. package/dist/apps/monolith/apps/fabric/src/environments/errors/environment.errors.js +18 -0
  294. package/dist/apps/monolith/apps/fabric/src/environments/errors/environment.errors.js.map +1 -0
  295. package/dist/apps/monolith/apps/fabric/src/fabric-core.module.d.ts +4 -0
  296. package/dist/apps/monolith/apps/fabric/src/fabric-core.module.js +57 -0
  297. package/dist/apps/monolith/apps/fabric/src/fabric-core.module.js.map +1 -0
  298. package/dist/apps/monolith/apps/fabric/src/health/health.controller.d.ts +8 -0
  299. package/dist/apps/monolith/apps/fabric/src/health/health.controller.js +42 -0
  300. package/dist/apps/monolith/apps/fabric/src/health/health.controller.js.map +1 -0
  301. package/dist/apps/monolith/apps/fabric/src/health/health.module.d.ts +2 -0
  302. package/dist/apps/monolith/apps/fabric/src/health/health.module.js +25 -0
  303. package/dist/apps/monolith/apps/fabric/src/health/health.module.js.map +1 -0
  304. package/dist/apps/monolith/apps/fabric/src/health/provider-health.indicator.d.ts +7 -0
  305. package/dist/apps/monolith/apps/fabric/src/health/provider-health.indicator.js +42 -0
  306. package/dist/apps/monolith/apps/fabric/src/health/provider-health.indicator.js.map +1 -0
  307. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.module.d.ts +2 -0
  308. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.module.js +37 -0
  309. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.module.js.map +1 -0
  310. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.service.d.ts +40 -0
  311. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.service.js +392 -0
  312. package/dist/apps/monolith/apps/fabric/src/healthcheck/healthcheck.service.js.map +1 -0
  313. package/dist/apps/monolith/apps/fabric/src/logs/logs.module.d.ts +2 -0
  314. package/dist/apps/monolith/apps/fabric/src/logs/logs.module.js +23 -0
  315. package/dist/apps/monolith/apps/fabric/src/logs/logs.module.js.map +1 -0
  316. package/dist/apps/monolith/apps/fabric/src/logs/logs.service.d.ts +22 -0
  317. package/dist/apps/monolith/apps/fabric/src/logs/logs.service.js +167 -0
  318. package/dist/apps/monolith/apps/fabric/src/logs/logs.service.js.map +1 -0
  319. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.module.d.ts +2 -0
  320. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.module.js +70 -0
  321. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.module.js.map +1 -0
  322. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.service.d.ts +35 -0
  323. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.service.js +122 -0
  324. package/dist/apps/monolith/apps/fabric/src/notifications/notifications.service.js.map +1 -0
  325. package/dist/apps/monolith/apps/fabric/src/project-source/errors/project-source.errors.d.ts +4 -0
  326. package/dist/apps/monolith/apps/fabric/src/project-source/errors/project-source.errors.js +12 -0
  327. package/dist/apps/monolith/apps/fabric/src/project-source/errors/project-source.errors.js.map +1 -0
  328. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.module.d.ts +2 -0
  329. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.module.js +21 -0
  330. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.module.js.map +1 -0
  331. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.service.d.ts +12 -0
  332. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.service.js +79 -0
  333. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.service.js.map +1 -0
  334. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.types.d.ts +10 -0
  335. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.types.js +3 -0
  336. package/dist/apps/monolith/apps/fabric/src/project-source/project-source.types.js.map +1 -0
  337. package/dist/apps/monolith/apps/fabric/src/projects/dto/project.dto.d.ts +40 -0
  338. package/dist/apps/monolith/apps/fabric/src/projects/dto/project.dto.js +28 -0
  339. package/dist/apps/monolith/apps/fabric/src/projects/dto/project.dto.js.map +1 -0
  340. package/dist/apps/monolith/apps/fabric/src/projects/errors/project.errors.d.ts +7 -0
  341. package/dist/apps/monolith/apps/fabric/src/projects/errors/project.errors.js +18 -0
  342. package/dist/apps/monolith/apps/fabric/src/projects/errors/project.errors.js.map +1 -0
  343. package/dist/apps/monolith/apps/fabric/src/projects/projects-data.service.d.ts +11 -0
  344. package/dist/apps/monolith/apps/fabric/src/projects/projects-data.service.js +73 -0
  345. package/dist/apps/monolith/apps/fabric/src/projects/projects-data.service.js.map +1 -0
  346. package/dist/apps/monolith/apps/fabric/src/projects/projects.controller.d.ts +23 -0
  347. package/dist/apps/monolith/apps/fabric/src/projects/projects.controller.js +130 -0
  348. package/dist/apps/monolith/apps/fabric/src/projects/projects.controller.js.map +1 -0
  349. package/dist/apps/monolith/apps/fabric/src/projects/projects.module.d.ts +2 -0
  350. package/dist/apps/monolith/apps/fabric/src/projects/projects.module.js +33 -0
  351. package/dist/apps/monolith/apps/fabric/src/projects/projects.module.js.map +1 -0
  352. package/dist/apps/monolith/apps/fabric/src/projects/projects.service.d.ts +39 -0
  353. package/dist/apps/monolith/apps/fabric/src/projects/projects.service.js +245 -0
  354. package/dist/apps/monolith/apps/fabric/src/projects/projects.service.js.map +1 -0
  355. package/dist/apps/monolith/apps/fabric/src/projects/projects.store.d.ts +22 -0
  356. package/dist/apps/monolith/apps/fabric/src/projects/projects.store.js +130 -0
  357. package/dist/apps/monolith/apps/fabric/src/projects/projects.store.js.map +1 -0
  358. package/dist/apps/monolith/apps/fabric/src/projects/projects.types.d.ts +9 -0
  359. package/dist/apps/monolith/apps/fabric/src/projects/projects.types.js +3 -0
  360. package/dist/apps/monolith/apps/fabric/src/projects/projects.types.js.map +1 -0
  361. package/dist/apps/monolith/apps/fabric/src/providers/docker-provider.d.ts +17 -0
  362. package/dist/apps/monolith/apps/fabric/src/providers/docker-provider.js +128 -0
  363. package/dist/apps/monolith/apps/fabric/src/providers/docker-provider.js.map +1 -0
  364. package/dist/apps/monolith/apps/fabric/src/providers/eks-provider.d.ts +24 -0
  365. package/dist/apps/monolith/apps/fabric/src/providers/eks-provider.js +236 -0
  366. package/dist/apps/monolith/apps/fabric/src/providers/eks-provider.js.map +1 -0
  367. package/dist/apps/monolith/apps/fabric/src/providers/pm2-provider.d.ts +22 -0
  368. package/dist/apps/monolith/apps/fabric/src/providers/pm2-provider.js +177 -0
  369. package/dist/apps/monolith/apps/fabric/src/providers/pm2-provider.js.map +1 -0
  370. package/dist/apps/monolith/apps/fabric/src/providers/port-allocator.d.ts +9 -0
  371. package/dist/apps/monolith/apps/fabric/src/providers/port-allocator.js +62 -0
  372. package/dist/apps/monolith/apps/fabric/src/providers/port-allocator.js.map +1 -0
  373. package/dist/apps/monolith/apps/fabric/src/providers/provider-factory.d.ts +10 -0
  374. package/dist/apps/monolith/apps/fabric/src/providers/provider-factory.js +42 -0
  375. package/dist/apps/monolith/apps/fabric/src/providers/provider-factory.js.map +1 -0
  376. package/dist/apps/monolith/apps/fabric/src/providers/provider.interface.d.ts +28 -0
  377. package/dist/apps/monolith/apps/fabric/src/providers/provider.interface.js +5 -0
  378. package/dist/apps/monolith/apps/fabric/src/providers/provider.interface.js.map +1 -0
  379. package/dist/apps/monolith/apps/fabric/src/providers/providers.module.d.ts +2 -0
  380. package/dist/apps/monolith/apps/fabric/src/providers/providers.module.js +35 -0
  381. package/dist/apps/monolith/apps/fabric/src/providers/providers.module.js.map +1 -0
  382. package/dist/apps/monolith/apps/fabric/src/provisioners/cognito-provisioner.service.d.ts +33 -0
  383. package/dist/apps/monolith/apps/fabric/src/provisioners/cognito-provisioner.service.js +129 -0
  384. package/dist/apps/monolith/apps/fabric/src/provisioners/cognito-provisioner.service.js.map +1 -0
  385. package/dist/apps/monolith/apps/fabric/src/provisioners/postgres-provisioner.service.d.ts +36 -0
  386. package/dist/apps/monolith/apps/fabric/src/provisioners/postgres-provisioner.service.js +107 -0
  387. package/dist/apps/monolith/apps/fabric/src/provisioners/postgres-provisioner.service.js.map +1 -0
  388. package/dist/apps/monolith/apps/fabric/src/provisioners/provisioners.module.d.ts +2 -0
  389. package/dist/apps/monolith/apps/fabric/src/provisioners/provisioners.module.js +82 -0
  390. package/dist/apps/monolith/apps/fabric/src/provisioners/provisioners.module.js.map +1 -0
  391. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.module.d.ts +2 -0
  392. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.module.js +22 -0
  393. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.module.js.map +1 -0
  394. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.service.d.ts +17 -0
  395. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.service.js +57 -0
  396. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.service.js.map +1 -0
  397. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.store.d.ts +19 -0
  398. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.store.js +115 -0
  399. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.store.js.map +1 -0
  400. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.types.d.ts +10 -0
  401. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.types.js +6 -0
  402. package/dist/apps/monolith/apps/fabric/src/user-config/user-config.types.js.map +1 -0
  403. package/dist/apps/monolith/apps/fabric/src/versions/versions.controller.d.ts +9 -0
  404. package/dist/apps/monolith/apps/fabric/src/versions/versions.controller.js +52 -0
  405. package/dist/apps/monolith/apps/fabric/src/versions/versions.controller.js.map +1 -0
  406. package/dist/apps/monolith/apps/fabric/src/versions/versions.module.d.ts +2 -0
  407. package/dist/apps/monolith/apps/fabric/src/versions/versions.module.js +24 -0
  408. package/dist/apps/monolith/apps/fabric/src/versions/versions.module.js.map +1 -0
  409. package/dist/apps/monolith/apps/fabric/src/versions/versions.service.d.ts +12 -0
  410. package/dist/apps/monolith/apps/fabric/src/versions/versions.service.js +62 -0
  411. package/dist/apps/monolith/apps/fabric/src/versions/versions.service.js.map +1 -0
  412. package/dist/apps/monolith/apps/fabric/src/versions/versions.store.d.ts +24 -0
  413. package/dist/apps/monolith/apps/fabric/src/versions/versions.store.js +133 -0
  414. package/dist/apps/monolith/apps/fabric/src/versions/versions.store.js.map +1 -0
  415. package/dist/apps/monolith/apps/fabric/src/versions/versions.types.d.ts +11 -0
  416. package/dist/apps/monolith/apps/fabric/src/versions/versions.types.js +3 -0
  417. package/dist/apps/monolith/apps/fabric/src/versions/versions.types.js.map +1 -0
  418. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.module.d.ts +2 -0
  419. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.module.js +35 -0
  420. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.module.js.map +1 -0
  421. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.service.d.ts +18 -0
  422. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.service.js +84 -0
  423. package/dist/apps/monolith/apps/fabric/src/watcher/deployment-watcher.service.js.map +1 -0
  424. package/dist/apps/monolith/apps/fabric/src/watcher/pod-probe.service.d.ts +28 -0
  425. package/dist/apps/monolith/apps/fabric/src/watcher/pod-probe.service.js +211 -0
  426. package/dist/apps/monolith/apps/fabric/src/watcher/pod-probe.service.js.map +1 -0
  427. package/dist/apps/monolith/apps/integrations/src/config/configuration.d.ts +27 -0
  428. package/dist/apps/monolith/apps/integrations/src/config/configuration.js +85 -0
  429. package/dist/apps/monolith/apps/integrations/src/config/configuration.js.map +1 -0
  430. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/client.d.ts +9 -0
  431. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/client.js +46 -0
  432. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/client.js.map +1 -0
  433. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/commonInputTypes.d.ts +246 -0
  434. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/commonInputTypes.js +3 -0
  435. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/commonInputTypes.js.map +1 -0
  436. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/enums.d.ts +1 -0
  437. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/enums.js +3 -0
  438. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/enums.js.map +1 -0
  439. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/class.d.ts +35 -0
  440. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/class.js +75 -0
  441. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/class.js.map +1 -0
  442. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/prismaNamespace.d.ts +374 -0
  443. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/prismaNamespace.js +103 -0
  444. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/internal/prismaNamespace.js.map +1 -0
  445. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models/IntegrationEntity.d.ts +521 -0
  446. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models/IntegrationEntity.js +3 -0
  447. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models/IntegrationEntity.js.map +1 -0
  448. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models.d.ts +2 -0
  449. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models.js +3 -0
  450. package/dist/apps/monolith/apps/integrations/src/generated/prisma-postgres/models.js.map +1 -0
  451. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/client.d.ts +9 -0
  452. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/client.js +46 -0
  453. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/client.js.map +1 -0
  454. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/commonInputTypes.d.ts +227 -0
  455. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/commonInputTypes.js +3 -0
  456. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/commonInputTypes.js.map +1 -0
  457. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/enums.d.ts +1 -0
  458. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/enums.js +3 -0
  459. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/enums.js.map +1 -0
  460. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/class.d.ts +35 -0
  461. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/class.js +75 -0
  462. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/class.js.map +1 -0
  463. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/prismaNamespace.d.ts +368 -0
  464. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/prismaNamespace.js +100 -0
  465. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/internal/prismaNamespace.js.map +1 -0
  466. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models/IntegrationEntity.d.ts +519 -0
  467. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models/IntegrationEntity.js +3 -0
  468. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models/IntegrationEntity.js.map +1 -0
  469. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models.d.ts +2 -0
  470. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models.js +3 -0
  471. package/dist/apps/monolith/apps/integrations/src/generated/prisma-sqlite/models.js.map +1 -0
  472. package/dist/apps/monolith/apps/integrations/src/integrations-core.module.d.ts +4 -0
  473. package/dist/apps/monolith/apps/integrations/src/integrations-core.module.js +61 -0
  474. package/dist/apps/monolith/apps/integrations/src/integrations-core.module.js.map +1 -0
  475. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.module.d.ts +2 -0
  476. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.module.js +34 -0
  477. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.module.js.map +1 -0
  478. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.service.d.ts +52 -0
  479. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.service.js +185 -0
  480. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/auth-flow.service.js.map +1 -0
  481. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/scheduler.service.d.ts +14 -0
  482. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/scheduler.service.js +69 -0
  483. package/dist/apps/monolith/apps/integrations/src/modules/auth-flow/scheduler.service.js.map +1 -0
  484. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.module.d.ts +2 -0
  485. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.module.js +24 -0
  486. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.module.js.map +1 -0
  487. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.service.d.ts +31 -0
  488. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.service.js +91 -0
  489. package/dist/apps/monolith/apps/integrations/src/modules/connections/connections.service.js.map +1 -0
  490. package/dist/apps/monolith/apps/integrations/src/modules/credentials/credentials.module.d.ts +2 -0
  491. package/dist/apps/monolith/apps/integrations/src/modules/credentials/credentials.module.js +24 -0
  492. package/dist/apps/monolith/apps/integrations/src/modules/credentials/credentials.module.js.map +1 -0
  493. package/dist/apps/monolith/apps/integrations/src/modules/credentials/encryption.service.d.ts +14 -0
  494. package/dist/apps/monolith/apps/integrations/src/modules/credentials/encryption.service.js +62 -0
  495. package/dist/apps/monolith/apps/integrations/src/modules/credentials/encryption.service.js.map +1 -0
  496. package/dist/apps/monolith/apps/integrations/src/modules/credentials/token-store.service.d.ts +12 -0
  497. package/dist/apps/monolith/apps/integrations/src/modules/credentials/token-store.service.js +70 -0
  498. package/dist/apps/monolith/apps/integrations/src/modules/credentials/token-store.service.js.map +1 -0
  499. package/dist/apps/monolith/apps/integrations/src/modules/discovery/discovery.module.d.ts +2 -0
  500. package/dist/apps/monolith/apps/integrations/src/modules/discovery/discovery.module.js +21 -0
  501. package/dist/apps/monolith/apps/integrations/src/modules/discovery/discovery.module.js.map +1 -0
  502. package/dist/apps/monolith/apps/integrations/src/modules/discovery/oidc-discovery.service.d.ts +25 -0
  503. package/dist/apps/monolith/apps/integrations/src/modules/discovery/oidc-discovery.service.js +83 -0
  504. package/dist/apps/monolith/apps/integrations/src/modules/discovery/oidc-discovery.service.js.map +1 -0
  505. package/dist/apps/monolith/apps/integrations/src/modules/platform/metadata-store.service.d.ts +31 -0
  506. package/dist/apps/monolith/apps/integrations/src/modules/platform/metadata-store.service.js +278 -0
  507. package/dist/apps/monolith/apps/integrations/src/modules/platform/metadata-store.service.js.map +1 -0
  508. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.module.d.ts +2 -0
  509. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.module.js +21 -0
  510. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.module.js.map +1 -0
  511. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.types.d.ts +9 -0
  512. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.types.js +3 -0
  513. package/dist/apps/monolith/apps/integrations/src/modules/platform/platform.types.js.map +1 -0
  514. package/dist/apps/monolith/apps/integrations/src/modules/platform/resilient-fetch.d.ts +6 -0
  515. package/dist/apps/monolith/apps/integrations/src/modules/platform/resilient-fetch.js +38 -0
  516. package/dist/apps/monolith/apps/integrations/src/modules/platform/resilient-fetch.js.map +1 -0
  517. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/api-key.provider.d.ts +9 -0
  518. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/api-key.provider.js +34 -0
  519. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/api-key.provider.js.map +1 -0
  520. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/basic-auth.provider.d.ts +9 -0
  521. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/basic-auth.provider.js +35 -0
  522. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/basic-auth.provider.js.map +1 -0
  523. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oauth2.provider.d.ts +13 -0
  524. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oauth2.provider.js +162 -0
  525. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oauth2.provider.js.map +1 -0
  526. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oidc.provider.d.ts +14 -0
  527. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oidc.provider.js +55 -0
  528. package/dist/apps/monolith/apps/integrations/src/modules/providers/base/oidc.provider.js.map +1 -0
  529. package/dist/apps/monolith/apps/integrations/src/modules/providers/builtin/google-drive.provider.d.ts +3 -0
  530. package/dist/apps/monolith/apps/integrations/src/modules/providers/builtin/google-drive.provider.js +39 -0
  531. package/dist/apps/monolith/apps/integrations/src/modules/providers/builtin/google-drive.provider.js.map +1 -0
  532. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.factory.d.ts +11 -0
  533. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.factory.js +70 -0
  534. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.factory.js.map +1 -0
  535. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.registry.d.ts +20 -0
  536. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.registry.js +114 -0
  537. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.registry.js.map +1 -0
  538. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.types.d.ts +160 -0
  539. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.types.js +20 -0
  540. package/dist/apps/monolith/apps/integrations/src/modules/providers/provider.types.js.map +1 -0
  541. package/dist/apps/monolith/apps/integrations/src/modules/providers/providers.module.d.ts +2 -0
  542. package/dist/apps/monolith/apps/integrations/src/modules/providers/providers.module.js +46 -0
  543. package/dist/apps/monolith/apps/integrations/src/modules/providers/providers.module.js.map +1 -0
  544. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.module.d.ts +2 -0
  545. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.module.js +24 -0
  546. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.module.js.map +1 -0
  547. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.service.d.ts +48 -0
  548. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.service.js +136 -0
  549. package/dist/apps/monolith/apps/integrations/src/modules/tenant-config/tenant-config.service.js.map +1 -0
  550. package/dist/apps/monolith/apps/monolith/src/app.module.d.ts +2 -0
  551. package/dist/apps/monolith/apps/monolith/src/app.module.js +73 -0
  552. package/dist/apps/monolith/apps/monolith/src/app.module.js.map +1 -0
  553. package/dist/apps/monolith/apps/monolith/src/config/configuration.d.ts +26 -0
  554. package/dist/apps/monolith/apps/monolith/src/config/configuration.js +82 -0
  555. package/dist/apps/monolith/apps/monolith/src/config/configuration.js.map +1 -0
  556. package/dist/apps/monolith/apps/monolith/src/health/health.controller.d.ts +7 -0
  557. package/dist/apps/monolith/apps/monolith/src/health/health.controller.js +41 -0
  558. package/dist/apps/monolith/apps/monolith/src/health/health.controller.js.map +1 -0
  559. package/dist/apps/monolith/apps/monolith/src/health/health.module.d.ts +2 -0
  560. package/dist/apps/monolith/apps/monolith/src/health/health.module.js +22 -0
  561. package/dist/apps/monolith/apps/monolith/src/health/health.module.js.map +1 -0
  562. package/dist/apps/monolith/apps/monolith/src/main.d.ts +1 -0
  563. package/dist/apps/monolith/apps/monolith/src/main.js +46 -0
  564. package/dist/apps/monolith/apps/monolith/src/main.js.map +1 -0
  565. package/dist/apps/monolith/libs/agentcraft/src/agentcraft.module.d.ts +13 -0
  566. package/dist/apps/monolith/libs/agentcraft/src/agentcraft.module.js +137 -0
  567. package/dist/apps/monolith/libs/agentcraft/src/agentcraft.module.js.map +1 -0
  568. package/dist/apps/monolith/libs/agentcraft/src/constants.d.ts +2 -0
  569. package/dist/apps/monolith/libs/agentcraft/src/constants.js +6 -0
  570. package/dist/apps/monolith/libs/agentcraft/src/constants.js.map +1 -0
  571. package/dist/apps/monolith/libs/agentcraft/src/dto/submit-action.dto.d.ts +32 -0
  572. package/dist/apps/monolith/libs/agentcraft/src/dto/submit-action.dto.js +23 -0
  573. package/dist/apps/monolith/libs/agentcraft/src/dto/submit-action.dto.js.map +1 -0
  574. package/dist/apps/monolith/libs/agentcraft/src/errors/domain.error.d.ts +8 -0
  575. package/dist/apps/monolith/libs/agentcraft/src/errors/domain.error.js +19 -0
  576. package/dist/apps/monolith/libs/agentcraft/src/errors/domain.error.js.map +1 -0
  577. package/dist/apps/monolith/libs/agentcraft/src/errors/llm.errors.d.ts +10 -0
  578. package/dist/apps/monolith/libs/agentcraft/src/errors/llm.errors.js +23 -0
  579. package/dist/apps/monolith/libs/agentcraft/src/errors/llm.errors.js.map +1 -0
  580. package/dist/apps/monolith/libs/agentcraft/src/index.d.ts +44 -0
  581. package/dist/apps/monolith/libs/agentcraft/src/index.js +91 -0
  582. package/dist/apps/monolith/libs/agentcraft/src/index.js.map +1 -0
  583. package/dist/apps/monolith/libs/agentcraft/src/instructions/step6-data-model.d.ts +1 -0
  584. package/dist/apps/monolith/libs/agentcraft/src/instructions/step6-data-model.js +185 -0
  585. package/dist/apps/monolith/libs/agentcraft/src/instructions/step6-data-model.js.map +1 -0
  586. package/dist/apps/monolith/libs/agentcraft/src/instructions/step7-workflows.d.ts +1 -0
  587. package/dist/apps/monolith/libs/agentcraft/src/instructions/step7-workflows.js +548 -0
  588. package/dist/apps/monolith/libs/agentcraft/src/instructions/step7-workflows.js.map +1 -0
  589. package/dist/apps/monolith/libs/agentcraft/src/instructions/step8-agents.d.ts +1 -0
  590. package/dist/apps/monolith/libs/agentcraft/src/instructions/step8-agents.js +118 -0
  591. package/dist/apps/monolith/libs/agentcraft/src/instructions/step8-agents.js.map +1 -0
  592. package/dist/apps/monolith/libs/agentcraft/src/interfaces/llm-provider.interface.d.ts +8 -0
  593. package/dist/apps/monolith/libs/agentcraft/src/interfaces/llm-provider.interface.js +3 -0
  594. package/dist/apps/monolith/libs/agentcraft/src/interfaces/llm-provider.interface.js.map +1 -0
  595. package/dist/apps/monolith/libs/agentcraft/src/prompts/assembly.prompt.d.ts +1 -0
  596. package/dist/apps/monolith/libs/agentcraft/src/prompts/assembly.prompt.js +103 -0
  597. package/dist/apps/monolith/libs/agentcraft/src/prompts/assembly.prompt.js.map +1 -0
  598. package/dist/apps/monolith/libs/agentcraft/src/prompts/codegen.prompt.d.ts +2 -0
  599. package/dist/apps/monolith/libs/agentcraft/src/prompts/codegen.prompt.js +80 -0
  600. package/dist/apps/monolith/libs/agentcraft/src/prompts/codegen.prompt.js.map +1 -0
  601. package/dist/apps/monolith/libs/agentcraft/src/prompts/decomposition.prompt.d.ts +1 -0
  602. package/dist/apps/monolith/libs/agentcraft/src/prompts/decomposition.prompt.js +36 -0
  603. package/dist/apps/monolith/libs/agentcraft/src/prompts/decomposition.prompt.js.map +1 -0
  604. package/dist/apps/monolith/libs/agentcraft/src/prompts/examples-provider.d.ts +6 -0
  605. package/dist/apps/monolith/libs/agentcraft/src/prompts/examples-provider.js +50 -0
  606. package/dist/apps/monolith/libs/agentcraft/src/prompts/examples-provider.js.map +1 -0
  607. package/dist/apps/monolith/libs/agentcraft/src/prompts/planning.prompt.d.ts +1 -0
  608. package/dist/apps/monolith/libs/agentcraft/src/prompts/planning.prompt.js +56 -0
  609. package/dist/apps/monolith/libs/agentcraft/src/prompts/planning.prompt.js.map +1 -0
  610. package/dist/apps/monolith/libs/agentcraft/src/prompts/resolver.prompt.d.ts +9 -0
  611. package/dist/apps/monolith/libs/agentcraft/src/prompts/resolver.prompt.js +320 -0
  612. package/dist/apps/monolith/libs/agentcraft/src/prompts/resolver.prompt.js.map +1 -0
  613. package/dist/apps/monolith/libs/agentcraft/src/prompts/semantics-guide.d.ts +1 -0
  614. package/dist/apps/monolith/libs/agentcraft/src/prompts/semantics-guide.js +130 -0
  615. package/dist/apps/monolith/libs/agentcraft/src/prompts/semantics-guide.js.map +1 -0
  616. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-craft-llm.service.d.ts +13 -0
  617. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-craft-llm.service.js +167 -0
  618. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-craft-llm.service.js.map +1 -0
  619. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-llm.service.d.ts +9 -0
  620. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-llm.service.js +67 -0
  621. package/dist/apps/monolith/libs/agentcraft/src/services/anthropic-llm.service.js.map +1 -0
  622. package/dist/apps/monolith/libs/agentcraft/src/services/api-adapter.service.d.ts +43 -0
  623. package/dist/apps/monolith/libs/agentcraft/src/services/api-adapter.service.js +154 -0
  624. package/dist/apps/monolith/libs/agentcraft/src/services/api-adapter.service.js.map +1 -0
  625. package/dist/apps/monolith/libs/agentcraft/src/services/architect-loop.service.d.ts +36 -0
  626. package/dist/apps/monolith/libs/agentcraft/src/services/architect-loop.service.js +282 -0
  627. package/dist/apps/monolith/libs/agentcraft/src/services/architect-loop.service.js.map +1 -0
  628. package/dist/apps/monolith/libs/agentcraft/src/services/autonomous-runner.service.d.ts +16 -0
  629. package/dist/apps/monolith/libs/agentcraft/src/services/autonomous-runner.service.js +135 -0
  630. package/dist/apps/monolith/libs/agentcraft/src/services/autonomous-runner.service.js.map +1 -0
  631. package/dist/apps/monolith/libs/agentcraft/src/services/craft-config.service.d.ts +11 -0
  632. package/dist/apps/monolith/libs/agentcraft/src/services/craft-config.service.js +91 -0
  633. package/dist/apps/monolith/libs/agentcraft/src/services/craft-config.service.js.map +1 -0
  634. package/dist/apps/monolith/libs/agentcraft/src/services/craft-llm-adapter.service.d.ts +9 -0
  635. package/dist/apps/monolith/libs/agentcraft/src/services/craft-llm-adapter.service.js +57 -0
  636. package/dist/apps/monolith/libs/agentcraft/src/services/craft-llm-adapter.service.js.map +1 -0
  637. package/dist/apps/monolith/libs/agentcraft/src/services/decomposer.service.d.ts +9 -0
  638. package/dist/apps/monolith/libs/agentcraft/src/services/decomposer.service.js +100 -0
  639. package/dist/apps/monolith/libs/agentcraft/src/services/decomposer.service.js.map +1 -0
  640. package/dist/apps/monolith/libs/agentcraft/src/services/design-generator.service.d.ts +14 -0
  641. package/dist/apps/monolith/libs/agentcraft/src/services/design-generator.service.js +544 -0
  642. package/dist/apps/monolith/libs/agentcraft/src/services/design-generator.service.js.map +1 -0
  643. package/dist/apps/monolith/libs/agentcraft/src/services/executor.service.d.ts +17 -0
  644. package/dist/apps/monolith/libs/agentcraft/src/services/executor.service.js +347 -0
  645. package/dist/apps/monolith/libs/agentcraft/src/services/executor.service.js.map +1 -0
  646. package/dist/apps/monolith/libs/agentcraft/src/services/kb-watcher.service.d.ts +12 -0
  647. package/dist/apps/monolith/libs/agentcraft/src/services/kb-watcher.service.js +141 -0
  648. package/dist/apps/monolith/libs/agentcraft/src/services/kb-watcher.service.js.map +1 -0
  649. package/dist/apps/monolith/libs/agentcraft/src/services/openai-llm.service.d.ts +9 -0
  650. package/dist/apps/monolith/libs/agentcraft/src/services/openai-llm.service.js +69 -0
  651. package/dist/apps/monolith/libs/agentcraft/src/services/openai-llm.service.js.map +1 -0
  652. package/dist/apps/monolith/libs/agentcraft/src/services/output-parser.service.d.ts +9 -0
  653. package/dist/apps/monolith/libs/agentcraft/src/services/output-parser.service.js +68 -0
  654. package/dist/apps/monolith/libs/agentcraft/src/services/output-parser.service.js.map +1 -0
  655. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-state.service.d.ts +15 -0
  656. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-state.service.js +106 -0
  657. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-state.service.js.map +1 -0
  658. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-steps.service.d.ts +10 -0
  659. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-steps.service.js +134 -0
  660. package/dist/apps/monolith/libs/agentcraft/src/services/pipeline-steps.service.js.map +1 -0
  661. package/dist/apps/monolith/libs/agentcraft/src/services/planner.service.d.ts +13 -0
  662. package/dist/apps/monolith/libs/agentcraft/src/services/planner.service.js +165 -0
  663. package/dist/apps/monolith/libs/agentcraft/src/services/planner.service.js.map +1 -0
  664. package/dist/apps/monolith/libs/agentcraft/src/services/readme-generator.service.d.ts +10 -0
  665. package/dist/apps/monolith/libs/agentcraft/src/services/readme-generator.service.js +195 -0
  666. package/dist/apps/monolith/libs/agentcraft/src/services/readme-generator.service.js.map +1 -0
  667. package/dist/apps/monolith/libs/agentcraft/src/services/registry-client.service.d.ts +14 -0
  668. package/dist/apps/monolith/libs/agentcraft/src/services/registry-client.service.js +130 -0
  669. package/dist/apps/monolith/libs/agentcraft/src/services/registry-client.service.js.map +1 -0
  670. package/dist/apps/monolith/libs/agentcraft/src/services/requirements-generator.service.d.ts +12 -0
  671. package/dist/apps/monolith/libs/agentcraft/src/services/requirements-generator.service.js +198 -0
  672. package/dist/apps/monolith/libs/agentcraft/src/services/requirements-generator.service.js.map +1 -0
  673. package/dist/apps/monolith/libs/agentcraft/src/services/spec-fetcher.service.d.ts +3 -0
  674. package/dist/apps/monolith/libs/agentcraft/src/services/spec-fetcher.service.js +30 -0
  675. package/dist/apps/monolith/libs/agentcraft/src/services/spec-fetcher.service.js.map +1 -0
  676. package/dist/apps/monolith/libs/agentcraft/src/services/ui-blueprint-generator.service.d.ts +14 -0
  677. package/dist/apps/monolith/libs/agentcraft/src/services/ui-blueprint-generator.service.js +346 -0
  678. package/dist/apps/monolith/libs/agentcraft/src/services/ui-blueprint-generator.service.js.map +1 -0
  679. package/dist/apps/monolith/libs/agentcraft/src/types/architect.types.d.ts +122 -0
  680. package/dist/apps/monolith/libs/agentcraft/src/types/architect.types.js +3 -0
  681. package/dist/apps/monolith/libs/agentcraft/src/types/architect.types.js.map +1 -0
  682. package/dist/apps/monolith/libs/agentcraft/src/types/autonomous.types.d.ts +56 -0
  683. package/dist/apps/monolith/libs/agentcraft/src/types/autonomous.types.js +3 -0
  684. package/dist/apps/monolith/libs/agentcraft/src/types/autonomous.types.js.map +1 -0
  685. package/dist/apps/monolith/libs/agentcraft/src/types/llm.types.d.ts +55 -0
  686. package/dist/apps/monolith/libs/agentcraft/src/types/llm.types.js +3 -0
  687. package/dist/apps/monolith/libs/agentcraft/src/types/llm.types.js.map +1 -0
  688. package/dist/apps/monolith/libs/agentcraft/src/types/pipeline.types.d.ts +55 -0
  689. package/dist/apps/monolith/libs/agentcraft/src/types/pipeline.types.js +34 -0
  690. package/dist/apps/monolith/libs/agentcraft/src/types/pipeline.types.js.map +1 -0
  691. package/dist/apps/monolith/libs/agentcraft/src/types/resolver.types.d.ts +27 -0
  692. package/dist/apps/monolith/libs/agentcraft/src/types/resolver.types.js +3 -0
  693. package/dist/apps/monolith/libs/agentcraft/src/types/resolver.types.js.map +1 -0
  694. package/dist/apps/monolith/libs/agentcraft/src/types/signal.types.d.ts +11 -0
  695. package/dist/apps/monolith/libs/agentcraft/src/types/signal.types.js +3 -0
  696. package/dist/apps/monolith/libs/agentcraft/src/types/signal.types.js.map +1 -0
  697. package/dist/apps/monolith/libs/agentcraft/src/utils/kb-loader.d.ts +1 -0
  698. package/dist/apps/monolith/libs/agentcraft/src/utils/kb-loader.js +61 -0
  699. package/dist/apps/monolith/libs/agentcraft/src/utils/kb-loader.js.map +1 -0
  700. package/dist/apps/monolith/libs/agentcraft/src/utils/output-writer.d.ts +6 -0
  701. package/dist/apps/monolith/libs/agentcraft/src/utils/output-writer.js +57 -0
  702. package/dist/apps/monolith/libs/agentcraft/src/utils/output-writer.js.map +1 -0
  703. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-fetcher.d.ts +1 -0
  704. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-fetcher.js +20 -0
  705. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-fetcher.js.map +1 -0
  706. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-trimmer.d.ts +9 -0
  707. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-trimmer.js +235 -0
  708. package/dist/apps/monolith/libs/agentcraft/src/utils/spec-trimmer.js.map +1 -0
  709. package/dist/apps/monolith/libs/agentcraft/src/utils/text-utils.d.ts +5 -0
  710. package/dist/apps/monolith/libs/agentcraft/src/utils/text-utils.js +36 -0
  711. package/dist/apps/monolith/libs/agentcraft/src/utils/text-utils.js.map +1 -0
  712. package/dist/apps/monolith/libs/agentcraft/src/utils/validator.d.ts +8 -0
  713. package/dist/apps/monolith/libs/agentcraft/src/utils/validator.js +187 -0
  714. package/dist/apps/monolith/libs/agentcraft/src/utils/validator.js.map +1 -0
  715. package/dist/apps/monolith/libs/common/src/database/data-source.service.d.ts +15 -0
  716. package/dist/apps/monolith/libs/common/src/database/data-source.service.js +77 -0
  717. package/dist/apps/monolith/libs/common/src/database/data-source.service.js.map +1 -0
  718. package/dist/apps/monolith/libs/common/src/database/database-connection.holder.d.ts +15 -0
  719. package/dist/apps/monolith/libs/common/src/database/database-connection.holder.js +47 -0
  720. package/dist/apps/monolith/libs/common/src/database/database-connection.holder.js.map +1 -0
  721. package/dist/apps/monolith/libs/common/src/database/database.config.d.ts +13 -0
  722. package/dist/apps/monolith/libs/common/src/database/database.config.js +5 -0
  723. package/dist/apps/monolith/libs/common/src/database/database.config.js.map +1 -0
  724. package/dist/apps/monolith/libs/common/src/database/database.module.d.ts +9 -0
  725. package/dist/apps/monolith/libs/common/src/database/database.module.js +48 -0
  726. package/dist/apps/monolith/libs/common/src/database/database.module.js.map +1 -0
  727. package/dist/apps/monolith/libs/common/src/database/embedded-database.service.d.ts +12 -0
  728. package/dist/apps/monolith/libs/common/src/database/embedded-database.service.js +108 -0
  729. package/dist/apps/monolith/libs/common/src/database/embedded-database.service.js.map +1 -0
  730. package/dist/apps/monolith/libs/common/src/database/file-store.d.ts +10 -0
  731. package/dist/apps/monolith/libs/common/src/database/file-store.factory.d.ts +8 -0
  732. package/dist/apps/monolith/libs/common/src/database/file-store.factory.js +37 -0
  733. package/dist/apps/monolith/libs/common/src/database/file-store.factory.js.map +1 -0
  734. package/dist/apps/monolith/libs/common/src/database/file-store.js +52 -0
  735. package/dist/apps/monolith/libs/common/src/database/file-store.js.map +1 -0
  736. package/dist/apps/monolith/libs/common/src/errors/domain.error.d.ts +4 -0
  737. package/dist/apps/monolith/libs/common/src/errors/domain.error.js +12 -0
  738. package/dist/apps/monolith/libs/common/src/errors/domain.error.js.map +1 -0
  739. package/dist/apps/monolith/libs/common/src/filters/domain-exception.filter.d.ts +8 -0
  740. package/dist/apps/monolith/libs/common/src/filters/domain-exception.filter.js +46 -0
  741. package/dist/apps/monolith/libs/common/src/filters/domain-exception.filter.js.map +1 -0
  742. package/dist/apps/monolith/libs/common/src/index.d.ts +13 -0
  743. package/dist/apps/monolith/libs/common/src/index.js +24 -0
  744. package/dist/apps/monolith/libs/common/src/index.js.map +1 -0
  745. package/dist/apps/monolith/libs/common/src/interceptors/logging.interceptor.d.ts +6 -0
  746. package/dist/apps/monolith/libs/common/src/interceptors/logging.interceptor.js +56 -0
  747. package/dist/apps/monolith/libs/common/src/interceptors/logging.interceptor.js.map +1 -0
  748. package/dist/apps/monolith/libs/project-provider/src/constants.d.ts +7 -0
  749. package/dist/apps/monolith/libs/project-provider/src/constants.js +11 -0
  750. package/dist/apps/monolith/libs/project-provider/src/constants.js.map +1 -0
  751. package/dist/apps/monolith/libs/project-provider/src/errors/domain.error.d.ts +1 -0
  752. package/dist/apps/monolith/libs/project-provider/src/errors/domain.error.js +6 -0
  753. package/dist/apps/monolith/libs/project-provider/src/errors/domain.error.js.map +1 -0
  754. package/dist/apps/monolith/libs/project-provider/src/errors/employee-code.errors.d.ts +13 -0
  755. package/dist/apps/monolith/libs/project-provider/src/errors/employee-code.errors.js +29 -0
  756. package/dist/apps/monolith/libs/project-provider/src/errors/employee-code.errors.js.map +1 -0
  757. package/dist/apps/monolith/libs/project-provider/src/errors/inbox.errors.d.ts +13 -0
  758. package/dist/apps/monolith/libs/project-provider/src/errors/inbox.errors.js +29 -0
  759. package/dist/apps/monolith/libs/project-provider/src/errors/inbox.errors.js.map +1 -0
  760. package/dist/apps/monolith/libs/project-provider/src/errors/registry.errors.d.ts +16 -0
  761. package/dist/apps/monolith/libs/project-provider/src/errors/registry.errors.js +35 -0
  762. package/dist/apps/monolith/libs/project-provider/src/errors/registry.errors.js.map +1 -0
  763. package/dist/apps/monolith/libs/project-provider/src/index.d.ts +23 -0
  764. package/dist/apps/monolith/libs/project-provider/src/index.js +50 -0
  765. package/dist/apps/monolith/libs/project-provider/src/index.js.map +1 -0
  766. package/dist/apps/monolith/libs/project-provider/src/interfaces/employee-code-provider.interface.d.ts +11 -0
  767. package/dist/apps/monolith/libs/project-provider/src/interfaces/employee-code-provider.interface.js +3 -0
  768. package/dist/apps/monolith/libs/project-provider/src/interfaces/employee-code-provider.interface.js.map +1 -0
  769. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-client.interface.d.ts +3 -0
  770. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-client.interface.js +3 -0
  771. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-client.interface.js.map +1 -0
  772. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-handler.interface.d.ts +5 -0
  773. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-handler.interface.js +5 -0
  774. package/dist/apps/monolith/libs/project-provider/src/interfaces/inbox-handler.interface.js.map +1 -0
  775. package/dist/apps/monolith/libs/project-provider/src/interfaces/knowledge-base.interface.d.ts +5 -0
  776. package/dist/apps/monolith/libs/project-provider/src/interfaces/knowledge-base.interface.js +3 -0
  777. package/dist/apps/monolith/libs/project-provider/src/interfaces/knowledge-base.interface.js.map +1 -0
  778. package/dist/apps/monolith/libs/project-provider/src/interfaces/registry-provider.interface.d.ts +18 -0
  779. package/dist/apps/monolith/libs/project-provider/src/interfaces/registry-provider.interface.js +3 -0
  780. package/dist/apps/monolith/libs/project-provider/src/interfaces/registry-provider.interface.js.map +1 -0
  781. package/dist/apps/monolith/libs/project-provider/src/project-provider.module.d.ts +10 -0
  782. package/dist/apps/monolith/libs/project-provider/src/project-provider.module.js +115 -0
  783. package/dist/apps/monolith/libs/project-provider/src/project-provider.module.js.map +1 -0
  784. package/dist/apps/monolith/libs/project-provider/src/services/al-parser.service.d.ts +6 -0
  785. package/dist/apps/monolith/libs/project-provider/src/services/al-parser.service.js +94 -0
  786. package/dist/apps/monolith/libs/project-provider/src/services/al-parser.service.js.map +1 -0
  787. package/dist/apps/monolith/libs/project-provider/src/services/direct-inbox-client.service.d.ts +8 -0
  788. package/dist/apps/monolith/libs/project-provider/src/services/direct-inbox-client.service.js +42 -0
  789. package/dist/apps/monolith/libs/project-provider/src/services/direct-inbox-client.service.js.map +1 -0
  790. package/dist/apps/monolith/libs/project-provider/src/services/file-knowledge-base.service.d.ts +8 -0
  791. package/dist/apps/monolith/libs/project-provider/src/services/file-knowledge-base.service.js +126 -0
  792. package/dist/apps/monolith/libs/project-provider/src/services/file-knowledge-base.service.js.map +1 -0
  793. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-employee-code.service.d.ts +24 -0
  794. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-employee-code.service.js +163 -0
  795. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-employee-code.service.js.map +1 -0
  796. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-registry.service.d.ts +27 -0
  797. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-registry.service.js +223 -0
  798. package/dist/apps/monolith/libs/project-provider/src/services/filesystem-registry.service.js.map +1 -0
  799. package/dist/apps/monolith/libs/project-provider/src/services/http-inbox-client.service.d.ts +7 -0
  800. package/dist/apps/monolith/libs/project-provider/src/services/http-inbox-client.service.js +46 -0
  801. package/dist/apps/monolith/libs/project-provider/src/services/http-inbox-client.service.js.map +1 -0
  802. package/dist/apps/monolith/libs/project-provider/src/services/noop-inbox-client.service.d.ts +4 -0
  803. package/dist/apps/monolith/libs/project-provider/src/services/noop-inbox-client.service.js +19 -0
  804. package/dist/apps/monolith/libs/project-provider/src/services/noop-inbox-client.service.js.map +1 -0
  805. package/dist/apps/monolith/libs/project-provider/src/types/messaging.types.d.ts +45 -0
  806. package/dist/apps/monolith/libs/project-provider/src/types/messaging.types.js +11 -0
  807. package/dist/apps/monolith/libs/project-provider/src/types/messaging.types.js.map +1 -0
  808. package/dist/apps/monolith/libs/project-provider/src/types/project.types.d.ts +47 -0
  809. package/dist/apps/monolith/libs/project-provider/src/types/project.types.js +3 -0
  810. package/dist/apps/monolith/libs/project-provider/src/types/project.types.js.map +1 -0
  811. package/dist/apps/monolith/tsconfig.app.tsbuildinfo +1 -0
  812. package/package.json +3 -1
  813. package/scripts/agentmanager.mjs +22 -2
  814. package/scripts/monolith-daemon-run.mjs +3 -1
  815. package/scripts/monolith-daemon-run.sh +1 -1
@@ -0,0 +1,8 @@
1
+ import type { LlmRequest, LlmResponse, ChatRequest, ChatResponse } from '../types/llm.types';
2
+ export interface LlmProvider {
3
+ complete(request: LlmRequest): Promise<LlmResponse>;
4
+ }
5
+ export interface CraftLlmProvider {
6
+ chat(request: ChatRequest): Promise<ChatResponse>;
7
+ chatStream(request: ChatRequest, onChunk: (text: string) => void): Promise<ChatResponse>;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=llm-provider.interface.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"llm-provider.interface.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/interfaces/llm-provider.interface.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ export declare function buildAssemblySystemPrompt(projectName: string, baseAppDirName?: string): string;
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.buildAssemblySystemPrompt = buildAssemblySystemPrompt;
4
+ const text_utils_1 = require("../utils/text-utils");
5
+ function buildAssemblySystemPrompt(projectName, baseAppDirName) {
6
+ const appName = (0, text_utils_1.kebabToPascalCase)(projectName);
7
+ return `You are an Agentlang developer assembling the final application package.
8
+
9
+ ## Task
10
+
11
+ Take the complete agentlang module code provided and produce a deployable application package consisting of four files:
12
+
13
+ 1. **src/core.al** — the complete agentlang module (all entities, relationships, events, workflows, and agents merged into a single module named \`${appName}.core\`)
14
+ 2. **config.al** — LLM configuration for the agents defined in the module
15
+ 3. **package.json** — npm package manifest for the application
16
+ 4. **README.md** — project overview with setup instructions and API usage examples
17
+
18
+ ## Module Naming
19
+
20
+ The module in src/core.al MUST be declared as: \`module ${appName}.core\`
21
+
22
+ ## Output Format
23
+
24
+ Output exactly four files (or more if resolver files are included), each preceded by a file header line:
25
+
26
+ --- FILE: src/core.al ---
27
+
28
+ <the complete agentlang module>
29
+
30
+ --- FILE: config.al ---
31
+
32
+ <LLM configuration>
33
+
34
+ --- FILE: package.json ---
35
+
36
+ <package manifest>
37
+
38
+ --- FILE: README.md ---
39
+
40
+ <documentation>
41
+
42
+ ### config.al format
43
+
44
+ config.al is a JSON file (despite the .al extension). Generate a complete application configuration with service, store, and LLM settings:
45
+
46
+ \`\`\`json
47
+ {
48
+ "agentlang": {
49
+ "service": {
50
+ "port": "#js parseInt(process.env.SERVICE_PORT || '8080')"
51
+ },
52
+ "store": {
53
+ "type": "sqlite",
54
+ "dbname": "${projectName.toLowerCase().replace(/[^a-z0-9]/g, '_')}.db"
55
+ }
56
+ },
57
+ "agentlang.ai": [
58
+ {
59
+ "agentlang.ai/LLM": {
60
+ "name": "<llm_name_referenced_by_agents>",
61
+ "service": "anthropic",
62
+ "config": {
63
+ "model": "claude-sonnet-4-5",
64
+ "maxTokens": 21333,
65
+ "enableThinking": false,
66
+ "temperature": 0.7,
67
+ "budgetTokens": 8192,
68
+ "enablePromptCaching": true,
69
+ "stream": false,
70
+ "enableExtendedOutput": true
71
+ }
72
+ }
73
+ }
74
+ ]
75
+ }
76
+ \`\`\`
77
+
78
+ Rules:
79
+ - **Always include \`agentlang.service\`** with a configurable port (default 8080 via env var)
80
+ - **Always include \`agentlang.store\`** with \`"type": "sqlite"\` and a \`"dbname"\` derived from the app name
81
+ - Include one LLM entry for each unique \`llm\` name referenced by agents in the module
82
+ - If agents don't specify an llm, include a default entry
83
+
84
+ ### package.json format
85
+
86
+ \`\`\`json
87
+ {
88
+ "name": "${(0, text_utils_1.pascalToKebabCase)(appName)}",
89
+ "version": "0.1.0",
90
+ "dependencies": {
91
+ "agentlang": "*"${baseAppDirName ? `,\n "${baseAppDirName}": "*"` : ''}
92
+ }
93
+ }
94
+ \`\`\`
95
+
96
+ Rules:
97
+ - The \`name\` field must be kebab-case (e.g. "lead-router")
98
+ - Always include \`"agentlang": "*"\` as a dependency
99
+ - Do NOT include \`@anthropic-ai/sdk\` — it is provided by the agentlang runtime${baseAppDirName ? `\n- Always include \`"${baseAppDirName}": "*"\` — this app depends on the baseline data model` : ''}
100
+
101
+ If resolver files are provided in the context, include them as additional --- FILE: <path> --- sections.`;
102
+ }
103
+ //# sourceMappingURL=assembly.prompt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assembly.prompt.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/prompts/assembly.prompt.ts"],"names":[],"mappings":";;AAEA,8DAqGC;AAvGD,oDAA2E;AAE3E,SAAgB,yBAAyB,CACvC,WAAmB,EACnB,cAAuB;IAEvB,MAAM,OAAO,GAAG,IAAA,8BAAiB,EAAC,WAAW,CAAC,CAAC;IAE/C,OAAO;;;;;;qJAM4I,OAAO;;;;;;;0DAOlG,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAkCxC,WAAW,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,YAAY,EAAE,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAkChE,IAAA,8BAAiB,EAAC,OAAO,CAAC;;;sBAGjB,cAAc,CAAC,CAAC,CAAC,WAAW,cAAc,QAAQ,CAAC,CAAC,CAAC,EAAE;;;;;;;;kFAQK,cAAc,CAAC,CAAC,CAAC,yBAAyB,cAAc,wDAAwD,CAAC,CAAC,CAAC,EAAE;;yGAE9F,CAAC;AAC1G,CAAC"}
@@ -0,0 +1,2 @@
1
+ import { PlanStepKind } from '../types/autonomous.types';
2
+ export declare function buildCodeGenSystemPrompt(kind: PlanStepKind, stepDescription: string, previousCode: string, kbContent: string, projectName: string, resolverContext?: string, baselineDataModel?: string): string;
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.buildCodeGenSystemPrompt = buildCodeGenSystemPrompt;
4
+ const examples_provider_1 = require("./examples-provider");
5
+ const step6_data_model_1 = require("../instructions/step6-data-model");
6
+ const step7_workflows_1 = require("../instructions/step7-workflows");
7
+ const step8_agents_1 = require("../instructions/step8-agents");
8
+ const text_utils_1 = require("../utils/text-utils");
9
+ function extractSyntaxReference(instructions, fromHeading) {
10
+ const idx = instructions.indexOf(fromHeading);
11
+ if (idx === -1)
12
+ return '';
13
+ return instructions
14
+ .slice(idx)
15
+ .replace(/<file>\??[^<]*<\/file>/g, '')
16
+ .trim();
17
+ }
18
+ const DATA_MODEL_SYNTAX = extractSyntaxReference(step6_data_model_1.step6DataModelInstructions, '## Agentlang Data Model Syntax');
19
+ const WORKFLOW_SYNTAX = extractSyntaxReference(step7_workflows_1.step7WorkflowsInstructions, '## Agentlang Event Syntax');
20
+ const AGENT_SYNTAX = extractSyntaxReference(step8_agents_1.step8AgentsInstructions, '## Agentlang Agent Syntax');
21
+ const SYNTAX_MAP = {
22
+ 'data-model': DATA_MODEL_SYNTAX,
23
+ workflows: WORKFLOW_SYNTAX,
24
+ agents: AGENT_SYNTAX,
25
+ };
26
+ function buildCodeGenSystemPrompt(kind, stepDescription, previousCode, kbContent, projectName, resolverContext, baselineDataModel) {
27
+ const syntaxRef = SYNTAX_MAP[kind] ?? '';
28
+ const examples = (0, examples_provider_1.getBuiltInExamplesSection)();
29
+ const appName = (0, text_utils_1.kebabToPascalCase)(projectName);
30
+ const moduleName = `${appName}.core`;
31
+ const parts = [
32
+ `You are an Agentlang developer generating ${kind} code for an application.`,
33
+ '',
34
+ `## Module Naming`,
35
+ '',
36
+ `Your module MUST be declared as: \`module ${moduleName}\``,
37
+ `The convention is \`module <AppName>.<file_name>\` where the file is src/core.al. Do NOT use "DataModel", "Core", or any other suffix — the module name must match the filename (core).`,
38
+ '',
39
+ '## Task',
40
+ '',
41
+ stepDescription,
42
+ '',
43
+ '## Application Specification (from Knowledge Base)',
44
+ '',
45
+ kbContent,
46
+ '',
47
+ ];
48
+ if (baselineDataModel) {
49
+ const baselineModuleName = (0, text_utils_1.extractModuleName)(baselineDataModel);
50
+ const baselineEntityNames = (0, text_utils_1.extractEntityNames)(baselineDataModel);
51
+ const entityList = baselineEntityNames.length > 0
52
+ ? baselineEntityNames.join(', ')
53
+ : '(see code below)';
54
+ const qualifiedExamples = baselineModuleName && baselineEntityNames.length > 0
55
+ ? baselineEntityNames
56
+ .map((e) => `\`${baselineModuleName}/${e}\``)
57
+ .join(', ')
58
+ : 'e.g. `BaselineModule/EntityName`';
59
+ parts.push('## Baseline Data Model (Shared Entities) — DO NOT COPY', '', `A separate baseline module provides these shared entities: ${entityList}`, '', `**CRITICAL RULES:**`, `- Do NOT redefine, copy, or re-declare ANY of these entities: ${entityList}`, `- Do NOT use the baseline module name (\`${baselineModuleName ?? 'baseline module'}\`) as your module name — your module MUST have its own unique name`, `- Reference baseline entities using fully-qualified names: ${qualifiedExamples}`, `- Use \`@ref()\` with fully-qualified names for relationships, e.g. \`leadId @ref(${baselineModuleName ?? 'Baseline'}/${baselineEntityNames[0] ?? 'Entity'})\``, `- You MAY define your own local entities specific to this sub-app`, '', 'Baseline code (for reference only — do NOT include any of this in your output):', '', '```agentlang', baselineDataModel, '```', '');
60
+ }
61
+ if (previousCode) {
62
+ parts.push('## Previously Generated Code', '', 'The following code has already been generated and validated. Build on it — do NOT redefine entities, events, workflows, or agents that already exist below.', '', '```agentlang', previousCode, '```', '');
63
+ }
64
+ if (resolverContext) {
65
+ parts.push('## Resolver Context', '', resolverContext, '', 'If resolver metadata is shown above:', '- Do NOT redefine resolver entities (they exist in the resolver module)', '- Do NOT write `resolver` blocks', '- You MAY reference resolver entities using fully-qualified names (e.g. `Resolvers.Petstore/Pet`)', '');
66
+ }
67
+ if (syntaxRef) {
68
+ parts.push(syntaxRef, '');
69
+ }
70
+ if (examples) {
71
+ parts.push(examples, '');
72
+ }
73
+ parts.push('## CRITICAL: Output Requirements', '', 'Your response must contain ONLY valid agentlang code. Do not include any explanatory text, markdown formatting, or code fences.', 'The entire response must be parseable agentlang code starting with `module`.', '', 'Your output is validated by the agentlang parser. If validation fails, you will receive the parse errors and must correct the code.', '', kind === 'data-model'
74
+ ? baselineDataModel
75
+ ? 'Output ONLY your own module declaration and your own LOCAL entity and relationship definitions. Do NOT include any entity from the baseline — those already exist in a separate file.'
76
+ : 'Output the complete module with all entity and relationship definitions.'
77
+ : 'Output ONLY the module declaration line and the new definitions. Do NOT repeat entities, relationships, events, workflows, or agents from the previously generated code — those will be merged automatically.');
78
+ return parts.join('\n');
79
+ }
80
+ //# sourceMappingURL=codegen.prompt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codegen.prompt.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/prompts/codegen.prompt.ts"],"names":[],"mappings":";;AA0CA,4DAuHC;AAhKD,2DAAgE;AAChE,uEAA8E;AAC9E,qEAA6E;AAC7E,+DAAuE;AACvE,oDAI6B;AAE7B,SAAS,sBAAsB,CAC7B,YAAoB,EACpB,WAAmB;IAEnB,MAAM,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IAC9C,IAAI,GAAG,KAAK,CAAC,CAAC;QAAE,OAAO,EAAE,CAAC;IAC1B,OAAO,YAAY;SAChB,KAAK,CAAC,GAAG,CAAC;SACV,OAAO,CAAC,yBAAyB,EAAE,EAAE,CAAC;SACtC,IAAI,EAAE,CAAC;AACZ,CAAC;AAED,MAAM,iBAAiB,GAAG,sBAAsB,CAC9C,6CAA0B,EAC1B,gCAAgC,CACjC,CAAC;AACF,MAAM,eAAe,GAAG,sBAAsB,CAC5C,4CAA0B,EAC1B,2BAA2B,CAC5B,CAAC;AACF,MAAM,YAAY,GAAG,sBAAsB,CACzC,sCAAuB,EACvB,2BAA2B,CAC5B,CAAC;AAEF,MAAM,UAAU,GAA2B;IACzC,YAAY,EAAE,iBAAiB;IAC/B,SAAS,EAAE,eAAe;IAC1B,MAAM,EAAE,YAAY;CACrB,CAAC;AAEF,SAAgB,wBAAwB,CACtC,IAAkB,EAClB,eAAuB,EACvB,YAAoB,EACpB,SAAiB,EACjB,WAAmB,EACnB,eAAwB,EACxB,iBAA0B;IAE1B,MAAM,SAAS,GAAG,UAAU,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;IACzC,MAAM,QAAQ,GAAG,IAAA,6CAAyB,GAAE,CAAC;IAC7C,MAAM,OAAO,GAAG,IAAA,8BAAiB,EAAC,WAAW,CAAC,CAAC;IAC/C,MAAM,UAAU,GAAG,GAAG,OAAO,OAAO,CAAC;IAErC,MAAM,KAAK,GAAa;QACtB,6CAA6C,IAAI,2BAA2B;QAC5E,EAAE;QACF,kBAAkB;QAClB,EAAE;QACF,6CAA6C,UAAU,IAAI;QAC3D,yLAAyL;QACzL,EAAE;QACF,SAAS;QACT,EAAE;QACF,eAAe;QACf,EAAE;QACF,oDAAoD;QACpD,EAAE;QACF,SAAS;QACT,EAAE;KACH,CAAC;IAEF,IAAI,iBAAiB,EAAE,CAAC;QACtB,MAAM,kBAAkB,GAAG,IAAA,8BAAiB,EAAC,iBAAiB,CAAC,CAAC;QAChE,MAAM,mBAAmB,GAAG,IAAA,+BAAkB,EAAC,iBAAiB,CAAC,CAAC;QAClE,MAAM,UAAU,GACd,mBAAmB,CAAC,MAAM,GAAG,CAAC;YAC5B,CAAC,CAAC,mBAAmB,CAAC,IAAI,CAAC,IAAI,CAAC;YAChC,CAAC,CAAC,kBAAkB,CAAC;QAEzB,MAAM,iBAAiB,GACrB,kBAAkB,IAAI,mBAAmB,CAAC,MAAM,GAAG,CAAC;YAClD,CAAC,CAAC,mBAAmB;iBAChB,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,kBAAkB,IAAI,CAAC,IAAI,CAAC;iBAC5C,IAAI,CAAC,IAAI,CAAC;YACf,CAAC,CAAC,kCAAkC,CAAC;QAEzC,KAAK,CAAC,IAAI,CACR,wDAAwD,EACxD,EAAE,EACF,8DAA8D,UAAU,EAAE,EAC1E,EAAE,EACF,qBAAqB,EACrB,iEAAiE,UAAU,EAAE,EAC7E,4CAA4C,kBAAkB,IAAI,iBAAiB,qEAAqE,EACxJ,8DAA8D,iBAAiB,EAAE,EACjF,qFAAqF,kBAAkB,IAAI,UAAU,IAAI,mBAAmB,CAAC,CAAC,CAAC,IAAI,QAAQ,KAAK,EAChK,mEAAmE,EACnE,EAAE,EACF,iFAAiF,EACjF,EAAE,EACF,cAAc,EACd,iBAAiB,EACjB,KAAK,EACL,EAAE,CACH,CAAC;IACJ,CAAC;IAED,IAAI,YAAY,EAAE,CAAC;QACjB,KAAK,CAAC,IAAI,CACR,8BAA8B,EAC9B,EAAE,EACF,6JAA6J,EAC7J,EAAE,EACF,cAAc,EACd,YAAY,EACZ,KAAK,EACL,EAAE,CACH,CAAC;IACJ,CAAC;IAED,IAAI,eAAe,EAAE,CAAC;QACpB,KAAK,CAAC,IAAI,CACR,qBAAqB,EACrB,EAAE,EACF,eAAe,EACf,EAAE,EACF,sCAAsC,EACtC,yEAAyE,EACzE,kCAAkC,EAClC,mGAAmG,EACnG,EAAE,CACH,CAAC;IACJ,CAAC;IAED,IAAI,SAAS,EAAE,CAAC;QACd,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;IAC5B,CAAC;IAED,IAAI,QAAQ,EAAE,CAAC;QACb,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC3B,CAAC;IAED,KAAK,CAAC,IAAI,CACR,kCAAkC,EAClC,EAAE,EACF,iIAAiI,EACjI,8EAA8E,EAC9E,EAAE,EACF,qIAAqI,EACrI,EAAE,EACF,IAAI,KAAK,YAAY;QACnB,CAAC,CAAC,iBAAiB;YACjB,CAAC,CAAC,uLAAuL;YACzL,CAAC,CAAC,0EAA0E;QAC9E,CAAC,CAAC,+MAA+M,CACpN,CAAC;IAEF,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC"}
@@ -0,0 +1 @@
1
+ export declare const DECOMPOSITION_SYSTEM_PROMPT = "You are an application architect. Given a knowledge base describing an application, decompose it into:\n\n1. A **baseline data model** \u2014 the shared entity definitions used across the entire application (entities, attributes, relationships only \u2014 no workflows, no agents, no business logic)\n2. A list of **sub-apps** \u2014 independent functional areas that each become a complete application with their own workflows and agents\n\n## Rules\n\n- The baseline data model should contain ALL entities that are shared across sub-apps or that represent core domain concepts. Be comprehensive \u2014 it is better to include too many entities than too few.\n- Each sub-app should be a coherent functional area (e.g. \"adoption-management\", \"inventory-tracking\", \"reporting\").\n- Sub-apps will each get a copy of the baseline data model and should reference those entities rather than redefining them. Each sub-app may also define its own local entities specific to its domain.\n- Use PascalCase for sub-app names (e.g. \"AdoptionManager\", \"InventoryTracker\"). Choose concise, descriptive names \u2014 do NOT prefix with the project name.\n- The sub-app description should be detailed enough that a developer can build the sub-app from it \u2014 include the specific workflows, agents, and business rules relevant to that sub-app.\n- Aim for 2-5 sub-apps. Don't over-decompose \u2014 each sub-app should have meaningful functionality.\n\n## Output format\n\nRespond with ONLY a JSON object (no markdown fences, no explanatory text):\n\n{\n \"projectName\": \"pet-store\",\n \"baselineDescription\": \"Generate entity definitions for the entire pet-store application: Pet (id, name, species, breed, age, status with values available/adopted/pending), Owner (id, name, email, phone, address), Adoption (id, petId referencing Pet, ownerId referencing Owner, applicationDate, status with values pending/approved/rejected, notes), ...\",\n \"subApps\": [\n {\n \"name\": \"AdoptionManager\",\n \"description\": \"Handles the pet adoption workflow. Adopters browse available pets and submit adoption applications. Staff review applications, check eligibility, and approve or reject them. When approved, the pet status changes to adopted and is linked to the owner. Includes: adoption application workflow, eligibility checking, approval/rejection process, adoption history tracking.\"\n },\n {\n \"name\": \"InventoryTracker\",\n \"description\": \"Manages the pet store inventory and supplies. Track food, medicine, toys, and other supplies. Generate low-stock alerts. Record purchases and usage. Includes: inventory CRUD, stock level monitoring, reorder alerts, purchase recording.\"\n }\n ]\n}";
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DECOMPOSITION_SYSTEM_PROMPT = void 0;
4
+ exports.DECOMPOSITION_SYSTEM_PROMPT = `You are an application architect. Given a knowledge base describing an application, decompose it into:
5
+
6
+ 1. A **baseline data model** — the shared entity definitions used across the entire application (entities, attributes, relationships only — no workflows, no agents, no business logic)
7
+ 2. A list of **sub-apps** — independent functional areas that each become a complete application with their own workflows and agents
8
+
9
+ ## Rules
10
+
11
+ - The baseline data model should contain ALL entities that are shared across sub-apps or that represent core domain concepts. Be comprehensive — it is better to include too many entities than too few.
12
+ - Each sub-app should be a coherent functional area (e.g. "adoption-management", "inventory-tracking", "reporting").
13
+ - Sub-apps will each get a copy of the baseline data model and should reference those entities rather than redefining them. Each sub-app may also define its own local entities specific to its domain.
14
+ - Use PascalCase for sub-app names (e.g. "AdoptionManager", "InventoryTracker"). Choose concise, descriptive names — do NOT prefix with the project name.
15
+ - The sub-app description should be detailed enough that a developer can build the sub-app from it — include the specific workflows, agents, and business rules relevant to that sub-app.
16
+ - Aim for 2-5 sub-apps. Don't over-decompose — each sub-app should have meaningful functionality.
17
+
18
+ ## Output format
19
+
20
+ Respond with ONLY a JSON object (no markdown fences, no explanatory text):
21
+
22
+ {
23
+ "projectName": "pet-store",
24
+ "baselineDescription": "Generate entity definitions for the entire pet-store application: Pet (id, name, species, breed, age, status with values available/adopted/pending), Owner (id, name, email, phone, address), Adoption (id, petId referencing Pet, ownerId referencing Owner, applicationDate, status with values pending/approved/rejected, notes), ...",
25
+ "subApps": [
26
+ {
27
+ "name": "AdoptionManager",
28
+ "description": "Handles the pet adoption workflow. Adopters browse available pets and submit adoption applications. Staff review applications, check eligibility, and approve or reject them. When approved, the pet status changes to adopted and is linked to the owner. Includes: adoption application workflow, eligibility checking, approval/rejection process, adoption history tracking."
29
+ },
30
+ {
31
+ "name": "InventoryTracker",
32
+ "description": "Manages the pet store inventory and supplies. Track food, medicine, toys, and other supplies. Generate low-stock alerts. Record purchases and usage. Includes: inventory CRUD, stock level monitoring, reorder alerts, purchase recording."
33
+ }
34
+ ]
35
+ }`;
36
+ //# sourceMappingURL=decomposition.prompt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decomposition.prompt.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/prompts/decomposition.prompt.ts"],"names":[],"mappings":";;;AAAa,QAAA,2BAA2B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+BzC,CAAC"}
@@ -0,0 +1,6 @@
1
+ export interface BuiltInExample {
2
+ filename: string;
3
+ title: string;
4
+ content: string;
5
+ }
6
+ export declare function getBuiltInExamplesSection(): string;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getBuiltInExamplesSection = getBuiltInExamplesSection;
7
+ const node_fs_1 = __importDefault(require("node:fs"));
8
+ const node_path_1 = __importDefault(require("node:path"));
9
+ const EXAMPLES_DIR = node_path_1.default.resolve(__dirname, '..', '..', 'docs', 'examples');
10
+ let cachedExamples = null;
11
+ function loadExamples() {
12
+ if (cachedExamples)
13
+ return cachedExamples;
14
+ cachedExamples = [];
15
+ let files;
16
+ try {
17
+ files = node_fs_1.default.readdirSync(EXAMPLES_DIR);
18
+ }
19
+ catch {
20
+ return cachedExamples;
21
+ }
22
+ for (const file of files) {
23
+ if (!file.endsWith('.al'))
24
+ continue;
25
+ const filePath = node_path_1.default.join(EXAMPLES_DIR, file);
26
+ try {
27
+ const content = node_fs_1.default.readFileSync(filePath, 'utf-8');
28
+ const firstLine = content.split('\n')[0] ?? '';
29
+ const title = firstLine.replace(/^\/\/\s*/, '').trim() || file;
30
+ cachedExamples.push({ filename: file, title, content });
31
+ }
32
+ catch {
33
+ }
34
+ }
35
+ return cachedExamples;
36
+ }
37
+ function getBuiltInExamplesSection() {
38
+ const examples = loadExamples();
39
+ if (examples.length === 0)
40
+ return '';
41
+ const sections = examples.map((ex) => `### ${ex.title}\n\n\`\`\`agentlang\n${ex.content}\`\`\``);
42
+ return `
43
+
44
+ ## Reference: Built-in Agentlang Examples
45
+
46
+ The following are complete, working Agentlang applications. Study these carefully and follow their patterns when generating code. These examples demonstrate correct syntax for entities, relationships, workflows, events, agents, queries, and more.
47
+
48
+ ${sections.join('\n\n')}`;
49
+ }
50
+ //# sourceMappingURL=examples-provider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"examples-provider.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/prompts/examples-provider.ts"],"names":[],"mappings":";;;;;AA+CA,8DAeC;AA9DD,sDAAyB;AACzB,0DAA6B;AAG7B,MAAM,YAAY,GAAG,mBAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;AAQ7E,IAAI,cAAc,GAA4B,IAAI,CAAC;AAEnD,SAAS,YAAY;IACnB,IAAI,cAAc;QAAE,OAAO,cAAc,CAAC;IAE1C,cAAc,GAAG,EAAE,CAAC;IACpB,IAAI,KAAe,CAAC;IACpB,IAAI,CAAC;QACH,KAAK,GAAG,iBAAE,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;IACvC,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,cAAc,CAAC;IACxB,CAAC;IAED,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,KAAK,CAAC;YAAE,SAAS;QACpC,MAAM,QAAQ,GAAG,mBAAI,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;QAC/C,IAAI,CAAC;YACH,MAAM,OAAO,GAAG,iBAAE,CAAC,YAAY,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;YAEnD,MAAM,SAAS,GAAG,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC;YAC/C,MAAM,KAAK,GAAG,SAAS,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,IAAI,IAAI,CAAC;YAC/D,cAAc,CAAC,IAAI,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,CAAC;QAC1D,CAAC;QAAC,MAAM,CAAC;QAET,CAAC;IACH,CAAC;IAED,OAAO,cAAc,CAAC;AACxB,CAAC;AAOD,SAAgB,yBAAyB;IACvC,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC;QAAE,OAAO,EAAE,CAAC;IAErC,MAAM,QAAQ,GAAG,QAAQ,CAAC,GAAG,CAC3B,CAAC,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC,KAAK,wBAAwB,EAAE,CAAC,OAAO,QAAQ,CAClE,CAAC;IAEF,OAAO;;;;;;EAMP,QAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;AAC1B,CAAC"}
@@ -0,0 +1 @@
1
+ export declare const PLANNING_SYSTEM_PROMPT = "You are an Agentlang application architect. Given a knowledge base describing an application, produce a step-by-step generation plan as a JSON object.\n\n## Available step kinds\n\n- \"data-model\": Generate entity definitions with attributes, relationships, and type annotations\n- \"workflows\": Generate event and workflow definitions for custom business logic\n- \"agents\": Generate AI agent definitions with tools for natural-language interaction\n- \"resolver\": Generate or reference a resolver for external API integration\n- \"assembly\": Combine all generated code into the final deployable application files\n\n## Rules\n\n1. \"data-model\" should be the first code-generation step\n2. \"workflows\" depends on \"data-model\"\n3. \"agents\" depends on \"workflows\" (or \"data-model\" if there are no custom workflows)\n4. \"assembly\" is always the LAST step and depends on all other steps\n5. Only include \"resolver\" steps if the KB explicitly describes how to generate or use a resolver (e.g. an API spec URL, endpoint descriptions, or an existing resolver repo). If the KB has no resolver information, do NOT add resolver steps \u2014 even if you think one might be useful.\n6. For resolver steps with action \"generate\", include specSource (URL or file path to the API spec) and a description. For action \"use-existing\", include existingResolverRepo.\n7. Each step gets a unique id: \"step-1\", \"step-2\", etc.\n8. dependsOn lists the ids of prerequisite steps\n9. The description for each step should be specific and detailed \u2014 describe exactly what entities, workflows, or agents to generate based on the KB content\n\n## Output format\n\nRespond with ONLY a JSON object (no markdown fences, no explanatory text):\n\n{\n \"projectName\": \"AppName\",\n \"summary\": \"One-paragraph overview of the application\",\n \"steps\": [\n {\n \"id\": \"step-1\",\n \"kind\": \"data-model\",\n \"title\": \"Define core entities\",\n \"description\": \"Detailed instructions...\",\n \"dependsOn\": []\n },\n {\n \"id\": \"step-2\",\n \"kind\": \"resolver\",\n \"title\": \"Generate Petstore resolver\",\n \"description\": \"...\",\n \"dependsOn\": [\"step-1\"],\n \"resolver\": {\n \"name\": \"petstore\",\n \"description\": \"Petstore API integration\",\n \"specSource\": \"https://petstore.swagger.io/v2/swagger.json\",\n \"action\": \"generate\"\n }\n }\n ]\n}";
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PLANNING_SYSTEM_PROMPT = void 0;
4
+ exports.PLANNING_SYSTEM_PROMPT = `You are an Agentlang application architect. Given a knowledge base describing an application, produce a step-by-step generation plan as a JSON object.
5
+
6
+ ## Available step kinds
7
+
8
+ - "data-model": Generate entity definitions with attributes, relationships, and type annotations
9
+ - "workflows": Generate event and workflow definitions for custom business logic
10
+ - "agents": Generate AI agent definitions with tools for natural-language interaction
11
+ - "resolver": Generate or reference a resolver for external API integration
12
+ - "assembly": Combine all generated code into the final deployable application files
13
+
14
+ ## Rules
15
+
16
+ 1. "data-model" should be the first code-generation step
17
+ 2. "workflows" depends on "data-model"
18
+ 3. "agents" depends on "workflows" (or "data-model" if there are no custom workflows)
19
+ 4. "assembly" is always the LAST step and depends on all other steps
20
+ 5. Only include "resolver" steps if the KB explicitly describes how to generate or use a resolver (e.g. an API spec URL, endpoint descriptions, or an existing resolver repo). If the KB has no resolver information, do NOT add resolver steps — even if you think one might be useful.
21
+ 6. For resolver steps with action "generate", include specSource (URL or file path to the API spec) and a description. For action "use-existing", include existingResolverRepo.
22
+ 7. Each step gets a unique id: "step-1", "step-2", etc.
23
+ 8. dependsOn lists the ids of prerequisite steps
24
+ 9. The description for each step should be specific and detailed — describe exactly what entities, workflows, or agents to generate based on the KB content
25
+
26
+ ## Output format
27
+
28
+ Respond with ONLY a JSON object (no markdown fences, no explanatory text):
29
+
30
+ {
31
+ "projectName": "AppName",
32
+ "summary": "One-paragraph overview of the application",
33
+ "steps": [
34
+ {
35
+ "id": "step-1",
36
+ "kind": "data-model",
37
+ "title": "Define core entities",
38
+ "description": "Detailed instructions...",
39
+ "dependsOn": []
40
+ },
41
+ {
42
+ "id": "step-2",
43
+ "kind": "resolver",
44
+ "title": "Generate Petstore resolver",
45
+ "description": "...",
46
+ "dependsOn": ["step-1"],
47
+ "resolver": {
48
+ "name": "petstore",
49
+ "description": "Petstore API integration",
50
+ "specSource": "https://petstore.swagger.io/v2/swagger.json",
51
+ "action": "generate"
52
+ }
53
+ }
54
+ ]
55
+ }`;
56
+ //# sourceMappingURL=planning.prompt.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"planning.prompt.js","sourceRoot":"","sources":["../../../../../../../libs/agentcraft/src/prompts/planning.prompt.ts"],"names":[],"mappings":";;;AAAa,QAAA,sBAAsB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmDpC,CAAC"}
@@ -0,0 +1,9 @@
1
+ export declare function buildResolverSystemPrompt(name: string, description: string, specContent: string): string;
2
+ export interface PipelineResolverResult {
3
+ al: string;
4
+ js: string;
5
+ meta: string;
6
+ rawOutput: string;
7
+ }
8
+ export declare function parseResolverOutput(rawOutput: string): PipelineResolverResult | null;
9
+ export declare function buildResolverMeta(alContent: string): string;