@ai-coders/context 0.5.2 → 0.6.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 (325) hide show
  1. package/README.md +244 -12
  2. package/dist/generators/agents/agentGenerator.d.ts +3 -0
  3. package/dist/generators/agents/agentGenerator.d.ts.map +1 -1
  4. package/dist/generators/agents/agentGenerator.js +13 -7
  5. package/dist/generators/agents/agentGenerator.js.map +1 -1
  6. package/dist/generators/agents/templates/playbookTemplate.d.ts.map +1 -1
  7. package/dist/generators/agents/templates/playbookTemplate.js +3 -1
  8. package/dist/generators/agents/templates/playbookTemplate.js.map +1 -1
  9. package/dist/generators/documentation/codebaseMapGenerator.d.ts +98 -0
  10. package/dist/generators/documentation/codebaseMapGenerator.d.ts.map +1 -0
  11. package/dist/generators/documentation/codebaseMapGenerator.js +247 -0
  12. package/dist/generators/documentation/codebaseMapGenerator.js.map +1 -0
  13. package/dist/generators/documentation/documentationGenerator.d.ts +2 -0
  14. package/dist/generators/documentation/documentationGenerator.d.ts.map +1 -1
  15. package/dist/generators/documentation/documentationGenerator.js +20 -1
  16. package/dist/generators/documentation/documentationGenerator.js.map +1 -1
  17. package/dist/generators/documentation/index.d.ts +2 -0
  18. package/dist/generators/documentation/index.d.ts.map +1 -1
  19. package/dist/generators/documentation/index.js +3 -1
  20. package/dist/generators/documentation/index.js.map +1 -1
  21. package/dist/generators/documentation/templates/architectureTemplate.d.ts.map +1 -1
  22. package/dist/generators/documentation/templates/architectureTemplate.js +2 -31
  23. package/dist/generators/documentation/templates/architectureTemplate.js.map +1 -1
  24. package/dist/generators/documentation/templates/common.d.ts +4 -1
  25. package/dist/generators/documentation/templates/common.d.ts.map +1 -1
  26. package/dist/generators/documentation/templates/common.js +4 -2
  27. package/dist/generators/documentation/templates/common.js.map +1 -1
  28. package/dist/generators/plans/templates/planTemplate.d.ts.map +1 -1
  29. package/dist/generators/plans/templates/planTemplate.js +46 -2
  30. package/dist/generators/plans/templates/planTemplate.js.map +1 -1
  31. package/dist/generators/skills/index.d.ts +7 -0
  32. package/dist/generators/skills/index.d.ts.map +1 -0
  33. package/dist/generators/skills/index.js +15 -0
  34. package/dist/generators/skills/index.js.map +1 -0
  35. package/dist/generators/skills/skillGenerator.d.ts +53 -0
  36. package/dist/generators/skills/skillGenerator.d.ts.map +1 -0
  37. package/dist/generators/skills/skillGenerator.js +149 -0
  38. package/dist/generators/skills/skillGenerator.js.map +1 -0
  39. package/dist/generators/skills/templates/indexTemplate.d.ts +13 -0
  40. package/dist/generators/skills/templates/indexTemplate.d.ts.map +1 -0
  41. package/dist/generators/skills/templates/indexTemplate.js +102 -0
  42. package/dist/generators/skills/templates/indexTemplate.js.map +1 -0
  43. package/dist/generators/skills/templates/skillTemplate.d.ts +20 -0
  44. package/dist/generators/skills/templates/skillTemplate.d.ts.map +1 -0
  45. package/dist/generators/skills/templates/skillTemplate.js +85 -0
  46. package/dist/generators/skills/templates/skillTemplate.js.map +1 -0
  47. package/dist/index.d.ts.map +1 -1
  48. package/dist/index.js +1315 -43
  49. package/dist/index.js.map +1 -1
  50. package/dist/services/ai/agentEvents.d.ts +1 -1
  51. package/dist/services/ai/agentEvents.d.ts.map +1 -1
  52. package/dist/services/ai/agents/index.d.ts +2 -0
  53. package/dist/services/ai/agents/index.d.ts.map +1 -1
  54. package/dist/services/ai/agents/index.js +3 -1
  55. package/dist/services/ai/agents/index.js.map +1 -1
  56. package/dist/services/ai/agents/skillAgent.d.ts +49 -0
  57. package/dist/services/ai/agents/skillAgent.d.ts.map +1 -0
  58. package/dist/services/ai/agents/skillAgent.js +179 -0
  59. package/dist/services/ai/agents/skillAgent.js.map +1 -0
  60. package/dist/services/ai/prompts/index.d.ts +1 -1
  61. package/dist/services/ai/prompts/index.d.ts.map +1 -1
  62. package/dist/services/ai/prompts/index.js +2 -1
  63. package/dist/services/ai/prompts/index.js.map +1 -1
  64. package/dist/services/ai/prompts/sharedPrompts.d.ts +4 -0
  65. package/dist/services/ai/prompts/sharedPrompts.d.ts.map +1 -1
  66. package/dist/services/ai/prompts/sharedPrompts.js +33 -0
  67. package/dist/services/ai/prompts/sharedPrompts.js.map +1 -1
  68. package/dist/services/ai/schemas.d.ts +96 -1
  69. package/dist/services/ai/schemas.d.ts.map +1 -1
  70. package/dist/services/ai/schemas.js +56 -2
  71. package/dist/services/ai/schemas.js.map +1 -1
  72. package/dist/services/ai/toolRegistry.d.ts.map +1 -1
  73. package/dist/services/ai/toolRegistry.js +17 -0
  74. package/dist/services/ai/toolRegistry.js.map +1 -1
  75. package/dist/services/ai/tools/fillScaffoldingTool.d.ts +4 -4
  76. package/dist/services/ai/tools/getCodebaseMapTool.d.ts +17 -0
  77. package/dist/services/ai/tools/getCodebaseMapTool.d.ts.map +1 -0
  78. package/dist/services/ai/tools/getCodebaseMapTool.js +115 -0
  79. package/dist/services/ai/tools/getCodebaseMapTool.js.map +1 -0
  80. package/dist/services/ai/tools/index.d.ts +2 -1
  81. package/dist/services/ai/tools/index.d.ts.map +1 -1
  82. package/dist/services/ai/tools/index.js +8 -3
  83. package/dist/services/ai/tools/index.js.map +1 -1
  84. package/dist/services/ai/tools/initializeContextTool.d.ts +9 -1
  85. package/dist/services/ai/tools/initializeContextTool.d.ts.map +1 -1
  86. package/dist/services/ai/tools/initializeContextTool.js +33 -3
  87. package/dist/services/ai/tools/initializeContextTool.js.map +1 -1
  88. package/dist/services/ai/tools/scaffoldPlanTool.d.ts +6 -0
  89. package/dist/services/ai/tools/scaffoldPlanTool.d.ts.map +1 -1
  90. package/dist/services/ai/tools/scaffoldPlanTool.js +16 -3
  91. package/dist/services/ai/tools/scaffoldPlanTool.js.map +1 -1
  92. package/dist/services/export/exportRulesService.d.ts +62 -0
  93. package/dist/services/export/exportRulesService.d.ts.map +1 -0
  94. package/dist/services/export/exportRulesService.js +242 -0
  95. package/dist/services/export/exportRulesService.js.map +1 -0
  96. package/dist/services/export/index.d.ts +5 -0
  97. package/dist/services/export/index.d.ts.map +1 -0
  98. package/dist/services/export/index.js +10 -0
  99. package/dist/services/export/index.js.map +1 -0
  100. package/dist/services/export/skillExportService.d.ts +64 -0
  101. package/dist/services/export/skillExportService.d.ts.map +1 -0
  102. package/dist/services/export/skillExportService.js +238 -0
  103. package/dist/services/export/skillExportService.js.map +1 -0
  104. package/dist/services/fill/skillFillService.d.ts +50 -0
  105. package/dist/services/fill/skillFillService.d.ts.map +1 -0
  106. package/dist/services/fill/skillFillService.js +254 -0
  107. package/dist/services/fill/skillFillService.js.map +1 -0
  108. package/dist/services/import/agentsDetector.d.ts +12 -0
  109. package/dist/services/import/agentsDetector.d.ts.map +1 -0
  110. package/dist/services/import/agentsDetector.js +183 -0
  111. package/dist/services/import/agentsDetector.js.map +1 -0
  112. package/dist/services/import/importAgentsService.d.ts +14 -0
  113. package/dist/services/import/importAgentsService.d.ts.map +1 -0
  114. package/dist/services/import/importAgentsService.js +195 -0
  115. package/dist/services/import/importAgentsService.js.map +1 -0
  116. package/dist/services/import/importRulesService.d.ts +17 -0
  117. package/dist/services/import/importRulesService.d.ts.map +1 -0
  118. package/dist/services/import/importRulesService.js +222 -0
  119. package/dist/services/import/importRulesService.js.map +1 -0
  120. package/dist/services/import/index.d.ts +7 -0
  121. package/dist/services/import/index.d.ts.map +1 -0
  122. package/dist/services/import/index.js +28 -0
  123. package/dist/services/import/index.js.map +1 -0
  124. package/dist/services/import/presets.d.ts +8 -0
  125. package/dist/services/import/presets.d.ts.map +1 -0
  126. package/dist/services/import/presets.js +176 -0
  127. package/dist/services/import/presets.js.map +1 -0
  128. package/dist/services/import/rulesDetector.d.ts +16 -0
  129. package/dist/services/import/rulesDetector.d.ts.map +1 -0
  130. package/dist/services/import/rulesDetector.js +278 -0
  131. package/dist/services/import/rulesDetector.js.map +1 -0
  132. package/dist/services/import/types.d.ts +72 -0
  133. package/dist/services/import/types.d.ts.map +1 -0
  134. package/dist/services/import/types.js +3 -0
  135. package/dist/services/import/types.js.map +1 -0
  136. package/dist/services/mcp/mcpServer.d.ts +24 -0
  137. package/dist/services/mcp/mcpServer.d.ts.map +1 -1
  138. package/dist/services/mcp/mcpServer.js +1451 -1
  139. package/dist/services/mcp/mcpServer.js.map +1 -1
  140. package/dist/services/quickSync/index.d.ts +3 -0
  141. package/dist/services/quickSync/index.d.ts.map +1 -0
  142. package/dist/services/quickSync/index.js +7 -0
  143. package/dist/services/quickSync/index.js.map +1 -0
  144. package/dist/services/quickSync/quickSyncService.d.ts +72 -0
  145. package/dist/services/quickSync/quickSyncService.d.ts.map +1 -0
  146. package/dist/services/quickSync/quickSyncService.js +268 -0
  147. package/dist/services/quickSync/quickSyncService.js.map +1 -0
  148. package/dist/services/report/index.d.ts +3 -0
  149. package/dist/services/report/index.d.ts.map +1 -0
  150. package/dist/services/report/index.js +6 -0
  151. package/dist/services/report/index.js.map +1 -0
  152. package/dist/services/report/reportService.d.ts +131 -0
  153. package/dist/services/report/reportService.d.ts.map +1 -0
  154. package/dist/services/report/reportService.js +372 -0
  155. package/dist/services/report/reportService.js.map +1 -0
  156. package/dist/services/semantic/contextBuilder.d.ts +8 -1
  157. package/dist/services/semantic/contextBuilder.d.ts.map +1 -1
  158. package/dist/services/semantic/contextBuilder.js +107 -20
  159. package/dist/services/semantic/contextBuilder.js.map +1 -1
  160. package/dist/services/shared/globPatterns.d.ts +48 -0
  161. package/dist/services/shared/globPatterns.d.ts.map +1 -0
  162. package/dist/services/shared/globPatterns.js +110 -0
  163. package/dist/services/shared/globPatterns.js.map +1 -0
  164. package/dist/services/shared/index.d.ts +10 -0
  165. package/dist/services/shared/index.d.ts.map +1 -0
  166. package/dist/services/shared/index.js +46 -0
  167. package/dist/services/shared/index.js.map +1 -0
  168. package/dist/services/shared/pathHelpers.d.ts +71 -0
  169. package/dist/services/shared/pathHelpers.d.ts.map +1 -0
  170. package/dist/services/shared/pathHelpers.js +162 -0
  171. package/dist/services/shared/pathHelpers.js.map +1 -0
  172. package/dist/services/shared/types.d.ts +74 -0
  173. package/dist/services/shared/types.d.ts.map +1 -0
  174. package/dist/services/shared/types.js +44 -0
  175. package/dist/services/shared/types.js.map +1 -0
  176. package/dist/services/shared/uiHelpers.d.ts +70 -0
  177. package/dist/services/shared/uiHelpers.d.ts.map +1 -0
  178. package/dist/services/shared/uiHelpers.js +131 -0
  179. package/dist/services/shared/uiHelpers.js.map +1 -0
  180. package/dist/services/stack/index.d.ts +6 -0
  181. package/dist/services/stack/index.d.ts.map +1 -0
  182. package/dist/services/stack/index.js +25 -0
  183. package/dist/services/stack/index.js.map +1 -0
  184. package/dist/services/stack/projectTypeClassifier.d.ts +59 -0
  185. package/dist/services/stack/projectTypeClassifier.d.ts.map +1 -0
  186. package/dist/services/stack/projectTypeClassifier.js +242 -0
  187. package/dist/services/stack/projectTypeClassifier.js.map +1 -0
  188. package/dist/services/stack/scaffoldFilter.d.ts +75 -0
  189. package/dist/services/stack/scaffoldFilter.d.ts.map +1 -0
  190. package/dist/services/stack/scaffoldFilter.js +222 -0
  191. package/dist/services/stack/scaffoldFilter.js.map +1 -0
  192. package/dist/services/stack/stackDetector.d.ts +43 -0
  193. package/dist/services/stack/stackDetector.d.ts.map +1 -0
  194. package/dist/services/stack/stackDetector.js +406 -0
  195. package/dist/services/stack/stackDetector.js.map +1 -0
  196. package/dist/services/start/index.d.ts +3 -0
  197. package/dist/services/start/index.d.ts.map +1 -0
  198. package/dist/services/start/index.js +6 -0
  199. package/dist/services/start/index.js.map +1 -0
  200. package/dist/services/start/startService.d.ts +64 -0
  201. package/dist/services/start/startService.d.ts.map +1 -0
  202. package/dist/services/start/startService.js +180 -0
  203. package/dist/services/start/startService.js.map +1 -0
  204. package/dist/services/sync/presets.d.ts.map +1 -1
  205. package/dist/services/sync/presets.js +16 -1
  206. package/dist/services/sync/presets.js.map +1 -1
  207. package/dist/services/sync/types.d.ts +1 -1
  208. package/dist/services/sync/types.d.ts.map +1 -1
  209. package/dist/services/workflow/autoAdvance.d.ts +38 -0
  210. package/dist/services/workflow/autoAdvance.d.ts.map +1 -0
  211. package/dist/services/workflow/autoAdvance.js +219 -0
  212. package/dist/services/workflow/autoAdvance.js.map +1 -0
  213. package/dist/services/workflow/index.d.ts +6 -0
  214. package/dist/services/workflow/index.d.ts.map +1 -0
  215. package/dist/services/workflow/index.js +11 -0
  216. package/dist/services/workflow/index.js.map +1 -0
  217. package/dist/services/workflow/workflowService.d.ts +98 -0
  218. package/dist/services/workflow/workflowService.d.ts.map +1 -0
  219. package/dist/services/workflow/workflowService.js +210 -0
  220. package/dist/services/workflow/workflowService.js.map +1 -0
  221. package/dist/utils/cliUI.d.ts +4 -0
  222. package/dist/utils/cliUI.d.ts.map +1 -1
  223. package/dist/utils/cliUI.js +31 -1
  224. package/dist/utils/cliUI.js.map +1 -1
  225. package/dist/utils/i18n.d.ts +202 -0
  226. package/dist/utils/i18n.d.ts.map +1 -1
  227. package/dist/utils/i18n.js +438 -2
  228. package/dist/utils/i18n.js.map +1 -1
  229. package/dist/utils/theme.d.ts +1 -0
  230. package/dist/utils/theme.d.ts.map +1 -1
  231. package/dist/utils/theme.js +1 -0
  232. package/dist/utils/theme.js.map +1 -1
  233. package/dist/workflow/agents/agentRegistry.d.ts +82 -0
  234. package/dist/workflow/agents/agentRegistry.d.ts.map +1 -0
  235. package/dist/workflow/agents/agentRegistry.js +205 -0
  236. package/dist/workflow/agents/agentRegistry.js.map +1 -0
  237. package/dist/workflow/agents/index.d.ts +7 -0
  238. package/dist/workflow/agents/index.d.ts.map +1 -0
  239. package/dist/workflow/agents/index.js +14 -0
  240. package/dist/workflow/agents/index.js.map +1 -0
  241. package/dist/workflow/collaboration.d.ts +110 -0
  242. package/dist/workflow/collaboration.d.ts.map +1 -0
  243. package/dist/workflow/collaboration.js +301 -0
  244. package/dist/workflow/collaboration.js.map +1 -0
  245. package/dist/workflow/index.d.ts +25 -0
  246. package/dist/workflow/index.d.ts.map +1 -0
  247. package/dist/workflow/index.js +124 -0
  248. package/dist/workflow/index.js.map +1 -0
  249. package/dist/workflow/orchestration/agentOrchestrator.d.ts +68 -0
  250. package/dist/workflow/orchestration/agentOrchestrator.d.ts.map +1 -0
  251. package/dist/workflow/orchestration/agentOrchestrator.js +280 -0
  252. package/dist/workflow/orchestration/agentOrchestrator.js.map +1 -0
  253. package/dist/workflow/orchestration/documentLinker.d.ts +100 -0
  254. package/dist/workflow/orchestration/documentLinker.d.ts.map +1 -0
  255. package/dist/workflow/orchestration/documentLinker.js +266 -0
  256. package/dist/workflow/orchestration/documentLinker.js.map +1 -0
  257. package/dist/workflow/orchestration/index.d.ts +9 -0
  258. package/dist/workflow/orchestration/index.d.ts.map +1 -0
  259. package/dist/workflow/orchestration/index.js +25 -0
  260. package/dist/workflow/orchestration/index.js.map +1 -0
  261. package/dist/workflow/orchestrator.d.ts +99 -0
  262. package/dist/workflow/orchestrator.d.ts.map +1 -0
  263. package/dist/workflow/orchestrator.js +217 -0
  264. package/dist/workflow/orchestrator.js.map +1 -0
  265. package/dist/workflow/phases.d.ts +64 -0
  266. package/dist/workflow/phases.d.ts.map +1 -0
  267. package/dist/workflow/phases.js +151 -0
  268. package/dist/workflow/phases.js.map +1 -0
  269. package/dist/workflow/plans/index.d.ts +8 -0
  270. package/dist/workflow/plans/index.d.ts.map +1 -0
  271. package/dist/workflow/plans/index.js +27 -0
  272. package/dist/workflow/plans/index.js.map +1 -0
  273. package/dist/workflow/plans/planLinker.d.ts +119 -0
  274. package/dist/workflow/plans/planLinker.d.ts.map +1 -0
  275. package/dist/workflow/plans/planLinker.js +499 -0
  276. package/dist/workflow/plans/planLinker.js.map +1 -0
  277. package/dist/workflow/plans/types.d.ts +167 -0
  278. package/dist/workflow/plans/types.d.ts.map +1 -0
  279. package/dist/workflow/plans/types.js +25 -0
  280. package/dist/workflow/plans/types.js.map +1 -0
  281. package/dist/workflow/prevcConfig.d.ts +27 -0
  282. package/dist/workflow/prevcConfig.d.ts.map +1 -0
  283. package/dist/workflow/prevcConfig.js +153 -0
  284. package/dist/workflow/prevcConfig.js.map +1 -0
  285. package/dist/workflow/roles.d.ts +44 -0
  286. package/dist/workflow/roles.d.ts.map +1 -0
  287. package/dist/workflow/roles.js +112 -0
  288. package/dist/workflow/roles.js.map +1 -0
  289. package/dist/workflow/scaling.d.ts +44 -0
  290. package/dist/workflow/scaling.d.ts.map +1 -0
  291. package/dist/workflow/scaling.js +224 -0
  292. package/dist/workflow/scaling.js.map +1 -0
  293. package/dist/workflow/skills/frontmatter.d.ts +23 -0
  294. package/dist/workflow/skills/frontmatter.d.ts.map +1 -0
  295. package/dist/workflow/skills/frontmatter.js +100 -0
  296. package/dist/workflow/skills/frontmatter.js.map +1 -0
  297. package/dist/workflow/skills/index.d.ts +10 -0
  298. package/dist/workflow/skills/index.d.ts.map +1 -0
  299. package/dist/workflow/skills/index.js +22 -0
  300. package/dist/workflow/skills/index.js.map +1 -0
  301. package/dist/workflow/skills/skillRegistry.d.ts +60 -0
  302. package/dist/workflow/skills/skillRegistry.d.ts.map +1 -0
  303. package/dist/workflow/skills/skillRegistry.js +257 -0
  304. package/dist/workflow/skills/skillRegistry.js.map +1 -0
  305. package/dist/workflow/skills/skillTemplates.d.ts +16 -0
  306. package/dist/workflow/skills/skillTemplates.d.ts.map +1 -0
  307. package/dist/workflow/skills/skillTemplates.js +610 -0
  308. package/dist/workflow/skills/skillTemplates.js.map +1 -0
  309. package/dist/workflow/skills/types.d.ts +72 -0
  310. package/dist/workflow/skills/types.d.ts.map +1 -0
  311. package/dist/workflow/skills/types.js +48 -0
  312. package/dist/workflow/skills/types.js.map +1 -0
  313. package/dist/workflow/status/statusManager.d.ts +84 -0
  314. package/dist/workflow/status/statusManager.d.ts.map +1 -0
  315. package/dist/workflow/status/statusManager.js +402 -0
  316. package/dist/workflow/status/statusManager.js.map +1 -0
  317. package/dist/workflow/status/templates.d.ts +40 -0
  318. package/dist/workflow/status/templates.d.ts.map +1 -0
  319. package/dist/workflow/status/templates.js +148 -0
  320. package/dist/workflow/status/templates.js.map +1 -0
  321. package/dist/workflow/types.d.ts +178 -0
  322. package/dist/workflow/types.d.ts.map +1 -0
  323. package/dist/workflow/types.js +25 -0
  324. package/dist/workflow/types.js.map +1 -0
  325. package/package.json +1 -1
@@ -0,0 +1,610 @@
1
+ "use strict";
2
+ /**
3
+ * Built-in Skill Templates
4
+ *
5
+ * Separated from SkillRegistry to follow Single Responsibility Principle.
6
+ * Each template contains description and markdown content for a built-in skill.
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.getBuiltInSkillTemplates = getBuiltInSkillTemplates;
10
+ /**
11
+ * Get all built-in skill templates
12
+ */
13
+ function getBuiltInSkillTemplates() {
14
+ return {
15
+ 'commit-message': createCommitMessageSkill(),
16
+ 'pr-review': createPrReviewSkill(),
17
+ 'code-review': createCodeReviewSkill(),
18
+ 'test-generation': createTestGenerationSkill(),
19
+ 'documentation': createDocumentationSkill(),
20
+ 'refactoring': createRefactoringSkill(),
21
+ 'bug-investigation': createBugInvestigationSkill(),
22
+ 'feature-breakdown': createFeatureBreakdownSkill(),
23
+ 'api-design': createApiDesignSkill(),
24
+ 'security-audit': createSecurityAuditSkill(),
25
+ };
26
+ }
27
+ function createCommitMessageSkill() {
28
+ return {
29
+ description: 'Generate commit messages following conventional commits with scope detection',
30
+ content: `# Commit Message Generator
31
+
32
+ ## When to Use
33
+ Use this skill when creating commit messages or when the user asks to commit changes.
34
+
35
+ ## Instructions
36
+ 1. Analyze staged changes with \`git diff --staged\`
37
+ 2. Identify the type: feat, fix, refactor, docs, test, chore, style, perf
38
+ 3. Detect scope from the most changed directory or module
39
+ 4. Write a concise message focusing on "why" not "what"
40
+
41
+ ## Format
42
+ \`\`\`
43
+ <type>(<scope>): <description>
44
+
45
+ [optional body explaining why, not what]
46
+
47
+ [optional footer: BREAKING CHANGE, Closes #issue]
48
+ \`\`\`
49
+
50
+ ## Examples
51
+ - \`feat(auth): add OAuth2 login with Google provider\`
52
+ - \`fix(api): handle null response from payment gateway\`
53
+ - \`refactor(db): extract connection pooling to separate module\`
54
+ - \`docs(readme): add installation instructions for Windows\`
55
+
56
+ ## Guidelines
57
+ - Keep subject line under 72 characters
58
+ - Use imperative mood ("add" not "added")
59
+ - Don't end subject with period
60
+ - Separate subject from body with blank line`,
61
+ };
62
+ }
63
+ function createPrReviewSkill() {
64
+ return {
65
+ description: 'Review pull requests against team standards and best practices',
66
+ content: `# Pull Request Review
67
+
68
+ ## When to Use
69
+ Use this skill when reviewing a pull request or when asked to review changes.
70
+
71
+ ## Review Checklist
72
+
73
+ ### 1. Context Understanding
74
+ - [ ] PR description explains the "why"
75
+ - [ ] Linked issue or ticket exists
76
+ - [ ] Scope is appropriate (not too large)
77
+
78
+ ### 2. Code Quality
79
+ - [ ] Code follows project conventions
80
+ - [ ] No unnecessary complexity
81
+ - [ ] DRY principle respected
82
+ - [ ] Error handling is appropriate
83
+
84
+ ### 3. Testing
85
+ - [ ] Tests cover new functionality
86
+ - [ ] Edge cases are handled
87
+ - [ ] No flaky tests introduced
88
+
89
+ ### 4. Security
90
+ - [ ] No hardcoded secrets
91
+ - [ ] Input validation present
92
+ - [ ] No SQL injection risks
93
+ - [ ] Authentication/authorization correct
94
+
95
+ ### 5. Performance
96
+ - [ ] No N+1 queries
97
+ - [ ] Appropriate caching
98
+ - [ ] No memory leaks
99
+
100
+ ## Review Format
101
+ \`\`\`markdown
102
+ ## Summary
103
+ [1-2 sentence overview]
104
+
105
+ ## What I Reviewed
106
+ - [List of files/areas reviewed]
107
+
108
+ ## Findings
109
+ ### Must Fix
110
+ - [ ] Issue 1
111
+ - [ ] Issue 2
112
+
113
+ ### Suggestions
114
+ - Consider...
115
+ - Nice to have...
116
+
117
+ ## Verdict
118
+ [APPROVE / REQUEST_CHANGES / COMMENT]
119
+ \`\`\``,
120
+ };
121
+ }
122
+ function createCodeReviewSkill() {
123
+ return {
124
+ description: 'Review code quality, patterns, and best practices',
125
+ content: `# Code Review
126
+
127
+ ## When to Use
128
+ Use this skill when reviewing code files or when asked to analyze code quality.
129
+
130
+ ## Review Dimensions
131
+
132
+ ### 1. Readability
133
+ - Clear naming conventions
134
+ - Appropriate comments (why, not what)
135
+ - Consistent formatting
136
+ - Logical code organization
137
+
138
+ ### 2. Maintainability
139
+ - Single Responsibility Principle
140
+ - Low coupling, high cohesion
141
+ - No magic numbers/strings
142
+ - Configuration externalized
143
+
144
+ ### 3. Correctness
145
+ - Logic errors
146
+ - Off-by-one errors
147
+ - Null/undefined handling
148
+ - Type safety
149
+
150
+ ### 4. Performance
151
+ - Algorithm complexity
152
+ - Resource management
153
+ - Caching opportunities
154
+ - Unnecessary computations
155
+
156
+ ### 5. Security
157
+ - Input validation
158
+ - Output encoding
159
+ - Authentication checks
160
+ - Authorization checks
161
+
162
+ ## Output Format
163
+ \`\`\`markdown
164
+ ## File: [filename]
165
+
166
+ ### Issues Found
167
+ | Line | Severity | Issue | Suggestion |
168
+ |------|----------|-------|------------|
169
+ | 42 | High | SQL injection risk | Use parameterized query |
170
+
171
+ ### Positive Observations
172
+ - Good use of...
173
+ - Well-structured...
174
+
175
+ ### Refactoring Opportunities
176
+ - Extract method for...
177
+ - Consider using pattern...
178
+ \`\`\``,
179
+ };
180
+ }
181
+ function createTestGenerationSkill() {
182
+ return {
183
+ description: 'Generate comprehensive test cases for code',
184
+ content: `# Test Generation
185
+
186
+ ## When to Use
187
+ Use this skill when writing tests or when asked to add test coverage.
188
+
189
+ ## Test Categories
190
+
191
+ ### 1. Unit Tests
192
+ - Test individual functions/methods
193
+ - Mock dependencies
194
+ - Cover edge cases
195
+
196
+ ### 2. Integration Tests
197
+ - Test component interactions
198
+ - Real dependencies when possible
199
+ - Database transactions
200
+
201
+ ### 3. Edge Cases to Cover
202
+ - Empty inputs
203
+ - Null/undefined values
204
+ - Maximum/minimum values
205
+ - Invalid types
206
+ - Concurrent access
207
+ - Network failures
208
+
209
+ ## Test Structure (AAA Pattern)
210
+ \`\`\`
211
+ // Arrange - Set up test data and conditions
212
+ // Act - Execute the code under test
213
+ // Assert - Verify the results
214
+ \`\`\`
215
+
216
+ ## Naming Convention
217
+ \`\`\`
218
+ [methodName]_[scenario]_[expectedResult]
219
+ \`\`\`
220
+
221
+ Example: \`calculateTotal_emptyCart_returnsZero\`
222
+
223
+ ## Coverage Goals
224
+ - Statements: 80%+
225
+ - Branches: 75%+
226
+ - Functions: 90%+
227
+ - Lines: 80%+`,
228
+ };
229
+ }
230
+ function createDocumentationSkill() {
231
+ return {
232
+ description: 'Generate and update technical documentation',
233
+ content: `# Documentation Generator
234
+
235
+ ## When to Use
236
+ Use this skill when writing or updating documentation.
237
+
238
+ ## Documentation Types
239
+
240
+ ### 1. API Documentation
241
+ - Endpoint description
242
+ - Request/response examples
243
+ - Error codes
244
+ - Authentication requirements
245
+
246
+ ### 2. README
247
+ - Project overview
248
+ - Installation steps
249
+ - Quick start guide
250
+ - Configuration options
251
+
252
+ ### 3. Architecture Docs
253
+ - System overview
254
+ - Component diagram
255
+ - Data flow
256
+ - Decision records
257
+
258
+ ### 4. Code Comments
259
+ - Why, not what
260
+ - Complex algorithm explanations
261
+ - Public API documentation
262
+
263
+ ## Format Guidelines
264
+ - Use clear headings hierarchy
265
+ - Include code examples
266
+ - Add diagrams where helpful
267
+ - Keep it up to date with code
268
+
269
+ ## Template: Function Documentation
270
+ \`\`\`typescript
271
+ /**
272
+ * Brief description of what the function does.
273
+ *
274
+ * @param paramName - Description of parameter
275
+ * @returns Description of return value
276
+ * @throws ErrorType - When this error occurs
277
+ *
278
+ * @example
279
+ * const result = functionName(arg);
280
+ */
281
+ \`\`\``,
282
+ };
283
+ }
284
+ function createRefactoringSkill() {
285
+ return {
286
+ description: 'Safe code refactoring with step-by-step approach',
287
+ content: `# Refactoring Guide
288
+
289
+ ## When to Use
290
+ Use this skill when refactoring code or improving code structure.
291
+
292
+ ## Refactoring Principles
293
+
294
+ ### 1. Safety First
295
+ - Ensure tests exist before refactoring
296
+ - Make small, incremental changes
297
+ - Commit after each successful step
298
+ - Keep functionality identical
299
+
300
+ ### 2. Common Refactorings
301
+
302
+ #### Extract Method
303
+ When: Code block does one thing and can be named
304
+ \`\`\`
305
+ Before: Long method with multiple responsibilities
306
+ After: Small methods with clear names
307
+ \`\`\`
308
+
309
+ #### Extract Variable
310
+ When: Complex expression needs explanation
311
+ \`\`\`
312
+ Before: if (user.age >= 18 && user.country === 'US' && user.verified)
313
+ After: const canPurchase = user.age >= 18 && user.country === 'US' && user.verified;
314
+ \`\`\`
315
+
316
+ #### Replace Conditional with Polymorphism
317
+ When: Switch/if statements based on type
318
+ \`\`\`
319
+ Before: switch(type) { case 'A': ... case 'B': ... }
320
+ After: type.process() // Each type implements process()
321
+ \`\`\`
322
+
323
+ ### 3. Step-by-Step Process
324
+ 1. Identify code smell
325
+ 2. Write characterization tests if missing
326
+ 3. Apply refactoring
327
+ 4. Run tests
328
+ 5. Commit
329
+ 6. Repeat
330
+
331
+ ## Code Smells to Watch
332
+ - Long methods (>20 lines)
333
+ - Long parameter lists (>3 params)
334
+ - Duplicate code
335
+ - Feature envy
336
+ - Data clumps
337
+ - Primitive obsession`,
338
+ };
339
+ }
340
+ function createBugInvestigationSkill() {
341
+ return {
342
+ description: 'Systematic bug investigation and root cause analysis',
343
+ content: `# Bug Investigation
344
+
345
+ ## When to Use
346
+ Use this skill when investigating bugs or unexpected behavior.
347
+
348
+ ## Investigation Process
349
+
350
+ ### 1. Reproduce
351
+ - Get exact steps to reproduce
352
+ - Identify environment (OS, version, config)
353
+ - Create minimal reproduction case
354
+
355
+ ### 2. Isolate
356
+ - Binary search through code/commits
357
+ - Disable features to narrow scope
358
+ - Check if issue exists in isolation
359
+
360
+ ### 3. Understand
361
+ - Read the relevant code carefully
362
+ - Check recent changes (git log, blame)
363
+ - Review related tests
364
+
365
+ ### 4. Hypothesize
366
+ - Form theories about root cause
367
+ - Rank by likelihood
368
+ - Design tests for each hypothesis
369
+
370
+ ### 5. Verify
371
+ - Add logging/debugging
372
+ - Write failing test
373
+ - Confirm fix addresses root cause
374
+
375
+ ## Debugging Checklist
376
+ - [ ] Can I reproduce consistently?
377
+ - [ ] When did it start? (git bisect)
378
+ - [ ] What changed recently?
379
+ - [ ] Are there related error logs?
380
+ - [ ] Does it happen in all environments?
381
+ - [ ] Is it data-dependent?
382
+
383
+ ## Root Cause Categories
384
+ - Logic error
385
+ - Race condition
386
+ - Resource leak
387
+ - Configuration issue
388
+ - Dependency problem
389
+ - Data corruption
390
+
391
+ ## Report Format
392
+ \`\`\`markdown
393
+ ## Bug: [Title]
394
+
395
+ ### Symptoms
396
+ [What the user sees]
397
+
398
+ ### Root Cause
399
+ [Technical explanation]
400
+
401
+ ### Fix
402
+ [What was changed and why]
403
+
404
+ ### Prevention
405
+ [How to prevent similar bugs]
406
+ \`\`\``,
407
+ };
408
+ }
409
+ function createFeatureBreakdownSkill() {
410
+ return {
411
+ description: 'Break down features into implementable tasks',
412
+ content: `# Feature Breakdown
413
+
414
+ ## When to Use
415
+ Use this skill when planning a new feature or breaking down requirements.
416
+
417
+ ## Breakdown Process
418
+
419
+ ### 1. Understand the Goal
420
+ - What problem does this solve?
421
+ - Who is the user?
422
+ - What does success look like?
423
+
424
+ ### 2. Identify Components
425
+ - UI changes needed
426
+ - API endpoints required
427
+ - Database changes
428
+ - External integrations
429
+ - Background jobs
430
+
431
+ ### 3. Define Tasks
432
+ Each task should be:
433
+ - **Small**: Completable in <4 hours
434
+ - **Independent**: Minimal dependencies
435
+ - **Testable**: Clear acceptance criteria
436
+ - **Valuable**: Delivers partial value
437
+
438
+ ### 4. Order by Dependencies
439
+ \`\`\`
440
+ 1. Database schema changes
441
+ 2. Backend API endpoints
442
+ 3. Frontend components
443
+ 4. Integration tests
444
+ 5. Documentation
445
+ \`\`\`
446
+
447
+ ## Task Template
448
+ \`\`\`markdown
449
+ ### Task: [Name]
450
+
451
+ **Description**: [What to implement]
452
+
453
+ **Acceptance Criteria**:
454
+ - [ ] Criterion 1
455
+ - [ ] Criterion 2
456
+
457
+ **Technical Notes**:
458
+ - Approach: [How to implement]
459
+ - Files: [Which files to modify]
460
+ - Dependencies: [What must be done first]
461
+
462
+ **Estimate**: [S/M/L]
463
+ \`\`\`
464
+
465
+ ## Sizing Guide
466
+ - **S (Small)**: <2 hours, single file change
467
+ - **M (Medium)**: 2-4 hours, few files
468
+ - **L (Large)**: 4-8 hours, multiple components`,
469
+ };
470
+ }
471
+ function createApiDesignSkill() {
472
+ return {
473
+ description: 'Design RESTful APIs following best practices',
474
+ content: `# API Design
475
+
476
+ ## When to Use
477
+ Use this skill when designing new APIs or reviewing API designs.
478
+
479
+ ## REST Principles
480
+
481
+ ### 1. Resource Naming
482
+ - Use nouns, not verbs: \`/users\` not \`/getUsers\`
483
+ - Use plural: \`/users\` not \`/user\`
484
+ - Use hyphens: \`/user-profiles\` not \`/userProfiles\`
485
+ - Nest for relationships: \`/users/{id}/orders\`
486
+
487
+ ### 2. HTTP Methods
488
+ | Method | Purpose | Idempotent |
489
+ |--------|---------|------------|
490
+ | GET | Read | Yes |
491
+ | POST | Create | No |
492
+ | PUT | Replace | Yes |
493
+ | PATCH | Update | Yes |
494
+ | DELETE | Remove | Yes |
495
+
496
+ ### 3. Status Codes
497
+ - 200: OK
498
+ - 201: Created
499
+ - 204: No Content
500
+ - 400: Bad Request
501
+ - 401: Unauthorized
502
+ - 403: Forbidden
503
+ - 404: Not Found
504
+ - 409: Conflict
505
+ - 422: Unprocessable Entity
506
+ - 500: Internal Server Error
507
+
508
+ ### 4. Response Format
509
+ \`\`\`json
510
+ {
511
+ "data": { ... },
512
+ "meta": {
513
+ "page": 1,
514
+ "total": 100
515
+ },
516
+ "errors": []
517
+ }
518
+ \`\`\`
519
+
520
+ ### 5. Versioning
521
+ - URL path: \`/v1/users\`
522
+ - Header: \`Accept: application/vnd.api+json;version=1\`
523
+
524
+ ## Design Checklist
525
+ - [ ] Resources clearly defined
526
+ - [ ] Consistent naming convention
527
+ - [ ] Proper HTTP methods used
528
+ - [ ] Error responses standardized
529
+ - [ ] Pagination implemented
530
+ - [ ] Authentication specified
531
+ - [ ] Rate limiting defined`,
532
+ };
533
+ }
534
+ function createSecurityAuditSkill() {
535
+ return {
536
+ description: 'Security review checklist for code and infrastructure',
537
+ content: `# Security Audit
538
+
539
+ ## When to Use
540
+ Use this skill when reviewing code for security or performing security audits.
541
+
542
+ ## OWASP Top 10 Checklist
543
+
544
+ ### 1. Injection
545
+ - [ ] SQL queries use parameterized statements
546
+ - [ ] OS commands avoid user input
547
+ - [ ] LDAP queries are sanitized
548
+
549
+ ### 2. Broken Authentication
550
+ - [ ] Passwords hashed with bcrypt/argon2
551
+ - [ ] Session tokens are secure random
552
+ - [ ] MFA available for sensitive operations
553
+
554
+ ### 3. Sensitive Data Exposure
555
+ - [ ] Data encrypted at rest
556
+ - [ ] TLS for data in transit
557
+ - [ ] Secrets not in code/logs
558
+
559
+ ### 4. XML External Entities (XXE)
560
+ - [ ] XML parsing disables external entities
561
+ - [ ] JSON preferred over XML
562
+
563
+ ### 5. Broken Access Control
564
+ - [ ] Authorization checked on every request
565
+ - [ ] Direct object references validated
566
+ - [ ] CORS configured correctly
567
+
568
+ ### 6. Security Misconfiguration
569
+ - [ ] Debug mode disabled in production
570
+ - [ ] Default credentials changed
571
+ - [ ] Security headers set
572
+
573
+ ### 7. Cross-Site Scripting (XSS)
574
+ - [ ] Output encoding applied
575
+ - [ ] Content Security Policy set
576
+ - [ ] Input validation present
577
+
578
+ ### 8. Insecure Deserialization
579
+ - [ ] User input not deserialized directly
580
+ - [ ] Integrity checks on serialized data
581
+
582
+ ### 9. Using Components with Known Vulnerabilities
583
+ - [ ] Dependencies up to date
584
+ - [ ] Vulnerability scanning in CI
585
+ - [ ] SBOM maintained
586
+
587
+ ### 10. Insufficient Logging & Monitoring
588
+ - [ ] Security events logged
589
+ - [ ] Logs don't contain sensitive data
590
+ - [ ] Alerting configured
591
+
592
+ ## Report Format
593
+ \`\`\`markdown
594
+ ## Security Audit: [Component]
595
+
596
+ ### Scope
597
+ [What was reviewed]
598
+
599
+ ### Findings
600
+ | ID | Severity | Issue | Remediation |
601
+ |----|----------|-------|-------------|
602
+ | S1 | Critical | [Issue] | [Fix] |
603
+
604
+ ### Recommendations
605
+ 1. [Priority recommendation]
606
+ 2. [Secondary recommendation]
607
+ \`\`\``,
608
+ };
609
+ }
610
+ //# sourceMappingURL=skillTemplates.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"skillTemplates.js","sourceRoot":"","sources":["../../../src/workflow/skills/skillTemplates.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;AAYH,4DAaC;AAhBD;;GAEG;AACH,SAAgB,wBAAwB;IACtC,OAAO;QACL,gBAAgB,EAAE,wBAAwB,EAAE;QAC5C,WAAW,EAAE,mBAAmB,EAAE;QAClC,aAAa,EAAE,qBAAqB,EAAE;QACtC,iBAAiB,EAAE,yBAAyB,EAAE;QAC9C,eAAe,EAAE,wBAAwB,EAAE;QAC3C,aAAa,EAAE,sBAAsB,EAAE;QACvC,mBAAmB,EAAE,2BAA2B,EAAE;QAClD,mBAAmB,EAAE,2BAA2B,EAAE;QAClD,YAAY,EAAE,oBAAoB,EAAE;QACpC,gBAAgB,EAAE,wBAAwB,EAAE;KAC7C,CAAC;AACJ,CAAC;AAED,SAAS,wBAAwB;IAC/B,OAAO;QACL,WAAW,EAAE,8EAA8E;QAC3F,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CA8BgC;KAC1C,CAAC;AACJ,CAAC;AAED,SAAS,mBAAmB;IAC1B,OAAO;QACL,WAAW,EAAE,gEAAgE;QAC7E,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqDN;KACJ,CAAC;AACJ,CAAC;AAED,SAAS,qBAAqB;IAC5B,OAAO;QACL,WAAW,EAAE,mDAAmD;QAChE,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqDN;KACJ,CAAC;AACJ,CAAC;AAED,SAAS,yBAAyB;IAChC,OAAO;QACL,WAAW,EAAE,4CAA4C;QACzD,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA2CC;KACX,CAAC;AACJ,CAAC;AAED,SAAS,wBAAwB;IAC/B,OAAO;QACL,WAAW,EAAE,6CAA6C;QAC1D,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgDN;KACJ,CAAC;AACJ,CAAC;AAED,SAAS,sBAAsB;IAC7B,OAAO;QACL,WAAW,EAAE,kDAAkD;QAC/D,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAkDS;KACnB,CAAC;AACJ,CAAC;AAED,SAAS,2BAA2B;IAClC,OAAO;QACL,WAAW,EAAE,sDAAsD;QACnE,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+DN;KACJ,CAAC;AACJ,CAAC;AAED,SAAS,2BAA2B;IAClC,OAAO;QACL,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDAwDmC;KAC7C,CAAC;AACJ,CAAC;AAED,SAAS,oBAAoB;IAC3B,OAAO;QACL,WAAW,EAAE,8CAA8C;QAC3D,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAyDe;KACzB,CAAC;AACJ,CAAC;AAED,SAAS,wBAAwB;IAC/B,OAAO;QACL,WAAW,EAAE,uDAAuD;QACpE,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsEN;KACJ,CAAC;AACJ,CAAC"}
@@ -0,0 +1,72 @@
1
+ /**
2
+ * Skill Types
3
+ *
4
+ * Skills are on-demand expertise that AI agents can activate when needed.
5
+ * Unlike agents (persistent behavioral playbooks), skills are task-specific
6
+ * procedures that get loaded only when relevant.
7
+ */
8
+ import { PrevcPhase } from '../types';
9
+ /**
10
+ * SKILL.md frontmatter metadata
11
+ */
12
+ export interface SkillMetadata {
13
+ /** Unique identifier (lowercase, hyphens) */
14
+ name: string;
15
+ /** Description of when to use this skill */
16
+ description: string;
17
+ /** Categorize as mode command (modifies behavior) */
18
+ mode?: boolean;
19
+ /** Prevent auto-activation by AI */
20
+ disableModelInvocation?: boolean;
21
+ /** PREVC phases where this skill is relevant */
22
+ phases?: PrevcPhase[];
23
+ }
24
+ /**
25
+ * Full skill representation
26
+ */
27
+ export interface Skill {
28
+ /** Directory name */
29
+ slug: string;
30
+ /** Full path to SKILL.md */
31
+ path: string;
32
+ /** Parsed frontmatter */
33
+ metadata: SkillMetadata;
34
+ /** Markdown instructions */
35
+ content: string;
36
+ /** Optional helper files in skill directory */
37
+ resources: string[];
38
+ /** Is this a built-in skill? */
39
+ isBuiltIn: boolean;
40
+ }
41
+ /**
42
+ * Skill reference for linking
43
+ */
44
+ export interface SkillReference {
45
+ slug: string;
46
+ path: string;
47
+ name: string;
48
+ description: string;
49
+ linkedAt: string;
50
+ }
51
+ /**
52
+ * Discovered skills summary
53
+ */
54
+ export interface DiscoveredSkills {
55
+ builtIn: Skill[];
56
+ custom: Skill[];
57
+ all: Skill[];
58
+ }
59
+ /**
60
+ * Built-in skills we provide
61
+ */
62
+ export declare const BUILT_IN_SKILLS: readonly ["commit-message", "pr-review", "code-review", "test-generation", "documentation", "refactoring", "bug-investigation", "feature-breakdown", "api-design", "security-audit"];
63
+ export type BuiltInSkillType = (typeof BUILT_IN_SKILLS)[number];
64
+ /**
65
+ * Check if a skill is built-in
66
+ */
67
+ export declare function isBuiltInSkill(skillType: string): skillType is BuiltInSkillType;
68
+ /**
69
+ * Skill to PREVC phase mapping
70
+ */
71
+ export declare const SKILL_TO_PHASES: Record<BuiltInSkillType, PrevcPhase[]>;
72
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/workflow/skills/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,6CAA6C;IAC7C,IAAI,EAAE,MAAM,CAAC;IACb,4CAA4C;IAC5C,WAAW,EAAE,MAAM,CAAC;IACpB,qDAAqD;IACrD,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,oCAAoC;IACpC,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,gDAAgD;IAChD,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,qBAAqB;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,4BAA4B;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,yBAAyB;IACzB,QAAQ,EAAE,aAAa,CAAC;IACxB,4BAA4B;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,+CAA+C;IAC/C,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,gCAAgC;IAChC,SAAS,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,KAAK,EAAE,CAAC;IACjB,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,GAAG,EAAE,KAAK,EAAE,CAAC;CACd;AAED;;GAEG;AACH,eAAO,MAAM,eAAe,sLAWlB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,CAAC,CAAC;AAEhE;;GAEG;AACH,wBAAgB,cAAc,CAAC,SAAS,EAAE,MAAM,GAAG,SAAS,IAAI,gBAAgB,CAE/E;AAED;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,gBAAgB,EAAE,UAAU,EAAE,CAWlE,CAAC"}