@exellix/ai-tasks 7.8.0

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 (524) hide show
  1. package/.env.example +3 -0
  2. package/.metadata/instructions-builders/create-expected-output-instructions.md +195 -0
  3. package/.metadata/readme.md +48 -0
  4. package/.metadata/shared/audit.md +29 -0
  5. package/.metadata/skills/professional-answer +32 -0
  6. package/.metadata/skills/professional-answer.compressed.md +11 -0
  7. package/.metadata/skills/professional-answer.instructions +33 -0
  8. package/.metadata/skills/professional-answer.instructions.md +33 -0
  9. package/.metadata/skills/professional-answer.l2.md +28 -0
  10. package/.metadata/skills/professional-answer.md +32 -0
  11. package/.metadata/skills/professional-answer.prompt +1 -0
  12. package/.metadata/skills/professional-answer.prompt.md +1 -0
  13. package/.metadata/skills/professional-decision.md +26 -0
  14. package/BREAKING-CHANGES.md +43 -0
  15. package/CHANGELOG.md +147 -0
  16. package/README.md +2497 -0
  17. package/RUNTASK_REQUEST.md +369 -0
  18. package/dist/activix/activixClient.d.ts +6 -0
  19. package/dist/activix/activixClient.d.ts.map +1 -0
  20. package/dist/activix/activixClient.js +131 -0
  21. package/dist/activix/activixClient.js.map +1 -0
  22. package/dist/activix/getTaskActivities.d.ts +10 -0
  23. package/dist/activix/getTaskActivities.d.ts.map +1 -0
  24. package/dist/activix/getTaskActivities.js +17 -0
  25. package/dist/activix/getTaskActivities.js.map +1 -0
  26. package/dist/activix/phaseTracking.d.ts +17 -0
  27. package/dist/activix/phaseTracking.d.ts.map +1 -0
  28. package/dist/activix/phaseTracking.js +85 -0
  29. package/dist/activix/phaseTracking.js.map +1 -0
  30. package/dist/aiScoping/index.d.ts +6 -0
  31. package/dist/aiScoping/index.d.ts.map +1 -0
  32. package/dist/aiScoping/index.js +4 -0
  33. package/dist/aiScoping/index.js.map +1 -0
  34. package/dist/aiScoping/runAiScoping.d.ts +36 -0
  35. package/dist/aiScoping/runAiScoping.d.ts.map +1 -0
  36. package/dist/aiScoping/runAiScoping.js +100 -0
  37. package/dist/aiScoping/runAiScoping.js.map +1 -0
  38. package/dist/aiScoping/runScopingCall.d.ts +23 -0
  39. package/dist/aiScoping/runScopingCall.d.ts.map +1 -0
  40. package/dist/aiScoping/runScopingCall.js +50 -0
  41. package/dist/aiScoping/runScopingCall.js.map +1 -0
  42. package/dist/aiScoping/validateAiScoping.d.ts +7 -0
  43. package/dist/aiScoping/validateAiScoping.d.ts.map +1 -0
  44. package/dist/aiScoping/validateAiScoping.js +33 -0
  45. package/dist/aiScoping/validateAiScoping.js.map +1 -0
  46. package/dist/aiSkillsUpstreamExports.d.ts +13 -0
  47. package/dist/aiSkillsUpstreamExports.d.ts.map +1 -0
  48. package/dist/aiSkillsUpstreamExports.js +12 -0
  49. package/dist/aiSkillsUpstreamExports.js.map +1 -0
  50. package/dist/analysis/analyzeRunTaskRequest.d.ts +29 -0
  51. package/dist/analysis/analyzeRunTaskRequest.d.ts.map +1 -0
  52. package/dist/analysis/analyzeRunTaskRequest.js +85 -0
  53. package/dist/analysis/analyzeRunTaskRequest.js.map +1 -0
  54. package/dist/analysis/index.d.ts +3 -0
  55. package/dist/analysis/index.d.ts.map +1 -0
  56. package/dist/analysis/index.js +2 -0
  57. package/dist/analysis/index.js.map +1 -0
  58. package/dist/builders/task-request-builder.d.ts +310 -0
  59. package/dist/builders/task-request-builder.d.ts.map +1 -0
  60. package/dist/builders/task-request-builder.js +581 -0
  61. package/dist/builders/task-request-builder.js.map +1 -0
  62. package/dist/compile/compileTaskConfiguration.d.ts +15 -0
  63. package/dist/compile/compileTaskConfiguration.d.ts.map +1 -0
  64. package/dist/compile/compileTaskConfiguration.js +184 -0
  65. package/dist/compile/compileTaskConfiguration.js.map +1 -0
  66. package/dist/compile/index.d.ts +2 -0
  67. package/dist/compile/index.d.ts.map +1 -0
  68. package/dist/compile/index.js +2 -0
  69. package/dist/compile/index.js.map +1 -0
  70. package/dist/core/task-sdk.d.ts +36 -0
  71. package/dist/core/task-sdk.d.ts.map +1 -0
  72. package/dist/core/task-sdk.js +2432 -0
  73. package/dist/core/task-sdk.js.map +1 -0
  74. package/dist/errors/smartInputValidationError.d.ts +39 -0
  75. package/dist/errors/smartInputValidationError.d.ts.map +1 -0
  76. package/dist/errors/smartInputValidationError.js +97 -0
  77. package/dist/errors/smartInputValidationError.js.map +1 -0
  78. package/dist/errors/taskConfigurationCompileError.d.ts +16 -0
  79. package/dist/errors/taskConfigurationCompileError.d.ts.map +1 -0
  80. package/dist/errors/taskConfigurationCompileError.js +20 -0
  81. package/dist/errors/taskConfigurationCompileError.js.map +1 -0
  82. package/dist/execution-strategies/applyExecutionStrategyOutputs.d.ts +17 -0
  83. package/dist/execution-strategies/applyExecutionStrategyOutputs.d.ts.map +1 -0
  84. package/dist/execution-strategies/applyExecutionStrategyOutputs.js +63 -0
  85. package/dist/execution-strategies/applyExecutionStrategyOutputs.js.map +1 -0
  86. package/dist/execution-strategies/constants.d.ts +14 -0
  87. package/dist/execution-strategies/constants.d.ts.map +1 -0
  88. package/dist/execution-strategies/constants.js +13 -0
  89. package/dist/execution-strategies/constants.js.map +1 -0
  90. package/dist/execution-strategies/executionStrategyCatalogMetadata.d.ts +9 -0
  91. package/dist/execution-strategies/executionStrategyCatalogMetadata.d.ts.map +1 -0
  92. package/dist/execution-strategies/executionStrategyCatalogMetadata.js +37 -0
  93. package/dist/execution-strategies/executionStrategyCatalogMetadata.js.map +1 -0
  94. package/dist/execution-strategies/genericExecutionFuncxEnvelope.d.ts +94 -0
  95. package/dist/execution-strategies/genericExecutionFuncxEnvelope.d.ts.map +1 -0
  96. package/dist/execution-strategies/genericExecutionFuncxEnvelope.js +306 -0
  97. package/dist/execution-strategies/genericExecutionFuncxEnvelope.js.map +1 -0
  98. package/dist/execution-strategies/resolveExecutionStrategies.d.ts +14 -0
  99. package/dist/execution-strategies/resolveExecutionStrategies.d.ts.map +1 -0
  100. package/dist/execution-strategies/resolveExecutionStrategies.js +108 -0
  101. package/dist/execution-strategies/resolveExecutionStrategies.js.map +1 -0
  102. package/dist/execution-strategies/runFuncxExecutionStrategy.d.ts +37 -0
  103. package/dist/execution-strategies/runFuncxExecutionStrategy.d.ts.map +1 -0
  104. package/dist/execution-strategies/runFuncxExecutionStrategy.js +72 -0
  105. package/dist/execution-strategies/runFuncxExecutionStrategy.js.map +1 -0
  106. package/dist/index.d.ts +99 -0
  107. package/dist/index.d.ts.map +1 -0
  108. package/dist/index.js +106 -0
  109. package/dist/index.js.map +1 -0
  110. package/dist/internal/resolveLlmCallForXynthesis.d.ts +52 -0
  111. package/dist/internal/resolveLlmCallForXynthesis.d.ts.map +1 -0
  112. package/dist/internal/resolveLlmCallForXynthesis.js +81 -0
  113. package/dist/internal/resolveLlmCallForXynthesis.js.map +1 -0
  114. package/dist/internal/resolveRunTaskRuntimeKnobs.d.ts +19 -0
  115. package/dist/internal/resolveRunTaskRuntimeKnobs.d.ts.map +1 -0
  116. package/dist/internal/resolveRunTaskRuntimeKnobs.js +52 -0
  117. package/dist/internal/resolveRunTaskRuntimeKnobs.js.map +1 -0
  118. package/dist/internal/runPostStepLlmCall.d.ts +52 -0
  119. package/dist/internal/runPostStepLlmCall.d.ts.map +1 -0
  120. package/dist/internal/runPostStepLlmCall.js +170 -0
  121. package/dist/internal/runPostStepLlmCall.js.map +1 -0
  122. package/dist/localTasks/collectEvidence.d.ts +3 -0
  123. package/dist/localTasks/collectEvidence.d.ts.map +1 -0
  124. package/dist/localTasks/collectEvidence.js +364 -0
  125. package/dist/localTasks/collectEvidence.js.map +1 -0
  126. package/dist/localTasks/decideWebScope.d.ts +3 -0
  127. package/dist/localTasks/decideWebScope.d.ts.map +1 -0
  128. package/dist/localTasks/decideWebScope.js +56 -0
  129. package/dist/localTasks/decideWebScope.js.map +1 -0
  130. package/dist/localTasks/index.d.ts +5 -0
  131. package/dist/localTasks/index.d.ts.map +1 -0
  132. package/dist/localTasks/index.js +19 -0
  133. package/dist/localTasks/index.js.map +1 -0
  134. package/dist/localTasks/narrixAssetPlayground.d.ts +13 -0
  135. package/dist/localTasks/narrixAssetPlayground.d.ts.map +1 -0
  136. package/dist/localTasks/narrixAssetPlayground.js +161 -0
  137. package/dist/localTasks/narrixAssetPlayground.js.map +1 -0
  138. package/dist/localTasks/narrixSubnetPlayground.d.ts +14 -0
  139. package/dist/localTasks/narrixSubnetPlayground.d.ts.map +1 -0
  140. package/dist/localTasks/narrixSubnetPlayground.js +168 -0
  141. package/dist/localTasks/narrixSubnetPlayground.js.map +1 -0
  142. package/dist/localTasks/narrixVulnGroupPlayground.d.ts +13 -0
  143. package/dist/localTasks/narrixVulnGroupPlayground.d.ts.map +1 -0
  144. package/dist/localTasks/narrixVulnGroupPlayground.js +161 -0
  145. package/dist/localTasks/narrixVulnGroupPlayground.js.map +1 -0
  146. package/dist/localTasks/narrixVulnInstancePlayground.d.ts +13 -0
  147. package/dist/localTasks/narrixVulnInstancePlayground.d.ts.map +1 -0
  148. package/dist/localTasks/narrixVulnInstancePlayground.js +165 -0
  149. package/dist/localTasks/narrixVulnInstancePlayground.js.map +1 -0
  150. package/dist/localTasks/nodeCallExport.d.ts +6 -0
  151. package/dist/localTasks/nodeCallExport.d.ts.map +1 -0
  152. package/dist/localTasks/nodeCallExport.js +99 -0
  153. package/dist/localTasks/nodeCallExport.js.map +1 -0
  154. package/dist/localTasks/nodeCallExportBatch.d.ts +3 -0
  155. package/dist/localTasks/nodeCallExportBatch.d.ts.map +1 -0
  156. package/dist/localTasks/nodeCallExportBatch.js +52 -0
  157. package/dist/localTasks/nodeCallExportBatch.js.map +1 -0
  158. package/dist/localTasks/normalizeNarrixResult.d.ts +3 -0
  159. package/dist/localTasks/normalizeNarrixResult.d.ts.map +1 -0
  160. package/dist/localTasks/normalizeNarrixResult.js +106 -0
  161. package/dist/localTasks/normalizeNarrixResult.js.map +1 -0
  162. package/dist/localTasks/registry.d.ts +4 -0
  163. package/dist/localTasks/registry.d.ts.map +1 -0
  164. package/dist/localTasks/registry.js +8 -0
  165. package/dist/localTasks/registry.js.map +1 -0
  166. package/dist/localTasks/types.d.ts +28 -0
  167. package/dist/localTasks/types.d.ts.map +1 -0
  168. package/dist/localTasks/types.js +2 -0
  169. package/dist/localTasks/types.js.map +1 -0
  170. package/dist/localTasks/validateInput.d.ts +3 -0
  171. package/dist/localTasks/validateInput.d.ts.map +1 -0
  172. package/dist/localTasks/validateInput.js +66 -0
  173. package/dist/localTasks/validateInput.js.map +1 -0
  174. package/dist/methods/convenience-methods.d.ts +45 -0
  175. package/dist/methods/convenience-methods.d.ts.map +1 -0
  176. package/dist/methods/convenience-methods.js +39 -0
  177. package/dist/methods/convenience-methods.js.map +1 -0
  178. package/dist/narrix/applyNarrixScope.d.ts +10 -0
  179. package/dist/narrix/applyNarrixScope.d.ts.map +1 -0
  180. package/dist/narrix/applyNarrixScope.js +69 -0
  181. package/dist/narrix/applyNarrixScope.js.map +1 -0
  182. package/dist/narrix/buildNarrixAttachment.d.ts +9 -0
  183. package/dist/narrix/buildNarrixAttachment.d.ts.map +1 -0
  184. package/dist/narrix/buildNarrixAttachment.js +29 -0
  185. package/dist/narrix/buildNarrixAttachment.js.map +1 -0
  186. package/dist/narrix/buildWebScopeScopeInput.d.ts +39 -0
  187. package/dist/narrix/buildWebScopeScopeInput.d.ts.map +1 -0
  188. package/dist/narrix/buildWebScopeScopeInput.js +193 -0
  189. package/dist/narrix/buildWebScopeScopeInput.js.map +1 -0
  190. package/dist/narrix/flags.d.ts +4 -0
  191. package/dist/narrix/flags.d.ts.map +1 -0
  192. package/dist/narrix/flags.js +4 -0
  193. package/dist/narrix/flags.js.map +1 -0
  194. package/dist/narrix/index.d.ts +11 -0
  195. package/dist/narrix/index.d.ts.map +1 -0
  196. package/dist/narrix/index.js +14 -0
  197. package/dist/narrix/index.js.map +1 -0
  198. package/dist/narrix/narrixClient.d.ts +9 -0
  199. package/dist/narrix/narrixClient.d.ts.map +1 -0
  200. package/dist/narrix/narrixClient.js +46 -0
  201. package/dist/narrix/narrixClient.js.map +1 -0
  202. package/dist/narrix/narrixContextMarkdown.d.ts +15 -0
  203. package/dist/narrix/narrixContextMarkdown.d.ts.map +1 -0
  204. package/dist/narrix/narrixContextMarkdown.js +98 -0
  205. package/dist/narrix/narrixContextMarkdown.js.map +1 -0
  206. package/dist/narrix/narrixRunnerModule.d.ts +11 -0
  207. package/dist/narrix/narrixRunnerModule.d.ts.map +1 -0
  208. package/dist/narrix/narrixRunnerModule.js +17 -0
  209. package/dist/narrix/narrixRunnerModule.js.map +1 -0
  210. package/dist/narrix/runNarrixForChat.d.ts +3 -0
  211. package/dist/narrix/runNarrixForChat.d.ts.map +1 -0
  212. package/dist/narrix/runNarrixForChat.js +51 -0
  213. package/dist/narrix/runNarrixForChat.js.map +1 -0
  214. package/dist/narrix/runNarrixForDocs.d.ts +3 -0
  215. package/dist/narrix/runNarrixForDocs.d.ts.map +1 -0
  216. package/dist/narrix/runNarrixForDocs.js +50 -0
  217. package/dist/narrix/runNarrixForDocs.js.map +1 -0
  218. package/dist/narrix/runNarrixForRecord.d.ts +3 -0
  219. package/dist/narrix/runNarrixForRecord.d.ts.map +1 -0
  220. package/dist/narrix/runNarrixForRecord.js +47 -0
  221. package/dist/narrix/runNarrixForRecord.js.map +1 -0
  222. package/dist/narrix/runNarrixForText.d.ts +3 -0
  223. package/dist/narrix/runNarrixForText.d.ts.map +1 -0
  224. package/dist/narrix/runNarrixForText.js +49 -0
  225. package/dist/narrix/runNarrixForText.js.map +1 -0
  226. package/dist/narrix/runnerDispatch.d.ts +12 -0
  227. package/dist/narrix/runnerDispatch.d.ts.map +1 -0
  228. package/dist/narrix/runnerDispatch.js +19 -0
  229. package/dist/narrix/runnerDispatch.js.map +1 -0
  230. package/dist/narrix/seedBundleRouting.d.ts +15 -0
  231. package/dist/narrix/seedBundleRouting.d.ts.map +1 -0
  232. package/dist/narrix/seedBundleRouting.js +46 -0
  233. package/dist/narrix/seedBundleRouting.js.map +1 -0
  234. package/dist/narrix/task.d.ts +4 -0
  235. package/dist/narrix/task.d.ts.map +1 -0
  236. package/dist/narrix/task.js +143 -0
  237. package/dist/narrix/task.js.map +1 -0
  238. package/dist/narrix/types.d.ts +104 -0
  239. package/dist/narrix/types.d.ts.map +1 -0
  240. package/dist/narrix/types.js +3 -0
  241. package/dist/narrix/types.js.map +1 -0
  242. package/dist/narrix/webContextMarkdown.d.ts +54 -0
  243. package/dist/narrix/webContextMarkdown.d.ts.map +1 -0
  244. package/dist/narrix/webContextMarkdown.js +206 -0
  245. package/dist/narrix/webContextMarkdown.js.map +1 -0
  246. package/dist/narrix/webScoper.d.ts +43 -0
  247. package/dist/narrix/webScoper.d.ts.map +1 -0
  248. package/dist/narrix/webScoper.js +144 -0
  249. package/dist/narrix/webScoper.js.map +1 -0
  250. package/dist/observability/debugTrace.d.ts +31 -0
  251. package/dist/observability/debugTrace.d.ts.map +1 -0
  252. package/dist/observability/debugTrace.js +117 -0
  253. package/dist/observability/debugTrace.js.map +1 -0
  254. package/dist/observability/extractAiTasksObservability.d.ts +7 -0
  255. package/dist/observability/extractAiTasksObservability.d.ts.map +1 -0
  256. package/dist/observability/extractAiTasksObservability.js +98 -0
  257. package/dist/observability/extractAiTasksObservability.js.map +1 -0
  258. package/dist/observability/graphExecutionRunLogContract.d.ts +19 -0
  259. package/dist/observability/graphExecutionRunLogContract.d.ts.map +1 -0
  260. package/dist/observability/graphExecutionRunLogContract.js +11 -0
  261. package/dist/observability/graphExecutionRunLogContract.js.map +1 -0
  262. package/dist/packaged-tasks-client.d.ts +66 -0
  263. package/dist/packaged-tasks-client.d.ts.map +1 -0
  264. package/dist/packaged-tasks-client.js +100 -0
  265. package/dist/packaged-tasks-client.js.map +1 -0
  266. package/dist/planWebScopeQuestions/index.d.ts +78 -0
  267. package/dist/planWebScopeQuestions/index.d.ts.map +1 -0
  268. package/dist/planWebScopeQuestions/index.js +282 -0
  269. package/dist/planWebScopeQuestions/index.js.map +1 -0
  270. package/dist/planWebScopeQuestions/runResearchPlanQuestionsFuncx.d.ts +18 -0
  271. package/dist/planWebScopeQuestions/runResearchPlanQuestionsFuncx.d.ts.map +1 -0
  272. package/dist/planWebScopeQuestions/runResearchPlanQuestionsFuncx.js +42 -0
  273. package/dist/planWebScopeQuestions/runResearchPlanQuestionsFuncx.js.map +1 -0
  274. package/dist/post-steps/audit/loadAuditTemplates.d.ts +72 -0
  275. package/dist/post-steps/audit/loadAuditTemplates.d.ts.map +1 -0
  276. package/dist/post-steps/audit/loadAuditTemplates.js +62 -0
  277. package/dist/post-steps/audit/loadAuditTemplates.js.map +1 -0
  278. package/dist/post-steps/audit/parseAuditOutput.d.ts +11 -0
  279. package/dist/post-steps/audit/parseAuditOutput.d.ts.map +1 -0
  280. package/dist/post-steps/audit/parseAuditOutput.js +50 -0
  281. package/dist/post-steps/audit/parseAuditOutput.js.map +1 -0
  282. package/dist/post-steps/audit/runAudit.d.ts +22 -0
  283. package/dist/post-steps/audit/runAudit.d.ts.map +1 -0
  284. package/dist/post-steps/audit/runAudit.js +406 -0
  285. package/dist/post-steps/audit/runAudit.js.map +1 -0
  286. package/dist/post-steps/audit/runAuditCall.d.ts +23 -0
  287. package/dist/post-steps/audit/runAuditCall.d.ts.map +1 -0
  288. package/dist/post-steps/audit/runAuditCall.js +32 -0
  289. package/dist/post-steps/audit/runAuditCall.js.map +1 -0
  290. package/dist/post-steps/polish/loadPolishTemplates.d.ts +35 -0
  291. package/dist/post-steps/polish/loadPolishTemplates.d.ts.map +1 -0
  292. package/dist/post-steps/polish/loadPolishTemplates.js +38 -0
  293. package/dist/post-steps/polish/loadPolishTemplates.js.map +1 -0
  294. package/dist/post-steps/polish/parsePolishOutput.d.ts +6 -0
  295. package/dist/post-steps/polish/parsePolishOutput.d.ts.map +1 -0
  296. package/dist/post-steps/polish/parsePolishOutput.js +47 -0
  297. package/dist/post-steps/polish/parsePolishOutput.js.map +1 -0
  298. package/dist/post-steps/polish/runPolish.d.ts +24 -0
  299. package/dist/post-steps/polish/runPolish.d.ts.map +1 -0
  300. package/dist/post-steps/polish/runPolish.js +147 -0
  301. package/dist/post-steps/polish/runPolish.js.map +1 -0
  302. package/dist/post-steps/polish/runPolishCall.d.ts +22 -0
  303. package/dist/post-steps/polish/runPolishCall.d.ts.map +1 -0
  304. package/dist/post-steps/polish/runPolishCall.js +32 -0
  305. package/dist/post-steps/polish/runPolishCall.js.map +1 -0
  306. package/dist/post-steps/resolvePostStepConfig.d.ts +58 -0
  307. package/dist/post-steps/resolvePostStepConfig.d.ts.map +1 -0
  308. package/dist/post-steps/resolvePostStepConfig.js +105 -0
  309. package/dist/post-steps/resolvePostStepConfig.js.map +1 -0
  310. package/dist/rendrixUpstreamExports.d.ts +7 -0
  311. package/dist/rendrixUpstreamExports.d.ts.map +1 -0
  312. package/dist/rendrixUpstreamExports.js +6 -0
  313. package/dist/rendrixUpstreamExports.js.map +1 -0
  314. package/dist/skillCatalogExports.d.ts +8 -0
  315. package/dist/skillCatalogExports.d.ts.map +1 -0
  316. package/dist/skillCatalogExports.js +8 -0
  317. package/dist/skillCatalogExports.js.map +1 -0
  318. package/dist/strategies/direct-execution-strategy.d.ts +31 -0
  319. package/dist/strategies/direct-execution-strategy.d.ts.map +1 -0
  320. package/dist/strategies/direct-execution-strategy.js +107 -0
  321. package/dist/strategies/direct-execution-strategy.js.map +1 -0
  322. package/dist/strategies/execution-strategy.interface.d.ts +31 -0
  323. package/dist/strategies/execution-strategy.interface.d.ts.map +1 -0
  324. package/dist/strategies/execution-strategy.interface.js +2 -0
  325. package/dist/strategies/execution-strategy.interface.js.map +1 -0
  326. package/dist/strategies/index.d.ts +9 -0
  327. package/dist/strategies/index.d.ts.map +1 -0
  328. package/dist/strategies/index.js +8 -0
  329. package/dist/strategies/index.js.map +1 -0
  330. package/dist/strategies/strategy-factory.d.ts +45 -0
  331. package/dist/strategies/strategy-factory.d.ts.map +1 -0
  332. package/dist/strategies/strategy-factory.js +59 -0
  333. package/dist/strategies/strategy-factory.js.map +1 -0
  334. package/dist/synthesis/index.d.ts +9 -0
  335. package/dist/synthesis/index.d.ts.map +1 -0
  336. package/dist/synthesis/index.js +8 -0
  337. package/dist/synthesis/index.js.map +1 -0
  338. package/dist/synthesis/resolveSourceMaterial.d.ts +35 -0
  339. package/dist/synthesis/resolveSourceMaterial.d.ts.map +1 -0
  340. package/dist/synthesis/resolveSourceMaterial.js +152 -0
  341. package/dist/synthesis/resolveSourceMaterial.js.map +1 -0
  342. package/dist/synthesis/runStructuredSynthesisRobust.d.ts +42 -0
  343. package/dist/synthesis/runStructuredSynthesisRobust.d.ts.map +1 -0
  344. package/dist/synthesis/runStructuredSynthesisRobust.js +303 -0
  345. package/dist/synthesis/runStructuredSynthesisRobust.js.map +1 -0
  346. package/dist/task-strategies/buildTaskStrategyCatalogDescriptor.d.ts +19 -0
  347. package/dist/task-strategies/buildTaskStrategyCatalogDescriptor.d.ts.map +1 -0
  348. package/dist/task-strategies/buildTaskStrategyCatalogDescriptor.js +242 -0
  349. package/dist/task-strategies/buildTaskStrategyCatalogDescriptor.js.map +1 -0
  350. package/dist/task-strategies/canonicalInputExecutionStrategies.d.ts +171 -0
  351. package/dist/task-strategies/canonicalInputExecutionStrategies.d.ts.map +1 -0
  352. package/dist/task-strategies/canonicalInputExecutionStrategies.js +117 -0
  353. package/dist/task-strategies/canonicalInputExecutionStrategies.js.map +1 -0
  354. package/dist/task-strategies/canonicalNarrixModes.d.ts +31 -0
  355. package/dist/task-strategies/canonicalNarrixModes.d.ts.map +1 -0
  356. package/dist/task-strategies/canonicalNarrixModes.js +35 -0
  357. package/dist/task-strategies/canonicalNarrixModes.js.map +1 -0
  358. package/dist/task-strategies/canonicalTaskStrategies.d.ts +104 -0
  359. package/dist/task-strategies/canonicalTaskStrategies.d.ts.map +1 -0
  360. package/dist/task-strategies/canonicalTaskStrategies.js +77 -0
  361. package/dist/task-strategies/canonicalTaskStrategies.js.map +1 -0
  362. package/dist/task-strategies/cataloxCatalogViews.d.ts +55 -0
  363. package/dist/task-strategies/cataloxCatalogViews.d.ts.map +1 -0
  364. package/dist/task-strategies/cataloxCatalogViews.js +65 -0
  365. package/dist/task-strategies/cataloxCatalogViews.js.map +1 -0
  366. package/dist/task-strategies/constants.d.ts +49 -0
  367. package/dist/task-strategies/constants.d.ts.map +1 -0
  368. package/dist/task-strategies/constants.js +49 -0
  369. package/dist/task-strategies/constants.js.map +1 -0
  370. package/dist/task-strategies/index.d.ts +22 -0
  371. package/dist/task-strategies/index.d.ts.map +1 -0
  372. package/dist/task-strategies/index.js +13 -0
  373. package/dist/task-strategies/index.js.map +1 -0
  374. package/dist/task-strategies/listAiTaskStrategies.d.ts +43 -0
  375. package/dist/task-strategies/listAiTaskStrategies.d.ts.map +1 -0
  376. package/dist/task-strategies/listAiTaskStrategies.js +74 -0
  377. package/dist/task-strategies/listAiTaskStrategies.js.map +1 -0
  378. package/dist/task-strategies/normalize.d.ts +7 -0
  379. package/dist/task-strategies/normalize.d.ts.map +1 -0
  380. package/dist/task-strategies/normalize.js +44 -0
  381. package/dist/task-strategies/normalize.js.map +1 -0
  382. package/dist/task-strategies/types.d.ts +37 -0
  383. package/dist/task-strategies/types.d.ts.map +1 -0
  384. package/dist/task-strategies/types.js +2 -0
  385. package/dist/task-strategies/types.js.map +1 -0
  386. package/dist/types/decision-contracts.d.ts +31 -0
  387. package/dist/types/decision-contracts.d.ts.map +1 -0
  388. package/dist/types/decision-contracts.js +23 -0
  389. package/dist/types/decision-contracts.js.map +1 -0
  390. package/dist/types/evidence-types.d.ts +108 -0
  391. package/dist/types/evidence-types.d.ts.map +1 -0
  392. package/dist/types/evidence-types.js +9 -0
  393. package/dist/types/evidence-types.js.map +1 -0
  394. package/dist/types/executionType.d.ts +9 -0
  395. package/dist/types/executionType.d.ts.map +1 -0
  396. package/dist/types/executionType.js +8 -0
  397. package/dist/types/executionType.js.map +1 -0
  398. package/dist/types/index.d.ts +28 -0
  399. package/dist/types/index.d.ts.map +1 -0
  400. package/dist/types/index.js +12 -0
  401. package/dist/types/index.js.map +1 -0
  402. package/dist/types/llmCall.d.ts +121 -0
  403. package/dist/types/llmCall.d.ts.map +1 -0
  404. package/dist/types/llmCall.js +39 -0
  405. package/dist/types/llmCall.js.map +1 -0
  406. package/dist/types/task-configuration.d.ts +60 -0
  407. package/dist/types/task-configuration.d.ts.map +1 -0
  408. package/dist/types/task-configuration.js +3 -0
  409. package/dist/types/task-configuration.js.map +1 -0
  410. package/dist/types/task-types.d.ts +887 -0
  411. package/dist/types/task-types.d.ts.map +1 -0
  412. package/dist/types/task-types.js +21 -0
  413. package/dist/types/task-types.js.map +1 -0
  414. package/dist/utilities/runUtility.d.ts +3 -0
  415. package/dist/utilities/runUtility.d.ts.map +1 -0
  416. package/dist/utilities/runUtility.js +204 -0
  417. package/dist/utilities/runUtility.js.map +1 -0
  418. package/dist/utils/assertRequiredRunSkillCorrelation.d.ts +7 -0
  419. package/dist/utils/assertRequiredRunSkillCorrelation.d.ts.map +1 -0
  420. package/dist/utils/assertRequiredRunSkillCorrelation.js +17 -0
  421. package/dist/utils/assertRequiredRunSkillCorrelation.js.map +1 -0
  422. package/dist/utils/assertValidSmartInputConfig.d.ts +5 -0
  423. package/dist/utils/assertValidSmartInputConfig.d.ts.map +1 -0
  424. package/dist/utils/assertValidSmartInputConfig.js +71 -0
  425. package/dist/utils/assertValidSmartInputConfig.js.map +1 -0
  426. package/dist/utils/bridgeRunSkillGatewayMemory.d.ts +13 -0
  427. package/dist/utils/bridgeRunSkillGatewayMemory.d.ts.map +1 -0
  428. package/dist/utils/bridgeRunSkillGatewayMemory.js +65 -0
  429. package/dist/utils/bridgeRunSkillGatewayMemory.js.map +1 -0
  430. package/dist/utils/extractSmartInputRenderResult.d.ts +7 -0
  431. package/dist/utils/extractSmartInputRenderResult.d.ts.map +1 -0
  432. package/dist/utils/extractSmartInputRenderResult.js +30 -0
  433. package/dist/utils/extractSmartInputRenderResult.js.map +1 -0
  434. package/dist/utils/jsonPaths.d.ts +6 -0
  435. package/dist/utils/jsonPaths.d.ts.map +1 -0
  436. package/dist/utils/jsonPaths.js +32 -0
  437. package/dist/utils/jsonPaths.js.map +1 -0
  438. package/dist/utils/normalizeSmartInputConfig.d.ts +5 -0
  439. package/dist/utils/normalizeSmartInputConfig.d.ts.map +1 -0
  440. package/dist/utils/normalizeSmartInputConfig.js +30 -0
  441. package/dist/utils/normalizeSmartInputConfig.js.map +1 -0
  442. package/dist/utils/outputValidation.d.ts +19 -0
  443. package/dist/utils/outputValidation.d.ts.map +1 -0
  444. package/dist/utils/outputValidation.js +75 -0
  445. package/dist/utils/outputValidation.js.map +1 -0
  446. package/dist/utils/runTaskRequestShape.d.ts +16 -0
  447. package/dist/utils/runTaskRequestShape.d.ts.map +1 -0
  448. package/dist/utils/runTaskRequestShape.js +80 -0
  449. package/dist/utils/runTaskRequestShape.js.map +1 -0
  450. package/dist/utils/skillTemplateVariables.d.ts +20 -0
  451. package/dist/utils/skillTemplateVariables.d.ts.map +1 -0
  452. package/dist/utils/skillTemplateVariables.js +63 -0
  453. package/dist/utils/skillTemplateVariables.js.map +1 -0
  454. package/dist/utils/xynthesizedSmartInputPaths.d.ts +16 -0
  455. package/dist/utils/xynthesizedSmartInputPaths.d.ts.map +1 -0
  456. package/dist/utils/xynthesizedSmartInputPaths.js +56 -0
  457. package/dist/utils/xynthesizedSmartInputPaths.js.map +1 -0
  458. package/dist/utils/xynthesizedWrite.d.ts +10 -0
  459. package/dist/utils/xynthesizedWrite.d.ts.map +1 -0
  460. package/dist/utils/xynthesizedWrite.js +61 -0
  461. package/dist/utils/xynthesizedWrite.js.map +1 -0
  462. package/dist/validation/analyzeExpectedRunTaskInput.d.ts +41 -0
  463. package/dist/validation/analyzeExpectedRunTaskInput.d.ts.map +1 -0
  464. package/dist/validation/analyzeExpectedRunTaskInput.js +133 -0
  465. package/dist/validation/analyzeExpectedRunTaskInput.js.map +1 -0
  466. package/dist/validation/collectSmartInputValidationIssues.d.ts +6 -0
  467. package/dist/validation/collectSmartInputValidationIssues.d.ts.map +1 -0
  468. package/dist/validation/collectSmartInputValidationIssues.js +38 -0
  469. package/dist/validation/collectSmartInputValidationIssues.js.map +1 -0
  470. package/dist/validation/helpers.d.ts +15 -0
  471. package/dist/validation/helpers.d.ts.map +1 -0
  472. package/dist/validation/helpers.js +184 -0
  473. package/dist/validation/helpers.js.map +1 -0
  474. package/dist/validation/index.d.ts +9 -0
  475. package/dist/validation/index.d.ts.map +1 -0
  476. package/dist/validation/index.js +6 -0
  477. package/dist/validation/index.js.map +1 -0
  478. package/dist/validation/types.d.ts +51 -0
  479. package/dist/validation/types.d.ts.map +1 -0
  480. package/dist/validation/types.js +5 -0
  481. package/dist/validation/types.js.map +1 -0
  482. package/dist/validation/validateRunTaskConfig.d.ts +8 -0
  483. package/dist/validation/validateRunTaskConfig.d.ts.map +1 -0
  484. package/dist/validation/validateRunTaskConfig.js +158 -0
  485. package/dist/validation/validateRunTaskConfig.js.map +1 -0
  486. package/dist/validation/validateRunTaskInvoke.d.ts +30 -0
  487. package/dist/validation/validateRunTaskInvoke.d.ts.map +1 -0
  488. package/dist/validation/validateRunTaskInvoke.js +108 -0
  489. package/dist/validation/validateRunTaskInvoke.js.map +1 -0
  490. package/documenations/activix-feature-request-identity.md +123 -0
  491. package/documenations/activix.md +175 -0
  492. package/documenations/bug-report-xynthesis-and-synthesis-call.md +217 -0
  493. package/documenations/core-runtime-tokens-and-strategies.md +123 -0
  494. package/documenations/downstream-environment.md +48 -0
  495. package/documenations/downstream-test-runtime-teardown-cleanup.md +73 -0
  496. package/documenations/examples/xynthesis-run-task-request.example.json +170 -0
  497. package/documenations/feature-request-ai-skills-raw-template-access.md +82 -0
  498. package/documenations/feature-request-athenix-core-directive.md +145 -0
  499. package/documenations/feature-request-athenix-token-extraction.md +124 -0
  500. package/documenations/funcx-catalog-hosting-checklist.md +107 -0
  501. package/documenations/funcx-scoping-integration-gaps.md +120 -0
  502. package/documenations/funcx-upstream-github-issues-draft.md +153 -0
  503. package/documenations/identity-metadata-contract.md +165 -0
  504. package/documenations/intermediate-steps.md +33 -0
  505. package/documenations/record-and-template-variables.md +32 -0
  506. package/documenations/run-task-execution-flow.md +153 -0
  507. package/documenations/run-task-single-run-checklist.md +109 -0
  508. package/documenations/schemas/README.md +40 -0
  509. package/documenations/schemas/openapi-3.1-components.yaml +24 -0
  510. package/documenations/schemas/v1/output-schema.json +55 -0
  511. package/documenations/schemas/v1/output-validation-result.json +41 -0
  512. package/documenations/schemas/v1/run-task-request.json +219 -0
  513. package/documenations/schemas/v1/synthesized-artifacts.json +133 -0
  514. package/documenations/synthesis-invocation-notes.md +26 -0
  515. package/documenations/synthesized-context-guide.md +84 -0
  516. package/documenations/task-core-and-core-aware-synthesis.md +58 -0
  517. package/documenations/upstream-feature-requests/ai-skills-llm-observability.md +129 -0
  518. package/documenations/upstream-feature-requests/xynthesis-llm-observability.md +125 -0
  519. package/documenations/upstream-feedback-request-shape-clarification.md +101 -0
  520. package/documenations/web-context-precedence.md +33 -0
  521. package/documenations/web-scoping-in-ai-tasks.md +503 -0
  522. package/documenations/xynthesis-activix-telemetry.md +28 -0
  523. package/documenations/xynthesis-upstream-fixes-checklist.md +71 -0
  524. package/package.json +92 -0
@@ -0,0 +1,171 @@
1
+ /**
2
+ * Task **input** strategies: optional authoring / template hints for consoles and Xynthesis.
3
+ * They do **not** select Narrix invocation (use `narrixMode` on the request) and do **not** decide
4
+ * what material is attached to PRE by default (PRE receives the full available bundle; see runtime D6).
5
+ * Keys match Catalox catalog {@link AI_TASK_INPUT_STRATEGIES_CATALOG_ID}.
6
+ */
7
+ export declare const CANONICAL_INPUT_STRATEGIES: readonly [{
8
+ readonly strategyKey: "no-narrative";
9
+ readonly title: "No narrative";
10
+ readonly description: "Default authoring hint: task is not framed as requiring a Narrix-first narrative. Narrix still runs when `narrixMode` is not `off`.";
11
+ readonly domain: "input";
12
+ readonly multiSelectable: false;
13
+ readonly appliesTo: ["task-input"];
14
+ }, {
15
+ readonly strategyKey: "narrative-only";
16
+ readonly title: "Narrative only";
17
+ readonly description: "UX / template hint: prefer framing around Narrix-derived material inside Xynthesis when templates allow.";
18
+ readonly domain: "input";
19
+ readonly multiSelectable: false;
20
+ readonly appliesTo: ["task-input"];
21
+ }, {
22
+ readonly strategyKey: "narrative-with-context";
23
+ readonly title: "Narrative with context";
24
+ readonly description: "UX / template hint: combine narrative with broader memory/web framing inside Xynthesis when templates allow.";
25
+ readonly domain: "input";
26
+ readonly multiSelectable: false;
27
+ readonly appliesTo: ["task-input"];
28
+ }];
29
+ /**
30
+ * Task **execution** strategies: catalog metadata for MAIN wrappers (`RunTaskRequest.executionStrategies`).
31
+ * Runtime wrappers: `planner` (FuncX before MAIN), `optimizer` (FuncX after each MAIN attempt). `direct` describes plain MAIN when `executionStrategies` is `[]`.
32
+ * Keys match Catalox catalogs {@link AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID} and {@link AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID} (same seeded rows).
33
+ */
34
+ export declare const CANONICAL_EXECUTION_STRATEGIES: readonly [{
35
+ readonly strategyKey: "direct";
36
+ readonly title: "Direct";
37
+ readonly description: "Plain MAIN: no planner/optimizer entries — `executionStrategies: []`. Skill runs once via `runSkill`.";
38
+ readonly domain: "execution";
39
+ readonly multiSelectable: false;
40
+ readonly appliesTo: ["main-execution"];
41
+ readonly runtimeKind: "direct";
42
+ readonly requestShape: "empty-execution-strategies";
43
+ readonly phase: "main";
44
+ readonly selectableInExecutionStrategies: false;
45
+ readonly safeRuntimeFields: [];
46
+ readonly example: {
47
+ readonly executionStrategies: readonly [];
48
+ };
49
+ readonly notes: ["`direct` is represented by an empty `executionStrategies` array; it is not valid as an `executionStrategies[]` row."];
50
+ }, {
51
+ readonly strategyKey: "planner";
52
+ readonly title: "Planner";
53
+ readonly description: "FuncX `execution/plan` runs once before MAIN (generic envelope); merges instructions/prompt/variables into the task request.";
54
+ readonly domain: "execution";
55
+ readonly multiSelectable: true;
56
+ readonly appliesTo: ["pre-main-execution"];
57
+ readonly runtimeKind: "funcx-wrapper";
58
+ readonly requestShape: "executionStrategies-row";
59
+ readonly phase: "before";
60
+ readonly selectableInExecutionStrategies: true;
61
+ readonly defaultFunctionId: "execution/plan";
62
+ readonly functionEnvelope: "execution-strategy-generic-v1";
63
+ readonly safeRuntimeFields: ["defaultFunctionId"];
64
+ readonly example: {
65
+ readonly executionStrategies: readonly [{
66
+ readonly strategyKey: "planner";
67
+ readonly phase: "before";
68
+ readonly priority: 10;
69
+ }];
70
+ };
71
+ readonly notes: ["Planner rows must use phase `before`.", "Per-invocation `args.functionId` overrides catalog/default function id."];
72
+ }, {
73
+ readonly strategyKey: "optimizer";
74
+ readonly title: "Optimizer";
75
+ readonly description: "FuncX `execution/evaluate-result` after each MAIN attempt; may retry MAIN with feedback until satisfied or max iterations.";
76
+ readonly domain: "execution";
77
+ readonly multiSelectable: true;
78
+ readonly appliesTo: ["post-main-execution"];
79
+ readonly runtimeKind: "funcx-wrapper";
80
+ readonly requestShape: "executionStrategies-row";
81
+ readonly phase: "after";
82
+ readonly selectableInExecutionStrategies: true;
83
+ readonly defaultFunctionId: "execution/evaluate-result";
84
+ readonly functionEnvelope: "execution-strategy-generic-v1";
85
+ readonly retryBehavior: "Runs MAIN until satisfied or maxIterations is reached. Omitted maxIterations uses AI_TASKS_OPTIMIZER_MAX_ITERATIONS or 3.";
86
+ readonly safeRuntimeFields: ["defaultFunctionId"];
87
+ readonly example: {
88
+ readonly executionStrategies: readonly [{
89
+ readonly strategyKey: "optimizer";
90
+ readonly phase: "after";
91
+ readonly priority: 20;
92
+ readonly maxIterations: 3;
93
+ }];
94
+ };
95
+ readonly notes: ["Optimizer rows must use phase `after`.", "Only the first optimizer after priority sorting drives the retry loop.", "Per-invocation `args.functionId` overrides catalog/default function id."];
96
+ }];
97
+ /**
98
+ * Canonical rows for {@link AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID}; identical to {@link CANONICAL_EXECUTION_STRATEGIES}.
99
+ */
100
+ export declare const CANONICAL_MAIN_EXECUTION_WRAPPERS: readonly [{
101
+ readonly strategyKey: "direct";
102
+ readonly title: "Direct";
103
+ readonly description: "Plain MAIN: no planner/optimizer entries — `executionStrategies: []`. Skill runs once via `runSkill`.";
104
+ readonly domain: "execution";
105
+ readonly multiSelectable: false;
106
+ readonly appliesTo: ["main-execution"];
107
+ readonly runtimeKind: "direct";
108
+ readonly requestShape: "empty-execution-strategies";
109
+ readonly phase: "main";
110
+ readonly selectableInExecutionStrategies: false;
111
+ readonly safeRuntimeFields: [];
112
+ readonly example: {
113
+ readonly executionStrategies: readonly [];
114
+ };
115
+ readonly notes: ["`direct` is represented by an empty `executionStrategies` array; it is not valid as an `executionStrategies[]` row."];
116
+ }, {
117
+ readonly strategyKey: "planner";
118
+ readonly title: "Planner";
119
+ readonly description: "FuncX `execution/plan` runs once before MAIN (generic envelope); merges instructions/prompt/variables into the task request.";
120
+ readonly domain: "execution";
121
+ readonly multiSelectable: true;
122
+ readonly appliesTo: ["pre-main-execution"];
123
+ readonly runtimeKind: "funcx-wrapper";
124
+ readonly requestShape: "executionStrategies-row";
125
+ readonly phase: "before";
126
+ readonly selectableInExecutionStrategies: true;
127
+ readonly defaultFunctionId: "execution/plan";
128
+ readonly functionEnvelope: "execution-strategy-generic-v1";
129
+ readonly safeRuntimeFields: ["defaultFunctionId"];
130
+ readonly example: {
131
+ readonly executionStrategies: readonly [{
132
+ readonly strategyKey: "planner";
133
+ readonly phase: "before";
134
+ readonly priority: 10;
135
+ }];
136
+ };
137
+ readonly notes: ["Planner rows must use phase `before`.", "Per-invocation `args.functionId` overrides catalog/default function id."];
138
+ }, {
139
+ readonly strategyKey: "optimizer";
140
+ readonly title: "Optimizer";
141
+ readonly description: "FuncX `execution/evaluate-result` after each MAIN attempt; may retry MAIN with feedback until satisfied or max iterations.";
142
+ readonly domain: "execution";
143
+ readonly multiSelectable: true;
144
+ readonly appliesTo: ["post-main-execution"];
145
+ readonly runtimeKind: "funcx-wrapper";
146
+ readonly requestShape: "executionStrategies-row";
147
+ readonly phase: "after";
148
+ readonly selectableInExecutionStrategies: true;
149
+ readonly defaultFunctionId: "execution/evaluate-result";
150
+ readonly functionEnvelope: "execution-strategy-generic-v1";
151
+ readonly retryBehavior: "Runs MAIN until satisfied or maxIterations is reached. Omitted maxIterations uses AI_TASKS_OPTIMIZER_MAX_ITERATIONS or 3.";
152
+ readonly safeRuntimeFields: ["defaultFunctionId"];
153
+ readonly example: {
154
+ readonly executionStrategies: readonly [{
155
+ readonly strategyKey: "optimizer";
156
+ readonly phase: "after";
157
+ readonly priority: 20;
158
+ readonly maxIterations: 3;
159
+ }];
160
+ };
161
+ readonly notes: ["Optimizer rows must use phase `after`.", "Only the first optimizer after priority sorting drives the retry loop.", "Per-invocation `args.functionId` overrides catalog/default function id."];
162
+ }];
163
+ export type InputStrategyKey = (typeof CANONICAL_INPUT_STRATEGIES)[number]["strategyKey"];
164
+ export type ExecutionStrategyKey = (typeof CANONICAL_EXECUTION_STRATEGIES)[number]["strategyKey"];
165
+ export declare const CANONICAL_INPUT_STRATEGY_KEYS: readonly InputStrategyKey[];
166
+ export declare const CANONICAL_EXECUTION_STRATEGY_KEYS: readonly ExecutionStrategyKey[];
167
+ export declare const TASK_INPUT_STRATEGIES_CATALOG_ID: "ai-task-input-strategies";
168
+ export declare const TASK_EXECUTION_STRATEGIES_CATALOG_ID: "ai-task-execution-strategies";
169
+ export declare const TASK_EXECUTION_STRATEGY_CATALOG_ID: "execution-strategy";
170
+ export declare const INPUT_EXECUTION_STRATEGIES_APP_ID: "ai-tasks";
171
+ //# sourceMappingURL=canonicalInputExecutionStrategies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalInputExecutionStrategies.d.ts","sourceRoot":"","sources":["../../src/task-strategies/canonicalInputExecutionStrategies.ts"],"names":[],"mappings":"AAmBA;;;;;GAKG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;EA4BsB,CAAC;AAE9D;;;;GAIG;AACH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqEkB,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAiC,CAAC;AAEhF,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,0BAA0B,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;AAE1F,MAAM,MAAM,oBAAoB,GAAG,CAAC,OAAO,8BAA8B,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;AAElG,eAAO,MAAM,6BAA6B,EAAE,SAAS,gBAAgB,EACf,CAAC;AAEvD,eAAO,MAAM,iCAAiC,EAAE,SAAS,oBAAoB,EACnB,CAAC;AAE3D,eAAO,MAAM,gCAAgC,4BAAsC,CAAC;AACpF,eAAO,MAAM,oCAAoC,gCAA0C,CAAC;AAC5F,eAAO,MAAM,kCAAkC,sBAAwC,CAAC;AAExF,eAAO,MAAM,iCAAiC,YAAkB,CAAC"}
@@ -0,0 +1,117 @@
1
+ import { AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID, AI_TASK_EXECUTION_STRATEGY_CATALOG_ID, AI_TASK_INPUT_STRATEGIES_CATALOG_ID, AI_TASKS_APP_ID, TASK_STRATEGY_APPLIES_TO_MAIN_EXECUTION, TASK_STRATEGY_APPLIES_TO_POST_MAIN_EXECUTION, TASK_STRATEGY_APPLIES_TO_PRE_MAIN_EXECUTION, TASK_STRATEGY_APPLIES_TO_TASK_INPUT, } from "./constants.js";
2
+ import { DEFAULT_OPTIMIZER_MAX_ITERATIONS, ENV_OPTIMIZER_MAX_ITERATIONS, FUNCX_EXECUTION_EVALUATE_RESULT_FUNCTION_ID, FUNCX_EXECUTION_PLAN_FUNCTION_ID, } from "../execution-strategies/constants.js";
3
+ /**
4
+ * Task **input** strategies: optional authoring / template hints for consoles and Xynthesis.
5
+ * They do **not** select Narrix invocation (use `narrixMode` on the request) and do **not** decide
6
+ * what material is attached to PRE by default (PRE receives the full available bundle; see runtime D6).
7
+ * Keys match Catalox catalog {@link AI_TASK_INPUT_STRATEGIES_CATALOG_ID}.
8
+ */
9
+ export const CANONICAL_INPUT_STRATEGIES = [
10
+ {
11
+ strategyKey: "no-narrative",
12
+ title: "No narrative",
13
+ description: "Default authoring hint: task is not framed as requiring a Narrix-first narrative. Narrix still runs when `narrixMode` is not `off`.",
14
+ domain: "input",
15
+ multiSelectable: false,
16
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_TASK_INPUT],
17
+ },
18
+ {
19
+ strategyKey: "narrative-only",
20
+ title: "Narrative only",
21
+ description: "UX / template hint: prefer framing around Narrix-derived material inside Xynthesis when templates allow.",
22
+ domain: "input",
23
+ multiSelectable: false,
24
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_TASK_INPUT],
25
+ },
26
+ {
27
+ strategyKey: "narrative-with-context",
28
+ title: "Narrative with context",
29
+ description: "UX / template hint: combine narrative with broader memory/web framing inside Xynthesis when templates allow.",
30
+ domain: "input",
31
+ multiSelectable: false,
32
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_TASK_INPUT],
33
+ },
34
+ ];
35
+ /**
36
+ * Task **execution** strategies: catalog metadata for MAIN wrappers (`RunTaskRequest.executionStrategies`).
37
+ * Runtime wrappers: `planner` (FuncX before MAIN), `optimizer` (FuncX after each MAIN attempt). `direct` describes plain MAIN when `executionStrategies` is `[]`.
38
+ * Keys match Catalox catalogs {@link AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID} and {@link AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID} (same seeded rows).
39
+ */
40
+ export const CANONICAL_EXECUTION_STRATEGIES = [
41
+ {
42
+ strategyKey: "direct",
43
+ title: "Direct",
44
+ description: "Plain MAIN: no planner/optimizer entries — `executionStrategies: []`. Skill runs once via `runSkill`.",
45
+ domain: "execution",
46
+ multiSelectable: false,
47
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_MAIN_EXECUTION],
48
+ runtimeKind: "direct",
49
+ requestShape: "empty-execution-strategies",
50
+ phase: "main",
51
+ selectableInExecutionStrategies: false,
52
+ safeRuntimeFields: [],
53
+ example: {
54
+ executionStrategies: [],
55
+ },
56
+ notes: [
57
+ "`direct` is represented by an empty `executionStrategies` array; it is not valid as an `executionStrategies[]` row.",
58
+ ],
59
+ },
60
+ {
61
+ strategyKey: "planner",
62
+ title: "Planner",
63
+ description: "FuncX `execution/plan` runs once before MAIN (generic envelope); merges instructions/prompt/variables into the task request.",
64
+ domain: "execution",
65
+ multiSelectable: true,
66
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_MAIN_EXECUTION],
67
+ runtimeKind: "funcx-wrapper",
68
+ requestShape: "executionStrategies-row",
69
+ phase: "before",
70
+ selectableInExecutionStrategies: true,
71
+ defaultFunctionId: FUNCX_EXECUTION_PLAN_FUNCTION_ID,
72
+ functionEnvelope: "execution-strategy-generic-v1",
73
+ safeRuntimeFields: ["defaultFunctionId"],
74
+ example: {
75
+ executionStrategies: [{ strategyKey: "planner", phase: "before", priority: 10 }],
76
+ },
77
+ notes: [
78
+ "Planner rows must use phase `before`.",
79
+ "Per-invocation `args.functionId` overrides catalog/default function id.",
80
+ ],
81
+ },
82
+ {
83
+ strategyKey: "optimizer",
84
+ title: "Optimizer",
85
+ description: "FuncX `execution/evaluate-result` after each MAIN attempt; may retry MAIN with feedback until satisfied or max iterations.",
86
+ domain: "execution",
87
+ multiSelectable: true,
88
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_POST_MAIN_EXECUTION],
89
+ runtimeKind: "funcx-wrapper",
90
+ requestShape: "executionStrategies-row",
91
+ phase: "after",
92
+ selectableInExecutionStrategies: true,
93
+ defaultFunctionId: FUNCX_EXECUTION_EVALUATE_RESULT_FUNCTION_ID,
94
+ functionEnvelope: "execution-strategy-generic-v1",
95
+ retryBehavior: `Runs MAIN until satisfied or maxIterations is reached. Omitted maxIterations uses ${ENV_OPTIMIZER_MAX_ITERATIONS} or ${DEFAULT_OPTIMIZER_MAX_ITERATIONS}.`,
96
+ safeRuntimeFields: ["defaultFunctionId"],
97
+ example: {
98
+ executionStrategies: [{ strategyKey: "optimizer", phase: "after", priority: 20, maxIterations: 3 }],
99
+ },
100
+ notes: [
101
+ "Optimizer rows must use phase `after`.",
102
+ "Only the first optimizer after priority sorting drives the retry loop.",
103
+ "Per-invocation `args.functionId` overrides catalog/default function id.",
104
+ ],
105
+ },
106
+ ];
107
+ /**
108
+ * Canonical rows for {@link AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID}; identical to {@link CANONICAL_EXECUTION_STRATEGIES}.
109
+ */
110
+ export const CANONICAL_MAIN_EXECUTION_WRAPPERS = CANONICAL_EXECUTION_STRATEGIES;
111
+ export const CANONICAL_INPUT_STRATEGY_KEYS = CANONICAL_INPUT_STRATEGIES.map((s) => s.strategyKey);
112
+ export const CANONICAL_EXECUTION_STRATEGY_KEYS = CANONICAL_EXECUTION_STRATEGIES.map((s) => s.strategyKey);
113
+ export const TASK_INPUT_STRATEGIES_CATALOG_ID = AI_TASK_INPUT_STRATEGIES_CATALOG_ID;
114
+ export const TASK_EXECUTION_STRATEGIES_CATALOG_ID = AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID;
115
+ export const TASK_EXECUTION_STRATEGY_CATALOG_ID = AI_TASK_EXECUTION_STRATEGY_CATALOG_ID;
116
+ export const INPUT_EXECUTION_STRATEGIES_APP_ID = AI_TASKS_APP_ID;
117
+ //# sourceMappingURL=canonicalInputExecutionStrategies.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalInputExecutionStrategies.js","sourceRoot":"","sources":["../../src/task-strategies/canonicalInputExecutionStrategies.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,uCAAuC,EACvC,qCAAqC,EACrC,mCAAmC,EAEnC,eAAe,EACf,uCAAuC,EACvC,4CAA4C,EAC5C,2CAA2C,EAC3C,mCAAmC,GACpC,MAAM,gBAAgB,CAAC;AAExB,OAAO,EACL,gCAAgC,EAChC,4BAA4B,EAC5B,2CAA2C,EAC3C,gCAAgC,GACjC,MAAM,sCAAsC,CAAC;AAE9C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC;QACE,WAAW,EAAE,cAAc;QAC3B,KAAK,EAAE,cAAc;QACrB,WAAW,EACT,qIAAqI;QACvI,MAAM,EAAE,OAAO;QACf,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,mCAAmC,CAAC;KACjD;IACD;QACE,WAAW,EAAE,gBAAgB;QAC7B,KAAK,EAAE,gBAAgB;QACvB,WAAW,EACT,0GAA0G;QAC5G,MAAM,EAAE,OAAO;QACf,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,mCAAmC,CAAC;KACjD;IACD;QACE,WAAW,EAAE,wBAAwB;QACrC,KAAK,EAAE,wBAAwB;QAC/B,WAAW,EACT,8GAA8G;QAChH,MAAM,EAAE,OAAO;QACf,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,mCAAmC,CAAC;KACjD;CAC0D,CAAC;AAE9D;;;;GAIG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG;IAC5C;QACE,WAAW,EAAE,QAAQ;QACrB,KAAK,EAAE,QAAQ;QACf,WAAW,EACT,uGAAuG;QACzG,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,uCAAuC,CAAC;QACpD,WAAW,EAAE,QAAQ;QACrB,YAAY,EAAE,4BAA4B;QAC1C,KAAK,EAAE,MAAM;QACb,+BAA+B,EAAE,KAAK;QACtC,iBAAiB,EAAE,EAAE;QACrB,OAAO,EAAE;YACP,mBAAmB,EAAE,EAAE;SACxB;QACD,KAAK,EAAE;YACL,qHAAqH;SACtH;KACF;IACD;QACE,WAAW,EAAE,SAAS;QACtB,KAAK,EAAE,SAAS;QAChB,WAAW,EACT,8HAA8H;QAChI,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,IAAI;QACrB,SAAS,EAAE,CAAC,2CAA2C,CAAC;QACxD,WAAW,EAAE,eAAe;QAC5B,YAAY,EAAE,yBAAyB;QACvC,KAAK,EAAE,QAAQ;QACf,+BAA+B,EAAE,IAAI;QACrC,iBAAiB,EAAE,gCAAgC;QACnD,gBAAgB,EAAE,+BAA+B;QACjD,iBAAiB,EAAE,CAAC,mBAAmB,CAAC;QACxC,OAAO,EAAE;YACP,mBAAmB,EAAE,CAAC,EAAE,WAAW,EAAE,SAAS,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;SACjF;QACD,KAAK,EAAE;YACL,uCAAuC;YACvC,yEAAyE;SAC1E;KACF;IACD;QACE,WAAW,EAAE,WAAW;QACxB,KAAK,EAAE,WAAW;QAClB,WAAW,EACT,4HAA4H;QAC9H,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,IAAI;QACrB,SAAS,EAAE,CAAC,4CAA4C,CAAC;QACzD,WAAW,EAAE,eAAe;QAC5B,YAAY,EAAE,yBAAyB;QACvC,KAAK,EAAE,OAAO;QACd,+BAA+B,EAAE,IAAI;QACrC,iBAAiB,EAAE,2CAA2C;QAC9D,gBAAgB,EAAE,+BAA+B;QACjD,aAAa,EAAE,qFAAqF,4BAA4B,OAAO,gCAAgC,GAAG;QAC1K,iBAAiB,EAAE,CAAC,mBAAmB,CAAC;QACxC,OAAO,EAAE;YACP,mBAAmB,EAAE,CAAC,EAAE,WAAW,EAAE,WAAW,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,aAAa,EAAE,CAAC,EAAE,CAAC;SACpG;QACD,KAAK,EAAE;YACL,wCAAwC;YACxC,wEAAwE;YACxE,yEAAyE;SAC1E;KACF;CAC0D,CAAC;AAE9D;;GAEG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAAG,8BAA8B,CAAC;AAMhF,MAAM,CAAC,MAAM,6BAA6B,GACxC,0BAA0B,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;AAEvD,MAAM,CAAC,MAAM,iCAAiC,GAC5C,8BAA8B,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;AAE3D,MAAM,CAAC,MAAM,gCAAgC,GAAG,mCAAmC,CAAC;AACpF,MAAM,CAAC,MAAM,oCAAoC,GAAG,uCAAuC,CAAC;AAC5F,MAAM,CAAC,MAAM,kCAAkC,GAAG,qCAAqC,CAAC;AAExF,MAAM,CAAC,MAAM,iCAAiC,GAAG,eAAe,CAAC"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Canonical **Narrix invocation modes** for `RunTaskRequest.narrixMode`.
3
+ * Keys match Catalox catalog {@link AI_TASK_NARRIX_MODES_CATALOG_ID}.
4
+ */
5
+ export declare const CANONICAL_NARRIX_MODES: readonly [{
6
+ readonly strategyKey: "off";
7
+ readonly title: "Off";
8
+ readonly description: "Explicitly disables Narrix for this run (even if `narrix` / `narrixInput` are present). Omit `narrixMode` to allow inference from those fields instead.";
9
+ readonly domain: "narrix";
10
+ readonly multiSelectable: false;
11
+ readonly appliesTo: ["narrix-mode"];
12
+ }, {
13
+ readonly strategyKey: "preprocessor";
14
+ readonly title: "Preprocessor";
15
+ readonly description: "Run the record/dataset Narrix preprocessor (`request.narrix`) at the start of `runTask`, before local tasks and pipeline PRE.";
16
+ readonly domain: "narrix";
17
+ readonly multiSelectable: false;
18
+ readonly appliesTo: ["narrix-mode"];
19
+ }, {
20
+ readonly strategyKey: "handler";
21
+ readonly title: "Handler (structured)";
22
+ readonly description: "Run structured Narrix from `narrixInput` at the start of `runTask` (or omit mode when only `narrixInput` is set — inferred as handler), before local tasks and pipeline PRE.";
23
+ readonly domain: "narrix";
24
+ readonly multiSelectable: false;
25
+ readonly appliesTo: ["narrix-mode"];
26
+ }];
27
+ export type NarrixModeKey = (typeof CANONICAL_NARRIX_MODES)[number]["strategyKey"];
28
+ export declare const CANONICAL_NARRIX_MODE_KEYS: readonly NarrixModeKey[];
29
+ export declare const NARRIX_MODES_CATALOG_ID: "ai-task-narrix-modes";
30
+ export declare const NARRIX_MODES_STRATEGIES_APP_ID: "ai-tasks";
31
+ //# sourceMappingURL=canonicalNarrixModes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalNarrixModes.d.ts","sourceRoot":"","sources":["../../src/task-strategies/canonicalNarrixModes.ts"],"names":[],"mappings":"AAOA;;;GAGG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;EA4B0B,CAAC;AAE9D,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,sBAAsB,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;AAEnF,eAAO,MAAM,0BAA0B,EAAE,SAAS,aAAa,EAAqD,CAAC;AAErH,eAAO,MAAM,uBAAuB,wBAAkC,CAAC;AAEvE,eAAO,MAAM,8BAA8B,YAAkB,CAAC"}
@@ -0,0 +1,35 @@
1
+ import { AI_TASK_NARRIX_MODES_CATALOG_ID, AI_TASKS_APP_ID, TASK_STRATEGY_APPLIES_TO_NARRIX_MODE, } from "./constants.js";
2
+ /**
3
+ * Canonical **Narrix invocation modes** for `RunTaskRequest.narrixMode`.
4
+ * Keys match Catalox catalog {@link AI_TASK_NARRIX_MODES_CATALOG_ID}.
5
+ */
6
+ export const CANONICAL_NARRIX_MODES = [
7
+ {
8
+ strategyKey: "off",
9
+ title: "Off",
10
+ description: "Explicitly disables Narrix for this run (even if `narrix` / `narrixInput` are present). Omit `narrixMode` to allow inference from those fields instead.",
11
+ domain: "narrix",
12
+ multiSelectable: false,
13
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_NARRIX_MODE],
14
+ },
15
+ {
16
+ strategyKey: "preprocessor",
17
+ title: "Preprocessor",
18
+ description: "Run the record/dataset Narrix preprocessor (`request.narrix`) at the start of `runTask`, before local tasks and pipeline PRE.",
19
+ domain: "narrix",
20
+ multiSelectable: false,
21
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_NARRIX_MODE],
22
+ },
23
+ {
24
+ strategyKey: "handler",
25
+ title: "Handler (structured)",
26
+ description: "Run structured Narrix from `narrixInput` at the start of `runTask` (or omit mode when only `narrixInput` is set — inferred as handler), before local tasks and pipeline PRE.",
27
+ domain: "narrix",
28
+ multiSelectable: false,
29
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_NARRIX_MODE],
30
+ },
31
+ ];
32
+ export const CANONICAL_NARRIX_MODE_KEYS = CANONICAL_NARRIX_MODES.map((m) => m.strategyKey);
33
+ export const NARRIX_MODES_CATALOG_ID = AI_TASK_NARRIX_MODES_CATALOG_ID;
34
+ export const NARRIX_MODES_STRATEGIES_APP_ID = AI_TASKS_APP_ID;
35
+ //# sourceMappingURL=canonicalNarrixModes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalNarrixModes.js","sourceRoot":"","sources":["../../src/task-strategies/canonicalNarrixModes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,+BAA+B,EAC/B,eAAe,EACf,oCAAoC,GACrC,MAAM,gBAAgB,CAAC;AAGxB;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG;IACpC;QACE,WAAW,EAAE,KAAK;QAClB,KAAK,EAAE,KAAK;QACZ,WAAW,EACT,yJAAyJ;QAC3J,MAAM,EAAE,QAAQ;QAChB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,oCAAoC,CAAC;KAClD;IACD;QACE,WAAW,EAAE,cAAc;QAC3B,KAAK,EAAE,cAAc;QACrB,WAAW,EACT,+HAA+H;QACjI,MAAM,EAAE,QAAQ;QAChB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,oCAAoC,CAAC;KAClD;IACD;QACE,WAAW,EAAE,SAAS;QACtB,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EACT,8KAA8K;QAChL,MAAM,EAAE,QAAQ;QAChB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,oCAAoC,CAAC;KAClD;CAC0D,CAAC;AAI9D,MAAM,CAAC,MAAM,0BAA0B,GAA6B,sBAAsB,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;AAErH,MAAM,CAAC,MAAM,uBAAuB,GAAG,+BAA+B,CAAC;AAEvE,MAAM,CAAC,MAAM,8BAA8B,GAAG,eAAe,CAAC"}
@@ -0,0 +1,104 @@
1
+ /**
2
+ * Pre–core task strategies: what feeds the synthesis PRE step (`synthesisInputStrategy` on `SynthesisConfig`).
3
+ */
4
+ export declare const CANONICAL_PRE_CORE_TASK_STRATEGIES: readonly [{
5
+ readonly strategyKey: "policy";
6
+ readonly title: "Policy-driven sources";
7
+ readonly description: "Use contextSourcePolicy with narrix, web, and memory composition (default synthesized-context input).";
8
+ readonly domain: "synthesis";
9
+ readonly multiSelectable: false;
10
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
11
+ }, {
12
+ readonly strategyKey: "execution-memory-only";
13
+ readonly title: "Execution memory only";
14
+ readonly description: "Synthesize from executionMemory only.";
15
+ readonly domain: "synthesis";
16
+ readonly multiSelectable: false;
17
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
18
+ }, {
19
+ readonly strategyKey: "job-memory-only";
20
+ readonly title: "Job memory only";
21
+ readonly description: "Synthesize from jobMemory only.";
22
+ readonly domain: "synthesis";
23
+ readonly multiSelectable: false;
24
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
25
+ }, {
26
+ readonly strategyKey: "task-memory-only";
27
+ readonly title: "Task memory only";
28
+ readonly description: "Synthesize from taskMemory only.";
29
+ readonly domain: "synthesis";
30
+ readonly multiSelectable: false;
31
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
32
+ }, {
33
+ readonly strategyKey: "full-memory-bundle";
34
+ readonly title: "Full memory bundle";
35
+ readonly description: "Synthesize from jobMemory, taskMemory, and executionMemory together.";
36
+ readonly domain: "synthesis";
37
+ readonly multiSelectable: false;
38
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
39
+ }];
40
+ /**
41
+ * Post–core task strategies: e.g. `AuditConfig.selectionStrategy` after the main task output exists.
42
+ */
43
+ export declare const CANONICAL_POST_CORE_TASK_STRATEGIES: readonly [{
44
+ readonly strategyKey: "best";
45
+ readonly title: "Best candidate";
46
+ readonly description: "Prefer the single highest-scoring candidate from audit checks (default). Does not run cross-candidate synthesis.";
47
+ readonly domain: "audit";
48
+ readonly multiSelectable: false;
49
+ readonly appliesTo: ["post-core-tasks", "audit"];
50
+ }, {
51
+ readonly strategyKey: "synthesis";
52
+ readonly title: "Synthesize across candidates";
53
+ readonly description: "When multiple strong candidates exist, run an additional synthesis pass across them (see audit POST step).";
54
+ readonly domain: "audit";
55
+ readonly multiSelectable: false;
56
+ readonly appliesTo: ["post-core-tasks", "audit"];
57
+ }];
58
+ /** @deprecated Use {@link CANONICAL_PRE_CORE_TASK_STRATEGIES}. */
59
+ export declare const CANONICAL_TASK_STRATEGIES: readonly [{
60
+ readonly strategyKey: "policy";
61
+ readonly title: "Policy-driven sources";
62
+ readonly description: "Use contextSourcePolicy with narrix, web, and memory composition (default synthesized-context input).";
63
+ readonly domain: "synthesis";
64
+ readonly multiSelectable: false;
65
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
66
+ }, {
67
+ readonly strategyKey: "execution-memory-only";
68
+ readonly title: "Execution memory only";
69
+ readonly description: "Synthesize from executionMemory only.";
70
+ readonly domain: "synthesis";
71
+ readonly multiSelectable: false;
72
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
73
+ }, {
74
+ readonly strategyKey: "job-memory-only";
75
+ readonly title: "Job memory only";
76
+ readonly description: "Synthesize from jobMemory only.";
77
+ readonly domain: "synthesis";
78
+ readonly multiSelectable: false;
79
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
80
+ }, {
81
+ readonly strategyKey: "task-memory-only";
82
+ readonly title: "Task memory only";
83
+ readonly description: "Synthesize from taskMemory only.";
84
+ readonly domain: "synthesis";
85
+ readonly multiSelectable: false;
86
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
87
+ }, {
88
+ readonly strategyKey: "full-memory-bundle";
89
+ readonly title: "Full memory bundle";
90
+ readonly description: "Synthesize from jobMemory, taskMemory, and executionMemory together.";
91
+ readonly domain: "synthesis";
92
+ readonly multiSelectable: false;
93
+ readonly appliesTo: ["pre-core-task", "synthesized-context"];
94
+ }];
95
+ export type TaskStrategyKey = (typeof CANONICAL_PRE_CORE_TASK_STRATEGIES)[number]["strategyKey"];
96
+ export type PostCoreTaskStrategyKey = (typeof CANONICAL_POST_CORE_TASK_STRATEGIES)[number]["strategyKey"];
97
+ export declare const CANONICAL_TASK_STRATEGY_KEYS: readonly TaskStrategyKey[];
98
+ export declare const CANONICAL_POST_CORE_TASK_STRATEGY_KEYS: readonly PostCoreTaskStrategyKey[];
99
+ export declare const TASK_STRATEGIES_PRE_CATALOG_ID: "ai-task-strategies-pre";
100
+ export declare const TASK_STRATEGIES_POST_CATALOG_ID: "ai-task-strategies-post";
101
+ /** @deprecated Use {@link TASK_STRATEGIES_PRE_CATALOG_ID}. */
102
+ export declare const TASK_STRATEGIES_CATALOG_ID: "ai-task-strategies-pre";
103
+ export declare const TASK_STRATEGIES_APP_ID: "ai-tasks";
104
+ //# sourceMappingURL=canonicalTaskStrategies.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalTaskStrategies.d.ts","sourceRoot":"","sources":["../../src/task-strategies/canonicalTaskStrategies.ts"],"names":[],"mappings":"AAWA;;GAEG;AACH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0Cc,CAAC;AAE9D;;GAEG;AACH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;EAmBa,CAAC;AAE9D,kEAAkE;AAClE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAqC,CAAC;AAE5E,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,kCAAkC,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;AAEjG,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,mCAAmC,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,CAAC;AAE1G,eAAO,MAAM,4BAA4B,EAAE,SAAS,eAAe,EACL,CAAC;AAE/D,eAAO,MAAM,sCAAsC,EAAE,SAAS,uBAAuB,EACtB,CAAC;AAEhE,eAAO,MAAM,8BAA8B,0BAAoC,CAAC;AAChF,eAAO,MAAM,+BAA+B,2BAAqC,CAAC;AAElF,8DAA8D;AAC9D,eAAO,MAAM,0BAA0B,0BAAoC,CAAC;AAE5E,eAAO,MAAM,sBAAsB,YAAkB,CAAC"}
@@ -0,0 +1,77 @@
1
+ import { AI_TASK_POST_STRATEGIES_CATALOG_ID, AI_TASK_PRE_STRATEGIES_CATALOG_ID, AI_TASKS_APP_ID, TASK_STRATEGY_APPLIES_TO_AUDIT, TASK_STRATEGY_APPLIES_TO_POST_CORE_TASKS, TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT, } from "./constants.js";
2
+ /**
3
+ * Pre–core task strategies: what feeds the synthesis PRE step (`synthesisInputStrategy` on `SynthesisConfig`).
4
+ */
5
+ export const CANONICAL_PRE_CORE_TASK_STRATEGIES = [
6
+ {
7
+ strategyKey: "policy",
8
+ title: "Policy-driven sources",
9
+ description: "Use contextSourcePolicy with narrix, web, and memory composition (default synthesized-context input).",
10
+ domain: "synthesis",
11
+ multiSelectable: false,
12
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT],
13
+ },
14
+ {
15
+ strategyKey: "execution-memory-only",
16
+ title: "Execution memory only",
17
+ description: "Synthesize from executionMemory only.",
18
+ domain: "synthesis",
19
+ multiSelectable: false,
20
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT],
21
+ },
22
+ {
23
+ strategyKey: "job-memory-only",
24
+ title: "Job memory only",
25
+ description: "Synthesize from jobMemory only.",
26
+ domain: "synthesis",
27
+ multiSelectable: false,
28
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT],
29
+ },
30
+ {
31
+ strategyKey: "task-memory-only",
32
+ title: "Task memory only",
33
+ description: "Synthesize from taskMemory only.",
34
+ domain: "synthesis",
35
+ multiSelectable: false,
36
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT],
37
+ },
38
+ {
39
+ strategyKey: "full-memory-bundle",
40
+ title: "Full memory bundle",
41
+ description: "Synthesize from jobMemory, taskMemory, and executionMemory together.",
42
+ domain: "synthesis",
43
+ multiSelectable: false,
44
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_PRE_CORE_TASK, TASK_STRATEGY_APPLIES_TO_SYNTHESIZED_CONTEXT],
45
+ },
46
+ ];
47
+ /**
48
+ * Post–core task strategies: e.g. `AuditConfig.selectionStrategy` after the main task output exists.
49
+ */
50
+ export const CANONICAL_POST_CORE_TASK_STRATEGIES = [
51
+ {
52
+ strategyKey: "best",
53
+ title: "Best candidate",
54
+ description: "Prefer the single highest-scoring candidate from audit checks (default). Does not run cross-candidate synthesis.",
55
+ domain: "audit",
56
+ multiSelectable: false,
57
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_POST_CORE_TASKS, TASK_STRATEGY_APPLIES_TO_AUDIT],
58
+ },
59
+ {
60
+ strategyKey: "synthesis",
61
+ title: "Synthesize across candidates",
62
+ description: "When multiple strong candidates exist, run an additional synthesis pass across them (see audit POST step).",
63
+ domain: "audit",
64
+ multiSelectable: false,
65
+ appliesTo: [TASK_STRATEGY_APPLIES_TO_POST_CORE_TASKS, TASK_STRATEGY_APPLIES_TO_AUDIT],
66
+ },
67
+ ];
68
+ /** @deprecated Use {@link CANONICAL_PRE_CORE_TASK_STRATEGIES}. */
69
+ export const CANONICAL_TASK_STRATEGIES = CANONICAL_PRE_CORE_TASK_STRATEGIES;
70
+ export const CANONICAL_TASK_STRATEGY_KEYS = CANONICAL_PRE_CORE_TASK_STRATEGIES.map((s) => s.strategyKey);
71
+ export const CANONICAL_POST_CORE_TASK_STRATEGY_KEYS = CANONICAL_POST_CORE_TASK_STRATEGIES.map((s) => s.strategyKey);
72
+ export const TASK_STRATEGIES_PRE_CATALOG_ID = AI_TASK_PRE_STRATEGIES_CATALOG_ID;
73
+ export const TASK_STRATEGIES_POST_CATALOG_ID = AI_TASK_POST_STRATEGIES_CATALOG_ID;
74
+ /** @deprecated Use {@link TASK_STRATEGIES_PRE_CATALOG_ID}. */
75
+ export const TASK_STRATEGIES_CATALOG_ID = AI_TASK_PRE_STRATEGIES_CATALOG_ID;
76
+ export const TASK_STRATEGIES_APP_ID = AI_TASKS_APP_ID;
77
+ //# sourceMappingURL=canonicalTaskStrategies.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonicalTaskStrategies.js","sourceRoot":"","sources":["../../src/task-strategies/canonicalTaskStrategies.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,kCAAkC,EAClC,iCAAiC,EACjC,eAAe,EACf,8BAA8B,EAC9B,wCAAwC,EACxC,sCAAsC,EACtC,4CAA4C,GAC7C,MAAM,gBAAgB,CAAC;AAGxB;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG;IAChD;QACE,WAAW,EAAE,QAAQ;QACrB,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EACT,uGAAuG;QACzG,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,CAAC;KAClG;IACD;QACE,WAAW,EAAE,uBAAuB;QACpC,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EAAE,uCAAuC;QACpD,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,CAAC;KAClG;IACD;QACE,WAAW,EAAE,iBAAiB;QAC9B,KAAK,EAAE,iBAAiB;QACxB,WAAW,EAAE,iCAAiC;QAC9C,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,CAAC;KAClG;IACD;QACE,WAAW,EAAE,kBAAkB;QAC/B,KAAK,EAAE,kBAAkB;QACzB,WAAW,EAAE,kCAAkC;QAC/C,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,CAAC;KAClG;IACD;QACE,WAAW,EAAE,oBAAoB;QACjC,KAAK,EAAE,oBAAoB;QAC3B,WAAW,EAAE,sEAAsE;QACnF,MAAM,EAAE,WAAW;QACnB,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,CAAC;KAClG;CAC0D,CAAC;AAE9D;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAG;IACjD;QACE,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,gBAAgB;QACvB,WAAW,EACT,kHAAkH;QACpH,MAAM,EAAE,OAAO;QACf,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,wCAAwC,EAAE,8BAA8B,CAAC;KACtF;IACD;QACE,WAAW,EAAE,WAAW;QACxB,KAAK,EAAE,8BAA8B;QACrC,WAAW,EACT,4GAA4G;QAC9G,MAAM,EAAE,OAAO;QACf,eAAe,EAAE,KAAK;QACtB,SAAS,EAAE,CAAC,wCAAwC,EAAE,8BAA8B,CAAC;KACtF;CAC0D,CAAC;AAE9D,kEAAkE;AAClE,MAAM,CAAC,MAAM,yBAAyB,GAAG,kCAAkC,CAAC;AAM5E,MAAM,CAAC,MAAM,4BAA4B,GACvC,kCAAkC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;AAE/D,MAAM,CAAC,MAAM,sCAAsC,GACjD,mCAAmC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;AAEhE,MAAM,CAAC,MAAM,8BAA8B,GAAG,iCAAiC,CAAC;AAChF,MAAM,CAAC,MAAM,+BAA+B,GAAG,kCAAkC,CAAC;AAElF,8DAA8D;AAC9D,MAAM,CAAC,MAAM,0BAA0B,GAAG,iCAAiC,CAAC;AAE5E,MAAM,CAAC,MAAM,sBAAsB,GAAG,eAAe,CAAC"}
@@ -0,0 +1,55 @@
1
+ import type { AppCatalogBootstrap, AppCatalogEntry, Catalox, CataloxContext, CatalogDescriptor } from "@x12i/catalox";
2
+ import { AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID, AI_TASK_EXECUTION_STRATEGY_CATALOG_ID, AI_TASK_INPUT_STRATEGIES_CATALOG_ID, AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID, AI_TASK_NARRIX_MODES_CATALOG_ID, AI_TASK_POST_STRATEGIES_CATALOG_ID, AI_TASK_PRE_STRATEGIES_CATALOG_ID, AI_TASKS_APP_ID } from "./constants.js";
3
+ import type { ListTaskStrategiesResult } from "./listAiTaskStrategies.js";
4
+ /**
5
+ * Default {@link CataloxContext} for reads scoped to the **ai-tasks** app (task-strategy catalogs).
6
+ */
7
+ export declare function defaultAiTasksCataloxContext(overrides?: Partial<CataloxContext>): CataloxContext;
8
+ /**
9
+ * Lists catalog rows bound to **`ai-tasks`** (discovery: id, label, access, source mode).
10
+ * Thin wrapper over {@link Catalox.listAppCatalogs}.
11
+ */
12
+ export declare function listAiTasksAppCatalogs(catalox: Catalox, context?: CataloxContext, input?: {
13
+ includeDisabled?: boolean;
14
+ includeHidden?: boolean;
15
+ }): Promise<AppCatalogEntry[]>;
16
+ /**
17
+ * Bootstrap payload: every **descriptor** the **`ai-tasks`** app can access (capabilities, identity, query fields).
18
+ * Thin wrapper over {@link Catalox.getAppCatalogBootstrap}.
19
+ */
20
+ export declare function getAiTasksAppCatalogBootstrap(catalox: Catalox, context?: CataloxContext): Promise<AppCatalogBootstrap>;
21
+ /**
22
+ * Descriptor for one strategy catalog (pre or post).
23
+ */
24
+ export declare function getAiTasksTaskStrategiesCatalogDescriptor(catalox: Catalox, catalogId: typeof AI_TASK_PRE_STRATEGIES_CATALOG_ID | typeof AI_TASK_POST_STRATEGIES_CATALOG_ID | typeof AI_TASK_INPUT_STRATEGIES_CATALOG_ID | typeof AI_TASK_EXECUTION_STRATEGY_CATALOG_ID | typeof AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID | typeof AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID | typeof AI_TASK_NARRIX_MODES_CATALOG_ID, context?: CataloxContext): Promise<CatalogDescriptor | null>;
25
+ export type AiTasksTaskStrategiesCatalogSnapshot = {
26
+ appId: typeof AI_TASKS_APP_ID;
27
+ preCatalogId: typeof AI_TASK_PRE_STRATEGIES_CATALOG_ID;
28
+ postCatalogId: typeof AI_TASK_POST_STRATEGIES_CATALOG_ID;
29
+ inputCatalogId: typeof AI_TASK_INPUT_STRATEGIES_CATALOG_ID;
30
+ executionStrategyCatalogId: typeof AI_TASK_EXECUTION_STRATEGY_CATALOG_ID;
31
+ executionCatalogId: typeof AI_TASK_EXECUTION_STRATEGIES_CATALOG_ID;
32
+ mainExecutionWrappersCatalogId: typeof AI_TASK_MAIN_EXECUTION_WRAPPERS_CATALOG_ID;
33
+ narrixModesCatalogId: typeof AI_TASK_NARRIX_MODES_CATALOG_ID;
34
+ pre: ListTaskStrategiesResult;
35
+ post: ListTaskStrategiesResult;
36
+ input: ListTaskStrategiesResult;
37
+ executionStrategy: ListTaskStrategiesResult;
38
+ execution: ListTaskStrategiesResult;
39
+ mainExecutionWrappers: ListTaskStrategiesResult;
40
+ narrixModes: ListTaskStrategiesResult;
41
+ };
42
+ /**
43
+ * Loads every **ai-tasks** strategy catalog in one call (normalized `TaskStrategyItemData` per slice).
44
+ * For raw {@link UnifiedCatalogItem} rows, use {@link Catalox.listCatalogItems} or {@link Catalox.listCatalogItemsWithOutcome} with the catalog ids above.
45
+ */
46
+ export declare function getAiTasksTaskStrategiesCatalogSnapshot(catalox: Catalox, context?: CataloxContext, query?: {
47
+ limitPre?: number;
48
+ limitPost?: number;
49
+ limitInput?: number;
50
+ limitExecutionStrategy?: number;
51
+ limitExecution?: number;
52
+ limitMainExecutionWrappers?: number;
53
+ limitNarrixModes?: number;
54
+ }): Promise<AiTasksTaskStrategiesCatalogSnapshot>;
55
+ //# sourceMappingURL=cataloxCatalogViews.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cataloxCatalogViews.d.ts","sourceRoot":"","sources":["../../src/task-strategies/cataloxCatalogViews.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,mBAAmB,EACnB,eAAe,EACf,OAAO,EACP,cAAc,EACd,iBAAiB,EAClB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,uCAAuC,EACvC,qCAAqC,EACrC,mCAAmC,EACnC,0CAA0C,EAC1C,+BAA+B,EAC/B,kCAAkC,EAClC,iCAAiC,EACjC,eAAe,EAChB,MAAM,gBAAgB,CAAC;AAUxB,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,2BAA2B,CAAC;AAE1E;;GAEG;AACH,wBAAgB,4BAA4B,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC,GAAG,cAAc,CAEhG;AAED;;;GAGG;AACH,wBAAsB,sBAAsB,CAC1C,OAAO,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,cAAc,EACxB,KAAK,CAAC,EAAE;IAAE,eAAe,CAAC,EAAE,OAAO,CAAC;IAAC,aAAa,CAAC,EAAE,OAAO,CAAA;CAAE,GAC7D,OAAO,CAAC,eAAe,EAAE,CAAC,CAG5B;AAED;;;GAGG;AACH,wBAAsB,6BAA6B,CACjD,OAAO,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,mBAAmB,CAAC,CAG9B;AAED;;GAEG;AACH,wBAAsB,yCAAyC,CAC7D,OAAO,EAAE,OAAO,EAChB,SAAS,EACL,OAAO,iCAAiC,GACxC,OAAO,kCAAkC,GACzC,OAAO,mCAAmC,GAC1C,OAAO,qCAAqC,GAC5C,OAAO,uCAAuC,GAC9C,OAAO,0CAA0C,GACjD,OAAO,+BAA+B,EAC1C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAGnC;AAED,MAAM,MAAM,oCAAoC,GAAG;IACjD,KAAK,EAAE,OAAO,eAAe,CAAC;IAC9B,YAAY,EAAE,OAAO,iCAAiC,CAAC;IACvD,aAAa,EAAE,OAAO,kCAAkC,CAAC;IACzD,cAAc,EAAE,OAAO,mCAAmC,CAAC;IAC3D,0BAA0B,EAAE,OAAO,qCAAqC,CAAC;IACzE,kBAAkB,EAAE,OAAO,uCAAuC,CAAC;IACnE,8BAA8B,EAAE,OAAO,0CAA0C,CAAC;IAClF,oBAAoB,EAAE,OAAO,+BAA+B,CAAC;IAC7D,GAAG,EAAE,wBAAwB,CAAC;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,KAAK,EAAE,wBAAwB,CAAC;IAChC,iBAAiB,EAAE,wBAAwB,CAAC;IAC5C,SAAS,EAAE,wBAAwB,CAAC;IACpC,qBAAqB,EAAE,wBAAwB,CAAC;IAChD,WAAW,EAAE,wBAAwB,CAAC;CACvC,CAAC;AAEF;;;GAGG;AACH,wBAAsB,uCAAuC,CAC3D,OAAO,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,cAAc,EACxB,KAAK,CAAC,EAAE;IACN,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B,GACA,OAAO,CAAC,oCAAoC,CAAC,CA4B/C"}