@actrun_ai/tastekit-core 0.1.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 (389) hide show
  1. package/dist/compiler/compiler.d.ts +24 -0
  2. package/dist/compiler/compiler.d.ts.map +1 -0
  3. package/dist/compiler/compiler.js +153 -0
  4. package/dist/compiler/compiler.js.map +1 -0
  5. package/dist/compiler/constitution-compiler.d.ts +11 -0
  6. package/dist/compiler/constitution-compiler.d.ts.map +1 -0
  7. package/dist/compiler/constitution-compiler.js +154 -0
  8. package/dist/compiler/constitution-compiler.js.map +1 -0
  9. package/dist/compiler/derivation.d.ts +125 -0
  10. package/dist/compiler/derivation.d.ts.map +1 -0
  11. package/dist/compiler/derivation.js +109 -0
  12. package/dist/compiler/derivation.js.map +1 -0
  13. package/dist/compiler/guardrails-compiler.d.ts +11 -0
  14. package/dist/compiler/guardrails-compiler.d.ts.map +1 -0
  15. package/dist/compiler/guardrails-compiler.js +362 -0
  16. package/dist/compiler/guardrails-compiler.js.map +1 -0
  17. package/dist/compiler/index.d.ts +13 -0
  18. package/dist/compiler/index.d.ts.map +1 -0
  19. package/dist/compiler/index.js +13 -0
  20. package/dist/compiler/index.js.map +1 -0
  21. package/dist/compiler/memory-compiler.d.ts +12 -0
  22. package/dist/compiler/memory-compiler.d.ts.map +1 -0
  23. package/dist/compiler/memory-compiler.js +293 -0
  24. package/dist/compiler/memory-compiler.js.map +1 -0
  25. package/dist/compiler/playbook-compiler.d.ts +15 -0
  26. package/dist/compiler/playbook-compiler.d.ts.map +1 -0
  27. package/dist/compiler/playbook-compiler.js +1143 -0
  28. package/dist/compiler/playbook-compiler.js.map +1 -0
  29. package/dist/compiler/skills-compiler.d.ts +15 -0
  30. package/dist/compiler/skills-compiler.d.ts.map +1 -0
  31. package/dist/compiler/skills-compiler.js +203 -0
  32. package/dist/compiler/skills-compiler.js.map +1 -0
  33. package/dist/domains/development-agent/domain.d.ts +8 -0
  34. package/dist/domains/development-agent/domain.d.ts.map +1 -0
  35. package/dist/domains/development-agent/domain.js +35 -0
  36. package/dist/domains/development-agent/domain.js.map +1 -0
  37. package/dist/domains/development-agent/index.d.ts +3 -0
  38. package/dist/domains/development-agent/index.d.ts.map +1 -0
  39. package/dist/domains/development-agent/index.js +3 -0
  40. package/dist/domains/development-agent/index.js.map +1 -0
  41. package/dist/domains/development-agent/rubric.d.ts +13 -0
  42. package/dist/domains/development-agent/rubric.d.ts.map +1 -0
  43. package/dist/domains/development-agent/rubric.js +451 -0
  44. package/dist/domains/development-agent/rubric.js.map +1 -0
  45. package/dist/domains/development-agent/skills/code-review.d.ts +25 -0
  46. package/dist/domains/development-agent/skills/code-review.d.ts.map +1 -0
  47. package/dist/domains/development-agent/skills/code-review.js +146 -0
  48. package/dist/domains/development-agent/skills/code-review.js.map +1 -0
  49. package/dist/domains/development-agent/skills/debugging-issues.d.ts +25 -0
  50. package/dist/domains/development-agent/skills/debugging-issues.d.ts.map +1 -0
  51. package/dist/domains/development-agent/skills/debugging-issues.js +155 -0
  52. package/dist/domains/development-agent/skills/debugging-issues.js.map +1 -0
  53. package/dist/domains/development-agent/skills/documenting-code.d.ts +19 -0
  54. package/dist/domains/development-agent/skills/documenting-code.d.ts.map +1 -0
  55. package/dist/domains/development-agent/skills/documenting-code.js +92 -0
  56. package/dist/domains/development-agent/skills/documenting-code.js.map +1 -0
  57. package/dist/domains/development-agent/skills/index.d.ts +55 -0
  58. package/dist/domains/development-agent/skills/index.d.ts.map +1 -0
  59. package/dist/domains/development-agent/skills/index.js +19 -0
  60. package/dist/domains/development-agent/skills/index.js.map +1 -0
  61. package/dist/domains/development-agent/skills/refactor-plan.d.ts +19 -0
  62. package/dist/domains/development-agent/skills/refactor-plan.d.ts.map +1 -0
  63. package/dist/domains/development-agent/skills/refactor-plan.js +117 -0
  64. package/dist/domains/development-agent/skills/refactor-plan.js.map +1 -0
  65. package/dist/domains/development-agent/skills/writing-tests.d.ts +20 -0
  66. package/dist/domains/development-agent/skills/writing-tests.d.ts.map +1 -0
  67. package/dist/domains/development-agent/skills/writing-tests.js +93 -0
  68. package/dist/domains/development-agent/skills/writing-tests.js.map +1 -0
  69. package/dist/domains/general-agent/domain.d.ts +9 -0
  70. package/dist/domains/general-agent/domain.d.ts.map +1 -0
  71. package/dist/domains/general-agent/domain.js +36 -0
  72. package/dist/domains/general-agent/domain.js.map +1 -0
  73. package/dist/domains/general-agent/index.d.ts +4 -0
  74. package/dist/domains/general-agent/index.d.ts.map +1 -0
  75. package/dist/domains/general-agent/index.js +4 -0
  76. package/dist/domains/general-agent/index.js.map +1 -0
  77. package/dist/domains/general-agent/rubric.d.ts +8 -0
  78. package/dist/domains/general-agent/rubric.d.ts.map +1 -0
  79. package/dist/domains/general-agent/rubric.js +332 -0
  80. package/dist/domains/general-agent/rubric.js.map +1 -0
  81. package/dist/domains/general-agent/skills/context-synthesis.d.ts +19 -0
  82. package/dist/domains/general-agent/skills/context-synthesis.d.ts.map +1 -0
  83. package/dist/domains/general-agent/skills/context-synthesis.js +94 -0
  84. package/dist/domains/general-agent/skills/context-synthesis.js.map +1 -0
  85. package/dist/domains/general-agent/skills/index.d.ts +32 -0
  86. package/dist/domains/general-agent/skills/index.d.ts.map +1 -0
  87. package/dist/domains/general-agent/skills/index.js +11 -0
  88. package/dist/domains/general-agent/skills/index.js.map +1 -0
  89. package/dist/domains/general-agent/skills/task-orchestration.d.ts +19 -0
  90. package/dist/domains/general-agent/skills/task-orchestration.d.ts.map +1 -0
  91. package/dist/domains/general-agent/skills/task-orchestration.js +101 -0
  92. package/dist/domains/general-agent/skills/task-orchestration.js.map +1 -0
  93. package/dist/domains/index.d.ts +21 -0
  94. package/dist/domains/index.d.ts.map +1 -0
  95. package/dist/domains/index.js +37 -0
  96. package/dist/domains/index.js.map +1 -0
  97. package/dist/domains/types.d.ts +22 -0
  98. package/dist/domains/types.d.ts.map +1 -0
  99. package/dist/domains/types.js +2 -0
  100. package/dist/domains/types.js.map +1 -0
  101. package/dist/drift/consolidator.d.ts +47 -0
  102. package/dist/drift/consolidator.d.ts.map +1 -0
  103. package/dist/drift/consolidator.js +116 -0
  104. package/dist/drift/consolidator.js.map +1 -0
  105. package/dist/drift/detector.d.ts +79 -0
  106. package/dist/drift/detector.d.ts.map +1 -0
  107. package/dist/drift/detector.js +424 -0
  108. package/dist/drift/detector.js.map +1 -0
  109. package/dist/drift/index.d.ts +9 -0
  110. package/dist/drift/index.d.ts.map +1 -0
  111. package/dist/drift/index.js +9 -0
  112. package/dist/drift/index.js.map +1 -0
  113. package/dist/drift/proposal.d.ts +108 -0
  114. package/dist/drift/proposal.d.ts.map +1 -0
  115. package/dist/drift/proposal.js +2 -0
  116. package/dist/drift/proposal.js.map +1 -0
  117. package/dist/eval/index.d.ts +9 -0
  118. package/dist/eval/index.d.ts.map +1 -0
  119. package/dist/eval/index.js +9 -0
  120. package/dist/eval/index.js.map +1 -0
  121. package/dist/eval/judge.d.ts +33 -0
  122. package/dist/eval/judge.d.ts.map +1 -0
  123. package/dist/eval/judge.js +209 -0
  124. package/dist/eval/judge.js.map +1 -0
  125. package/dist/eval/replay.d.ts +23 -0
  126. package/dist/eval/replay.d.ts.map +1 -0
  127. package/dist/eval/replay.js +42 -0
  128. package/dist/eval/replay.js.map +1 -0
  129. package/dist/eval/runner.d.ts +35 -0
  130. package/dist/eval/runner.d.ts.map +1 -0
  131. package/dist/eval/runner.js +52 -0
  132. package/dist/eval/runner.js.map +1 -0
  133. package/dist/generators/agents-md-generator.d.ts +9 -0
  134. package/dist/generators/agents-md-generator.d.ts.map +1 -0
  135. package/dist/generators/agents-md-generator.js +71 -0
  136. package/dist/generators/agents-md-generator.js.map +1 -0
  137. package/dist/generators/blocks/domain-context.d.ts +7 -0
  138. package/dist/generators/blocks/domain-context.d.ts.map +1 -0
  139. package/dist/generators/blocks/domain-context.js +26 -0
  140. package/dist/generators/blocks/domain-context.js.map +1 -0
  141. package/dist/generators/blocks/drift-awareness.d.ts +6 -0
  142. package/dist/generators/blocks/drift-awareness.d.ts.map +1 -0
  143. package/dist/generators/blocks/drift-awareness.js +28 -0
  144. package/dist/generators/blocks/drift-awareness.js.map +1 -0
  145. package/dist/generators/blocks/evaluation-criteria.d.ts +7 -0
  146. package/dist/generators/blocks/evaluation-criteria.d.ts.map +1 -0
  147. package/dist/generators/blocks/evaluation-criteria.js +18 -0
  148. package/dist/generators/blocks/evaluation-criteria.js.map +1 -0
  149. package/dist/generators/blocks/guardrails.d.ts +6 -0
  150. package/dist/generators/blocks/guardrails.d.ts.map +1 -0
  151. package/dist/generators/blocks/guardrails.js +44 -0
  152. package/dist/generators/blocks/guardrails.js.map +1 -0
  153. package/dist/generators/blocks/identity.d.ts +6 -0
  154. package/dist/generators/blocks/identity.d.ts.map +1 -0
  155. package/dist/generators/blocks/identity.js +36 -0
  156. package/dist/generators/blocks/identity.js.map +1 -0
  157. package/dist/generators/blocks/memory-policy.d.ts +6 -0
  158. package/dist/generators/blocks/memory-policy.d.ts.map +1 -0
  159. package/dist/generators/blocks/memory-policy.js +34 -0
  160. package/dist/generators/blocks/memory-policy.js.map +1 -0
  161. package/dist/generators/blocks/playbook-index.d.ts +7 -0
  162. package/dist/generators/blocks/playbook-index.d.ts.map +1 -0
  163. package/dist/generators/blocks/playbook-index.js +14 -0
  164. package/dist/generators/blocks/playbook-index.js.map +1 -0
  165. package/dist/generators/blocks/session-rhythm.d.ts +6 -0
  166. package/dist/generators/blocks/session-rhythm.d.ts.map +1 -0
  167. package/dist/generators/blocks/session-rhythm.js +11 -0
  168. package/dist/generators/blocks/session-rhythm.js.map +1 -0
  169. package/dist/generators/blocks/skills-index.d.ts +6 -0
  170. package/dist/generators/blocks/skills-index.d.ts.map +1 -0
  171. package/dist/generators/blocks/skills-index.js +36 -0
  172. package/dist/generators/blocks/skills-index.js.map +1 -0
  173. package/dist/generators/blocks/tool-usage.d.ts +6 -0
  174. package/dist/generators/blocks/tool-usage.d.ts.map +1 -0
  175. package/dist/generators/blocks/tool-usage.js +31 -0
  176. package/dist/generators/blocks/tool-usage.js.map +1 -0
  177. package/dist/generators/blocks/vocabulary.d.ts +7 -0
  178. package/dist/generators/blocks/vocabulary.d.ts.map +1 -0
  179. package/dist/generators/blocks/vocabulary.js +27 -0
  180. package/dist/generators/blocks/vocabulary.js.map +1 -0
  181. package/dist/generators/claude-hooks-compat.d.ts +33 -0
  182. package/dist/generators/claude-hooks-compat.d.ts.map +1 -0
  183. package/dist/generators/claude-hooks-compat.js +322 -0
  184. package/dist/generators/claude-hooks-compat.js.map +1 -0
  185. package/dist/generators/claude-md-generator.d.ts +12 -0
  186. package/dist/generators/claude-md-generator.d.ts.map +1 -0
  187. package/dist/generators/claude-md-generator.js +60 -0
  188. package/dist/generators/claude-md-generator.js.map +1 -0
  189. package/dist/generators/index.d.ts +11 -0
  190. package/dist/generators/index.d.ts.map +1 -0
  191. package/dist/generators/index.js +11 -0
  192. package/dist/generators/index.js.map +1 -0
  193. package/dist/generators/soul-md-generator.d.ts +9 -0
  194. package/dist/generators/soul-md-generator.d.ts.map +1 -0
  195. package/dist/generators/soul-md-generator.js +104 -0
  196. package/dist/generators/soul-md-generator.js.map +1 -0
  197. package/dist/generators/types.d.ts +55 -0
  198. package/dist/generators/types.d.ts.map +1 -0
  199. package/dist/generators/types.js +7 -0
  200. package/dist/generators/types.js.map +1 -0
  201. package/dist/index.d.ts +19 -0
  202. package/dist/index.d.ts.map +1 -0
  203. package/dist/index.js +20 -0
  204. package/dist/index.js.map +1 -0
  205. package/dist/interview/index.d.ts +11 -0
  206. package/dist/interview/index.d.ts.map +1 -0
  207. package/dist/interview/index.js +11 -0
  208. package/dist/interview/index.js.map +1 -0
  209. package/dist/interview/interviewer.d.ts +94 -0
  210. package/dist/interview/interviewer.d.ts.map +1 -0
  211. package/dist/interview/interviewer.js +516 -0
  212. package/dist/interview/interviewer.js.map +1 -0
  213. package/dist/interview/questions.d.ts +15 -0
  214. package/dist/interview/questions.d.ts.map +1 -0
  215. package/dist/interview/questions.js +86 -0
  216. package/dist/interview/questions.js.map +1 -0
  217. package/dist/interview/rubric.d.ts +265 -0
  218. package/dist/interview/rubric.d.ts.map +1 -0
  219. package/dist/interview/rubric.js +74 -0
  220. package/dist/interview/rubric.js.map +1 -0
  221. package/dist/interview/session.d.ts +9 -0
  222. package/dist/interview/session.d.ts.map +1 -0
  223. package/dist/interview/session.js +33 -0
  224. package/dist/interview/session.js.map +1 -0
  225. package/dist/interview/universal-rubric.d.ts +11 -0
  226. package/dist/interview/universal-rubric.d.ts.map +1 -0
  227. package/dist/interview/universal-rubric.js +165 -0
  228. package/dist/interview/universal-rubric.js.map +1 -0
  229. package/dist/llm/index.d.ts +8 -0
  230. package/dist/llm/index.d.ts.map +1 -0
  231. package/dist/llm/index.js +8 -0
  232. package/dist/llm/index.js.map +1 -0
  233. package/dist/llm/provider.d.ts +62 -0
  234. package/dist/llm/provider.d.ts.map +1 -0
  235. package/dist/llm/provider.js +24 -0
  236. package/dist/llm/provider.js.map +1 -0
  237. package/dist/llm/providers/anthropic.d.ts +18 -0
  238. package/dist/llm/providers/anthropic.d.ts.map +1 -0
  239. package/dist/llm/providers/anthropic.js +56 -0
  240. package/dist/llm/providers/anthropic.js.map +1 -0
  241. package/dist/llm/providers/ollama.d.ts +17 -0
  242. package/dist/llm/providers/ollama.d.ts.map +1 -0
  243. package/dist/llm/providers/ollama.js +45 -0
  244. package/dist/llm/providers/ollama.js.map +1 -0
  245. package/dist/llm/providers/openai.d.ts +19 -0
  246. package/dist/llm/providers/openai.d.ts.map +1 -0
  247. package/dist/llm/providers/openai.js +52 -0
  248. package/dist/llm/providers/openai.js.map +1 -0
  249. package/dist/llm/resolve.d.ts +11 -0
  250. package/dist/llm/resolve.d.ts.map +1 -0
  251. package/dist/llm/resolve.js +56 -0
  252. package/dist/llm/resolve.js.map +1 -0
  253. package/dist/mcp/binder.d.ts +28 -0
  254. package/dist/mcp/binder.d.ts.map +1 -0
  255. package/dist/mcp/binder.js +87 -0
  256. package/dist/mcp/binder.js.map +1 -0
  257. package/dist/mcp/client.d.ts +99 -0
  258. package/dist/mcp/client.d.ts.map +1 -0
  259. package/dist/mcp/client.js +196 -0
  260. package/dist/mcp/client.js.map +1 -0
  261. package/dist/mcp/index.d.ts +9 -0
  262. package/dist/mcp/index.d.ts.map +1 -0
  263. package/dist/mcp/index.js +9 -0
  264. package/dist/mcp/index.js.map +1 -0
  265. package/dist/mcp/inspector.d.ts +29 -0
  266. package/dist/mcp/inspector.d.ts.map +1 -0
  267. package/dist/mcp/inspector.js +44 -0
  268. package/dist/mcp/inspector.js.map +1 -0
  269. package/dist/schemas/bindings.d.ts +248 -0
  270. package/dist/schemas/bindings.d.ts.map +1 -0
  271. package/dist/schemas/bindings.js +34 -0
  272. package/dist/schemas/bindings.js.map +1 -0
  273. package/dist/schemas/constitution.d.ts +229 -0
  274. package/dist/schemas/constitution.d.ts.map +1 -0
  275. package/dist/schemas/constitution.js +47 -0
  276. package/dist/schemas/constitution.js.map +1 -0
  277. package/dist/schemas/evalpack.d.ts +322 -0
  278. package/dist/schemas/evalpack.d.ts.map +1 -0
  279. package/dist/schemas/evalpack.js +43 -0
  280. package/dist/schemas/evalpack.js.map +1 -0
  281. package/dist/schemas/guardrails.d.ts +171 -0
  282. package/dist/schemas/guardrails.d.ts.map +1 -0
  283. package/dist/schemas/guardrails.js +35 -0
  284. package/dist/schemas/guardrails.js.map +1 -0
  285. package/dist/schemas/index.d.ts +18 -0
  286. package/dist/schemas/index.d.ts.map +1 -0
  287. package/dist/schemas/index.js +18 -0
  288. package/dist/schemas/index.js.map +1 -0
  289. package/dist/schemas/memory.d.ts +277 -0
  290. package/dist/schemas/memory.d.ts.map +1 -0
  291. package/dist/schemas/memory.js +42 -0
  292. package/dist/schemas/memory.js.map +1 -0
  293. package/dist/schemas/playbook.d.ts +270 -0
  294. package/dist/schemas/playbook.d.ts.map +1 -0
  295. package/dist/schemas/playbook.js +52 -0
  296. package/dist/schemas/playbook.js.map +1 -0
  297. package/dist/schemas/skills.d.ts +320 -0
  298. package/dist/schemas/skills.d.ts.map +1 -0
  299. package/dist/schemas/skills.js +84 -0
  300. package/dist/schemas/skills.js.map +1 -0
  301. package/dist/schemas/trace.d.ts +126 -0
  302. package/dist/schemas/trace.d.ts.map +1 -0
  303. package/dist/schemas/trace.js +70 -0
  304. package/dist/schemas/trace.js.map +1 -0
  305. package/dist/schemas/trust.d.ts +142 -0
  306. package/dist/schemas/trust.d.ts.map +1 -0
  307. package/dist/schemas/trust.js +30 -0
  308. package/dist/schemas/trust.js.map +1 -0
  309. package/dist/schemas/validators.d.ts +26 -0
  310. package/dist/schemas/validators.d.ts.map +1 -0
  311. package/dist/schemas/validators.js +79 -0
  312. package/dist/schemas/validators.js.map +1 -0
  313. package/dist/schemas/workspace.d.ts +725 -0
  314. package/dist/schemas/workspace.d.ts.map +1 -0
  315. package/dist/schemas/workspace.js +119 -0
  316. package/dist/schemas/workspace.js.map +1 -0
  317. package/dist/skills/constraints.d.ts +19 -0
  318. package/dist/skills/constraints.d.ts.map +1 -0
  319. package/dist/skills/constraints.js +91 -0
  320. package/dist/skills/constraints.js.map +1 -0
  321. package/dist/skills/generator.d.ts +13 -0
  322. package/dist/skills/generator.d.ts.map +1 -0
  323. package/dist/skills/generator.js +126 -0
  324. package/dist/skills/generator.js.map +1 -0
  325. package/dist/skills/graph.d.ts +42 -0
  326. package/dist/skills/graph.d.ts.map +1 -0
  327. package/dist/skills/graph.js +217 -0
  328. package/dist/skills/graph.js.map +1 -0
  329. package/dist/skills/index.d.ts +13 -0
  330. package/dist/skills/index.d.ts.map +1 -0
  331. package/dist/skills/index.js +13 -0
  332. package/dist/skills/index.js.map +1 -0
  333. package/dist/skills/linter.d.ts +22 -0
  334. package/dist/skills/linter.d.ts.map +1 -0
  335. package/dist/skills/linter.js +201 -0
  336. package/dist/skills/linter.js.map +1 -0
  337. package/dist/skills/packer.d.ts +27 -0
  338. package/dist/skills/packer.d.ts.map +1 -0
  339. package/dist/skills/packer.js +72 -0
  340. package/dist/skills/packer.js.map +1 -0
  341. package/dist/skills/tracker.d.ts +27 -0
  342. package/dist/skills/tracker.d.ts.map +1 -0
  343. package/dist/skills/tracker.js +131 -0
  344. package/dist/skills/tracker.js.map +1 -0
  345. package/dist/skills/versioner.d.ts +19 -0
  346. package/dist/skills/versioner.d.ts.map +1 -0
  347. package/dist/skills/versioner.js +76 -0
  348. package/dist/skills/versioner.js.map +1 -0
  349. package/dist/tracing/index.d.ts +8 -0
  350. package/dist/tracing/index.d.ts.map +1 -0
  351. package/dist/tracing/index.js +8 -0
  352. package/dist/tracing/index.js.map +1 -0
  353. package/dist/tracing/reader.d.ts +18 -0
  354. package/dist/tracing/reader.d.ts.map +1 -0
  355. package/dist/tracing/reader.js +34 -0
  356. package/dist/tracing/reader.js.map +1 -0
  357. package/dist/tracing/tracer.d.ts +22 -0
  358. package/dist/tracing/tracer.d.ts.map +1 -0
  359. package/dist/tracing/tracer.js +105 -0
  360. package/dist/tracing/tracer.js.map +1 -0
  361. package/dist/trust/auditor.d.ts +35 -0
  362. package/dist/trust/auditor.d.ts.map +1 -0
  363. package/dist/trust/auditor.js +78 -0
  364. package/dist/trust/auditor.js.map +1 -0
  365. package/dist/trust/index.d.ts +8 -0
  366. package/dist/trust/index.d.ts.map +1 -0
  367. package/dist/trust/index.js +8 -0
  368. package/dist/trust/index.js.map +1 -0
  369. package/dist/trust/manager.d.ts +18 -0
  370. package/dist/trust/manager.d.ts.map +1 -0
  371. package/dist/trust/manager.js +60 -0
  372. package/dist/trust/manager.js.map +1 -0
  373. package/dist/utils/filesystem.d.ts +15 -0
  374. package/dist/utils/filesystem.d.ts.map +1 -0
  375. package/dist/utils/filesystem.js +53 -0
  376. package/dist/utils/filesystem.js.map +1 -0
  377. package/dist/utils/hash.d.ts +7 -0
  378. package/dist/utils/hash.d.ts.map +1 -0
  379. package/dist/utils/hash.js +15 -0
  380. package/dist/utils/hash.js.map +1 -0
  381. package/dist/utils/index.d.ts +7 -0
  382. package/dist/utils/index.d.ts.map +1 -0
  383. package/dist/utils/index.js +7 -0
  384. package/dist/utils/index.js.map +1 -0
  385. package/dist/utils/yaml.d.ts +6 -0
  386. package/dist/utils/yaml.d.ts.map +1 -0
  387. package/dist/utils/yaml.js +14 -0
  388. package/dist/utils/yaml.js.map +1 -0
  389. package/package.json +58 -0
@@ -0,0 +1,36 @@
1
+ /**
2
+ * General Agent Domain
3
+ *
4
+ * Broad domain for operators who want one adaptable assistant that can
5
+ * plan, research, execute, and report across mixed workflows.
6
+ */
7
+ export const GeneralAgentDomain = {
8
+ id: 'general-agent',
9
+ name: 'General Agent',
10
+ description: 'General-purpose assistant for mixed operational, research, and execution workflows',
11
+ version: '0.5.0',
12
+ use_cases: [
13
+ 'Cross-functional task execution across planning, research, and delivery',
14
+ 'Daily operator/copilot support for mixed technical and non-technical work',
15
+ 'Inbox, project, and decision workflow orchestration',
16
+ 'Rapid context synthesis and action planning under uncertainty',
17
+ ],
18
+ recommended_tools: [
19
+ 'file-system',
20
+ 'web-search',
21
+ 'code-execution',
22
+ 'git-integration',
23
+ 'calendar-or-task-manager',
24
+ ],
25
+ default_autonomy_level: 0.6,
26
+ vocabulary: {
27
+ principles_heading: 'Operating Principles',
28
+ guardrails_heading: 'Execution Guardrails',
29
+ skills_heading: 'Operating Workflows',
30
+ constitution_label: 'Operator Profile',
31
+ skill_label: 'Workflow',
32
+ playbook_label: 'Runbook',
33
+ drift_verb: 'Behavior drift',
34
+ },
35
+ };
36
+ //# sourceMappingURL=domain.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"domain.js","sourceRoot":"","sources":["../../../domains/general-agent/domain.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,MAAM,CAAC,MAAM,kBAAkB,GAAqB;IAClD,EAAE,EAAE,eAAe;IACnB,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,oFAAoF;IACjG,OAAO,EAAE,OAAO;IAChB,SAAS,EAAE;QACT,yEAAyE;QACzE,2EAA2E;QAC3E,qDAAqD;QACrD,+DAA+D;KAChE;IACD,iBAAiB,EAAE;QACjB,aAAa;QACb,YAAY;QACZ,gBAAgB;QAChB,iBAAiB;QACjB,0BAA0B;KAC3B;IACD,sBAAsB,EAAE,GAAG;IAC3B,UAAU,EAAE;QACV,kBAAkB,EAAE,sBAAsB;QAC1C,kBAAkB,EAAE,sBAAsB;QAC1C,cAAc,EAAE,qBAAqB;QACrC,kBAAkB,EAAE,kBAAkB;QACtC,WAAW,EAAE,UAAU;QACvB,cAAc,EAAE,SAAS;QACzB,UAAU,EAAE,gBAAgB;KAC7B;CACF,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './domain.js';
2
+ export * from './rubric.js';
3
+ export * from './skills/index.js';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../domains/general-agent/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './domain.js';
2
+ export * from './rubric.js';
3
+ export * from './skills/index.js';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../domains/general-agent/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * General Agent Rubric
3
+ *
4
+ * 18 domain-specific dimensions for broad, cross-functional agents.
5
+ */
6
+ import { DomainRubric } from '../../interview/rubric.js';
7
+ export declare const GeneralAgentRubric: DomainRubric;
8
+ //# sourceMappingURL=rubric.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rubric.d.ts","sourceRoot":"","sources":["../../../domains/general-agent/rubric.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,eAAO,MAAM,kBAAkB,EAAE,YAuUhC,CAAC"}
@@ -0,0 +1,332 @@
1
+ /**
2
+ * General Agent Rubric
3
+ *
4
+ * 18 domain-specific dimensions for broad, cross-functional agents.
5
+ */
6
+ export const GeneralAgentRubric = {
7
+ domain_id: 'general-agent',
8
+ version: '1.0.0',
9
+ interview_goal: 'Capture how the user wants a general-purpose agent to plan, act, communicate, and escalate across mixed workflows.',
10
+ includes_universal: true,
11
+ dimensions: [
12
+ // === QUICK TIER ===
13
+ {
14
+ id: 'mission_scope',
15
+ name: 'Mission Scope and Boundaries',
16
+ description: 'Defines what this agent is primarily responsible for and what is out of scope.',
17
+ maps_to: ['principles', 'domain_specific'],
18
+ depth_tiers: ['quick', 'guided', 'operator'],
19
+ priority: 'critical',
20
+ question_budget: { min: 1, max: 2 },
21
+ exploration_hints: [
22
+ 'Identify primary jobs-to-be-done and recurring requests.',
23
+ 'Clarify what the agent should explicitly decline or defer.',
24
+ ],
25
+ coverage_criteria: [
26
+ 'Core mission areas are named with examples.',
27
+ 'Out-of-scope categories are explicit.',
28
+ ],
29
+ cascade_to: [
30
+ { dimension_id: 'prioritization_framework', weight: 0.2 },
31
+ ],
32
+ },
33
+ {
34
+ id: 'decision_style',
35
+ name: 'Decision-Making Style',
36
+ description: 'How the agent should reason through tradeoffs and present recommendations.',
37
+ maps_to: ['tradeoffs', 'domain_specific'],
38
+ depth_tiers: ['quick', 'guided', 'operator'],
39
+ priority: 'critical',
40
+ question_budget: { min: 1, max: 2 },
41
+ exploration_hints: [
42
+ 'Ask if user prefers options-first vs recommendation-first outputs.',
43
+ 'Probe tolerance for ambiguity vs decisive recommendations.',
44
+ ],
45
+ coverage_criteria: [
46
+ 'Preferred recommendation format is clear.',
47
+ 'Decision confidence and uncertainty style is defined.',
48
+ ],
49
+ cascade_to: [
50
+ { dimension_id: 'autonomy_boundaries', weight: 0.2 },
51
+ ],
52
+ },
53
+ {
54
+ id: 'autonomy_boundaries',
55
+ name: 'Autonomy and Approval Boundaries',
56
+ description: 'When the agent should act independently versus ask for confirmation.',
57
+ maps_to: ['tradeoffs', 'taboos', 'domain_specific'],
58
+ depth_tiers: ['quick', 'guided', 'operator'],
59
+ priority: 'critical',
60
+ question_budget: { min: 1, max: 2 },
61
+ exploration_hints: [
62
+ 'Capture irreversible actions that always need approval.',
63
+ 'Identify safe low-risk actions that can be automated.',
64
+ ],
65
+ coverage_criteria: [
66
+ 'Autonomous action envelope is explicitly bounded.',
67
+ 'Escalation triggers and approval points are documented.',
68
+ ],
69
+ },
70
+ {
71
+ id: 'communication_contract',
72
+ name: 'Communication Contract',
73
+ description: 'Preferred voice, response structure, and reporting cadence for day-to-day interaction.',
74
+ maps_to: ['tone', 'principles'],
75
+ depth_tiers: ['quick', 'guided', 'operator'],
76
+ priority: 'important',
77
+ question_budget: { min: 0, max: 1 },
78
+ exploration_hints: [
79
+ 'Ask about brevity vs detail and preferred formatting.',
80
+ 'Probe how often proactive updates are expected.',
81
+ ],
82
+ coverage_criteria: [
83
+ 'Tone and formatting preferences are concrete.',
84
+ 'Update cadence and status-report style are specified.',
85
+ ],
86
+ },
87
+ {
88
+ id: 'evidence_rigor',
89
+ name: 'Evidence and Verification Rigor',
90
+ description: 'How strongly the agent should verify claims, cite sources, and annotate uncertainty.',
91
+ maps_to: ['evidence_policy', 'domain_specific'],
92
+ depth_tiers: ['quick', 'guided', 'operator'],
93
+ priority: 'critical',
94
+ question_budget: { min: 1, max: 2 },
95
+ exploration_hints: [
96
+ 'Determine citation expectations by task type.',
97
+ 'Capture red lines for unsupported claims.',
98
+ ],
99
+ coverage_criteria: [
100
+ 'Verification depth expectations are defined.',
101
+ 'Citation and uncertainty rules are explicit.',
102
+ ],
103
+ cascade_to: [
104
+ { dimension_id: 'quality_bar', weight: 0.2 },
105
+ ],
106
+ },
107
+ {
108
+ id: 'risk_escalation',
109
+ name: 'Risk and Escalation Policy',
110
+ description: 'Operational and ethical situations that require immediate escalation.',
111
+ maps_to: ['taboos', 'tradeoffs', 'domain_specific'],
112
+ depth_tiers: ['quick', 'guided', 'operator'],
113
+ priority: 'critical',
114
+ question_budget: { min: 1, max: 2 },
115
+ exploration_hints: [
116
+ 'Identify legal, financial, reputational, or privacy-sensitive triggers.',
117
+ 'Clarify stop/ask/escalate behavior under uncertainty.',
118
+ ],
119
+ coverage_criteria: [
120
+ 'High-risk categories are enumerated.',
121
+ 'Escalation response and fallback behavior are explicit.',
122
+ ],
123
+ },
124
+ // === GUIDED TIER ===
125
+ {
126
+ id: 'planning_horizon',
127
+ name: 'Planning Horizon and Cadence',
128
+ description: 'How far ahead the agent should plan and how often plans should be revisited.',
129
+ maps_to: ['tradeoffs', 'domain_specific'],
130
+ depth_tiers: ['guided', 'operator'],
131
+ priority: 'important',
132
+ question_budget: { min: 0, max: 1 },
133
+ exploration_hints: [
134
+ 'Capture short-term execution cadence and long-range planning expectations.',
135
+ 'Ask how frequently priorities should be re-evaluated.',
136
+ ],
137
+ coverage_criteria: [
138
+ 'Near-term vs long-term planning balance is clear.',
139
+ 'Review and replanning cadence is specified.',
140
+ ],
141
+ },
142
+ {
143
+ id: 'tooling_preferences',
144
+ name: 'Tooling and Systems Preferences',
145
+ description: 'Preferred tools, integrations, and operational systems for execution.',
146
+ maps_to: ['domain_specific'],
147
+ depth_tiers: ['guided', 'operator'],
148
+ priority: 'important',
149
+ question_budget: { min: 0, max: 1 },
150
+ exploration_hints: [
151
+ 'Identify preferred toolchain and any banned tools.',
152
+ 'Capture reliability expectations for external systems.',
153
+ ],
154
+ coverage_criteria: [
155
+ 'Must-use and must-avoid tools are listed.',
156
+ 'Integration expectations and failure fallback behavior are defined.',
157
+ ],
158
+ },
159
+ {
160
+ id: 'context_window_management',
161
+ name: 'Context Management Strategy',
162
+ description: 'How the agent should retain, summarize, and refresh context across tasks.',
163
+ maps_to: ['principles', 'domain_specific'],
164
+ depth_tiers: ['guided', 'operator'],
165
+ priority: 'important',
166
+ question_budget: { min: 0, max: 1 },
167
+ exploration_hints: [
168
+ 'Ask what context should be persisted versus treated as ephemeral.',
169
+ 'Probe summarization style when context grows large.',
170
+ ],
171
+ coverage_criteria: [
172
+ 'Persistence vs ephemerality expectations are explicit.',
173
+ 'Summarization and context refresh behavior is defined.',
174
+ ],
175
+ },
176
+ {
177
+ id: 'output_artifact_preferences',
178
+ name: 'Output Artifact Preferences',
179
+ description: 'Preferred deliverable types, templates, and acceptance format.',
180
+ maps_to: ['tone', 'domain_specific'],
181
+ depth_tiers: ['guided', 'operator'],
182
+ priority: 'important',
183
+ question_budget: { min: 0, max: 1 },
184
+ exploration_hints: [
185
+ 'Identify expected artifact formats (checklists, plans, memos, diffs, etc.).',
186
+ 'Capture structure and completeness expectations per artifact type.',
187
+ ],
188
+ coverage_criteria: [
189
+ 'Primary output formats are identified.',
190
+ 'Acceptance criteria for output quality and completeness are explicit.',
191
+ ],
192
+ },
193
+ {
194
+ id: 'feedback_loop',
195
+ name: 'Feedback and Iteration Loop',
196
+ description: 'How the user gives feedback and how the agent should adapt over time.',
197
+ maps_to: ['principles', 'domain_specific'],
198
+ depth_tiers: ['guided', 'operator'],
199
+ priority: 'important',
200
+ question_budget: { min: 0, max: 1 },
201
+ exploration_hints: [
202
+ 'Determine preferred correction granularity and iteration cadence.',
203
+ 'Ask how quickly behavior should adapt after feedback.',
204
+ ],
205
+ coverage_criteria: [
206
+ 'Feedback intake style and loop timing are clear.',
207
+ 'Adaptation expectations after corrections are explicit.',
208
+ ],
209
+ },
210
+ {
211
+ id: 'quality_bar',
212
+ name: 'Quality Bar and Exit Criteria',
213
+ description: 'What “good enough” looks like before the agent reports completion.',
214
+ maps_to: ['principles', 'evidence_policy', 'domain_specific'],
215
+ depth_tiers: ['guided', 'operator'],
216
+ priority: 'critical',
217
+ question_budget: { min: 1, max: 2 },
218
+ exploration_hints: [
219
+ 'Capture mandatory checks before delivery.',
220
+ 'Identify acceptable risk and residual uncertainty thresholds.',
221
+ ],
222
+ coverage_criteria: [
223
+ 'Completion criteria are measurable and explicit.',
224
+ 'Required validations/checks are listed.',
225
+ ],
226
+ },
227
+ // === OPERATOR TIER ===
228
+ {
229
+ id: 'exception_handling',
230
+ name: 'Exception and Incident Handling',
231
+ description: 'How the agent should respond when workflows break or assumptions fail.',
232
+ maps_to: ['taboos', 'domain_specific'],
233
+ depth_tiers: ['operator'],
234
+ priority: 'important',
235
+ question_budget: { min: 0, max: 1 },
236
+ exploration_hints: [
237
+ 'Probe fallback behavior for missing data, tool outages, and contradictory inputs.',
238
+ 'Capture incident communication expectations.',
239
+ ],
240
+ coverage_criteria: [
241
+ 'Failure-mode fallback behavior is explicit.',
242
+ 'Incident reporting and escalation details are defined.',
243
+ ],
244
+ },
245
+ {
246
+ id: 'collaboration_style',
247
+ name: 'Collaboration and Stakeholder Style',
248
+ description: 'How the agent should interact with teammates, reviewers, and decision-makers.',
249
+ maps_to: ['tone', 'principles', 'domain_specific'],
250
+ depth_tiers: ['operator'],
251
+ priority: 'nice-to-have',
252
+ question_budget: { min: 0, max: 1 },
253
+ exploration_hints: [
254
+ 'Ask whether the agent should be neutral facilitator vs assertive advisor.',
255
+ 'Capture audience-specific communication adaptations.',
256
+ ],
257
+ coverage_criteria: [
258
+ 'Stakeholder communication style is explicit.',
259
+ 'Role-based tone and detail adjustments are defined.',
260
+ ],
261
+ },
262
+ {
263
+ id: 'prioritization_framework',
264
+ name: 'Prioritization Framework',
265
+ description: 'Rules for ranking tasks and choosing what to execute first.',
266
+ maps_to: ['principles', 'domain_specific'],
267
+ depth_tiers: ['operator'],
268
+ priority: 'important',
269
+ question_budget: { min: 0, max: 1 },
270
+ exploration_hints: [
271
+ 'Identify ranking factors (impact, urgency, reversibility, effort).',
272
+ 'Capture tie-breakers and conflict resolution behavior.',
273
+ ],
274
+ coverage_criteria: [
275
+ 'Priority scoring logic is explicit.',
276
+ 'Conflict and tie-break handling is documented.',
277
+ ],
278
+ },
279
+ {
280
+ id: 'performance_constraints',
281
+ name: 'Performance and Cost Constraints',
282
+ description: 'Latency, depth, and resource-cost expectations across work types.',
283
+ maps_to: ['tradeoffs', 'domain_specific'],
284
+ depth_tiers: ['operator'],
285
+ priority: 'important',
286
+ question_budget: { min: 0, max: 1 },
287
+ exploration_hints: [
288
+ 'Probe acceptable latency for different classes of work.',
289
+ 'Capture cost-vs-thoroughness thresholds.',
290
+ ],
291
+ coverage_criteria: [
292
+ 'Performance targets and cost sensitivity are explicit.',
293
+ 'Fallback behavior when constraints conflict is defined.',
294
+ ],
295
+ },
296
+ {
297
+ id: 'memory_retention_preferences',
298
+ name: 'Memory and Retention Preferences',
299
+ description: 'What long-term memory is useful, and what should be dropped or redacted.',
300
+ maps_to: ['domain_specific', 'evidence_policy'],
301
+ depth_tiers: ['operator'],
302
+ priority: 'important',
303
+ question_budget: { min: 0, max: 1 },
304
+ exploration_hints: [
305
+ 'Determine retention horizon and salience rules for memory writes.',
306
+ 'Capture privacy boundaries for stored context.',
307
+ ],
308
+ coverage_criteria: [
309
+ 'Retention and forgetting policy is explicit.',
310
+ 'Sensitive-memory handling rules are defined.',
311
+ ],
312
+ },
313
+ {
314
+ id: 'governance_auditability',
315
+ name: 'Governance and Auditability',
316
+ description: 'How actions should be logged, reviewed, and justified for accountability.',
317
+ maps_to: ['evidence_policy', 'taboos', 'domain_specific'],
318
+ depth_tiers: ['operator'],
319
+ priority: 'important',
320
+ question_budget: { min: 0, max: 1 },
321
+ exploration_hints: [
322
+ 'Ask what audit trails are required for high-impact actions.',
323
+ 'Capture expectations for decision rationale and traceability.',
324
+ ],
325
+ coverage_criteria: [
326
+ 'Audit/logging expectations are explicit.',
327
+ 'Decision traceability and review workflow are defined.',
328
+ ],
329
+ },
330
+ ],
331
+ };
332
+ //# sourceMappingURL=rubric.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rubric.js","sourceRoot":"","sources":["../../../domains/general-agent/rubric.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Context Synthesis Skill
3
+ *
4
+ * Build a reliable working context from fragmented inputs.
5
+ */
6
+ export declare const ContextSynthesisSkill: {
7
+ skill_id: string;
8
+ name: string;
9
+ description: string;
10
+ tags: string[];
11
+ risk_level: "low";
12
+ required_tools: string[];
13
+ compatible_runtimes: string[];
14
+ feeds_into: string[];
15
+ pipeline_phase: string;
16
+ context_model: "inherit";
17
+ skill_md_content: string;
18
+ };
19
+ //# sourceMappingURL=context-synthesis.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-synthesis.d.ts","sourceRoot":"","sources":["../../../../domains/general-agent/skills/context-synthesis.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;CAwFjC,CAAC"}
@@ -0,0 +1,94 @@
1
+ /**
2
+ * Context Synthesis Skill
3
+ *
4
+ * Build a reliable working context from fragmented inputs.
5
+ */
6
+ export const ContextSynthesisSkill = {
7
+ skill_id: 'context-synthesis',
8
+ name: 'Context Synthesis',
9
+ description: 'Collects and normalizes fragmented context into an actionable brief with assumptions and confidence levels. Use when inputs are scattered across multiple sources, requirements are ambiguous, or you need source-backed context before executing a task.',
10
+ tags: ['general', 'context', 'analysis'],
11
+ risk_level: 'low',
12
+ required_tools: ['file-system', 'web-search'],
13
+ compatible_runtimes: ['claude-code', 'openclaw', 'manus', 'autopilots'],
14
+ feeds_into: ['task-orchestration'],
15
+ pipeline_phase: 'capture',
16
+ context_model: 'inherit',
17
+ skill_md_content: `# Context Synthesis
18
+
19
+ ## Purpose
20
+
21
+ Turn scattered notes, files, traces, and references into a trustworthy context brief before execution begins.
22
+
23
+ ## When to use
24
+
25
+ - Inputs are fragmented across multiple sources
26
+ - Requirements are ambiguous or conflicting
27
+ - You need an explicit assumptions list before acting
28
+ - Work requires source-backed context and confidence levels
29
+
30
+ ## When NOT to use
31
+
32
+ - Context is already complete and validated
33
+ - The request is trivial and does not need synthesis overhead
34
+
35
+ ## Inputs
36
+
37
+ - **sources**: Files, notes, links, traces, or prior outputs
38
+ - **question**: What decision or task the synthesis supports
39
+ - **time_horizon**: Optional recency requirement
40
+
41
+ ## Outputs
42
+
43
+ - **context_brief**: Consolidated facts, assumptions, risks, and open questions
44
+ - **confidence_map**: Confidence per key claim (high/med/low)
45
+ - **next_questions**: Clarifications required before execution
46
+
47
+ ## Procedure
48
+
49
+ ### Step 1: Gather and classify inputs
50
+
51
+ - Group inputs by reliability, recency, and relevance
52
+ - Separate facts, assumptions, and unknowns
53
+
54
+ ### Step 2: Reconcile conflicts
55
+
56
+ - Identify contradictory claims
57
+ - Prefer higher-quality and more recent sources when possible
58
+ - Mark unresolved conflicts explicitly
59
+
60
+ ### Step 3: Produce an operator-ready brief
61
+
62
+ - Include key facts, critical assumptions, and unresolved questions
63
+ - Add confidence markers per major claim
64
+ - Flag risks that can invalidate downstream work
65
+
66
+ ### Step 4: Hand off cleanly
67
+
68
+ - Provide a concise brief designed for planning/execution skills
69
+ - Include explicit “needs decision” items when blocking ambiguity remains
70
+
71
+ ## Quality checks
72
+
73
+ - [ ] Facts vs assumptions are clearly separated
74
+ - [ ] Conflicts are either resolved or explicitly flagged
75
+ - [ ] Confidence levels are attached to key claims
76
+ - [ ] Open questions are concrete and answerable
77
+
78
+ ## Guardrail notes
79
+
80
+ Do not present weakly sourced assumptions as established facts.
81
+
82
+ ## Progressive Disclosure
83
+
84
+ ### Minimal Context (Always Load)
85
+ - Primary question, source list, and recency requirements
86
+
87
+ ### On Invoke (Load When Skill is Invoked)
88
+ - Conflict-resolution and confidence-annotation workflow
89
+
90
+ ### On Demand Resources
91
+ - Source quality rubric and reusable synthesis template
92
+ `,
93
+ };
94
+ //# sourceMappingURL=context-synthesis.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-synthesis.js","sourceRoot":"","sources":["../../../../domains/general-agent/skills/context-synthesis.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,QAAQ,EAAE,mBAAmB;IAC7B,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,2PAA2P;IACxQ,IAAI,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,UAAU,CAAC;IACxC,UAAU,EAAE,KAAc;IAC1B,cAAc,EAAE,CAAC,aAAa,EAAE,YAAY,CAAC;IAC7C,mBAAmB,EAAE,CAAC,aAAa,EAAE,UAAU,EAAE,OAAO,EAAE,YAAY,CAAC;IACvE,UAAU,EAAE,CAAC,oBAAoB,CAAC;IAClC,cAAc,EAAE,SAAS;IACzB,aAAa,EAAE,SAAkB;IAEjC,gBAAgB,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2EnB;CACA,CAAC"}
@@ -0,0 +1,32 @@
1
+ /**
2
+ * General Agent Skills Library
3
+ */
4
+ import { ContextSynthesisSkill } from './context-synthesis.js';
5
+ import { TaskOrchestrationSkill } from './task-orchestration.js';
6
+ export declare const GeneralAgentSkills: ({
7
+ skill_id: string;
8
+ name: string;
9
+ description: string;
10
+ tags: string[];
11
+ risk_level: "low";
12
+ required_tools: string[];
13
+ compatible_runtimes: string[];
14
+ feeds_into: string[];
15
+ pipeline_phase: string;
16
+ context_model: "inherit";
17
+ skill_md_content: string;
18
+ } | {
19
+ skill_id: string;
20
+ name: string;
21
+ description: string;
22
+ tags: string[];
23
+ risk_level: "low";
24
+ required_tools: string[];
25
+ compatible_runtimes: string[];
26
+ prerequisites: string[];
27
+ pipeline_phase: string;
28
+ context_model: "inherit";
29
+ skill_md_content: string;
30
+ })[];
31
+ export { ContextSynthesisSkill, TaskOrchestrationSkill, };
32
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../domains/general-agent/skills/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;IAG9B,CAAC;AAEF,OAAO,EACL,qBAAqB,EACrB,sBAAsB,GACvB,CAAC"}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * General Agent Skills Library
3
+ */
4
+ import { ContextSynthesisSkill } from './context-synthesis.js';
5
+ import { TaskOrchestrationSkill } from './task-orchestration.js';
6
+ export const GeneralAgentSkills = [
7
+ ContextSynthesisSkill,
8
+ TaskOrchestrationSkill,
9
+ ];
10
+ export { ContextSynthesisSkill, TaskOrchestrationSkill, };
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../domains/general-agent/skills/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,qBAAqB,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAEjE,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,qBAAqB;IACrB,sBAAsB;CACvB,CAAC;AAEF,OAAO,EACL,qBAAqB,EACrB,sBAAsB,GACvB,CAAC"}
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Task Orchestration Skill
3
+ *
4
+ * Turn mixed requests into an executable, tracked plan with clear checkpoints.
5
+ */
6
+ export declare const TaskOrchestrationSkill: {
7
+ skill_id: string;
8
+ name: string;
9
+ description: string;
10
+ tags: string[];
11
+ risk_level: "low";
12
+ required_tools: string[];
13
+ compatible_runtimes: string[];
14
+ prerequisites: string[];
15
+ pipeline_phase: string;
16
+ context_model: "inherit";
17
+ skill_md_content: string;
18
+ };
19
+ //# sourceMappingURL=task-orchestration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"task-orchestration.d.ts","sourceRoot":"","sources":["../../../../domains/general-agent/skills/task-orchestration.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;CA+FlC,CAAC"}