@roarpeng/graphflow 1.7.0 → 1.7.5

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 (332) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/README.md +13 -10
  3. package/dist/agents/insight.d.ts +13 -2
  4. package/dist/agents/insight.d.ts.map +1 -1
  5. package/dist/agents/insight.js +56 -26
  6. package/dist/agents/insight.js.map +1 -1
  7. package/dist/agents/task-profile.d.ts +19 -0
  8. package/dist/agents/task-profile.d.ts.map +1 -0
  9. package/dist/agents/task-profile.js +64 -0
  10. package/dist/agents/task-profile.js.map +1 -0
  11. package/dist/agents/validator.js +1 -1
  12. package/dist/agents/validator.js.map +1 -1
  13. package/dist/config/defaults.d.ts.map +1 -1
  14. package/dist/config/defaults.js +3 -1
  15. package/dist/config/defaults.js.map +1 -1
  16. package/dist/config/discover-workspace.d.ts.map +1 -1
  17. package/dist/config/discover-workspace.js +10 -2
  18. package/dist/config/discover-workspace.js.map +1 -1
  19. package/dist/config/embedding-factory.d.ts.map +1 -1
  20. package/dist/config/embedding-factory.js +88 -9
  21. package/dist/config/embedding-factory.js.map +1 -1
  22. package/dist/config/loader.d.ts.map +1 -1
  23. package/dist/config/loader.js +9 -2
  24. package/dist/config/loader.js.map +1 -1
  25. package/dist/config/provider-env.d.ts +32 -0
  26. package/dist/config/provider-env.d.ts.map +1 -0
  27. package/dist/config/provider-env.js +51 -0
  28. package/dist/config/provider-env.js.map +1 -0
  29. package/dist/config/resolve.d.ts.map +1 -1
  30. package/dist/config/resolve.js +7 -2
  31. package/dist/config/resolve.js.map +1 -1
  32. package/dist/config/schema.d.ts +17 -2
  33. package/dist/config/schema.d.ts.map +1 -1
  34. package/dist/config/workspace-root.d.ts +0 -12
  35. package/dist/config/workspace-root.d.ts.map +1 -1
  36. package/dist/config/workspace-root.js +21 -5
  37. package/dist/config/workspace-root.js.map +1 -1
  38. package/dist/core/agent-delegation.d.ts +5 -0
  39. package/dist/core/agent-delegation.d.ts.map +1 -1
  40. package/dist/core/agent-delegation.js +131 -57
  41. package/dist/core/agent-delegation.js.map +1 -1
  42. package/dist/core/cancellation.d.ts +57 -0
  43. package/dist/core/cancellation.d.ts.map +1 -0
  44. package/dist/core/cancellation.js +195 -0
  45. package/dist/core/cancellation.js.map +1 -0
  46. package/dist/core/dag-engine.d.ts +6 -1
  47. package/dist/core/dag-engine.d.ts.map +1 -1
  48. package/dist/core/dag-engine.js +67 -9
  49. package/dist/core/dag-engine.js.map +1 -1
  50. package/dist/core/orchestrator-context.d.ts.map +1 -1
  51. package/dist/core/orchestrator-context.js +3 -0
  52. package/dist/core/orchestrator-context.js.map +1 -1
  53. package/dist/core/orchestrator-route.d.ts +1 -1
  54. package/dist/core/orchestrator-route.d.ts.map +1 -1
  55. package/dist/core/orchestrator-route.js.map +1 -1
  56. package/dist/core/orchestrator.d.ts.map +1 -1
  57. package/dist/core/orchestrator.js +61 -42
  58. package/dist/core/orchestrator.js.map +1 -1
  59. package/dist/core/runtime-controller.d.ts +19 -0
  60. package/dist/core/runtime-controller.d.ts.map +1 -0
  61. package/dist/core/runtime-controller.js +89 -0
  62. package/dist/core/runtime-controller.js.map +1 -0
  63. package/dist/core/types.d.ts +5 -0
  64. package/dist/core/types.d.ts.map +1 -1
  65. package/dist/graph/context-cache.d.ts +23 -0
  66. package/dist/graph/context-cache.d.ts.map +1 -0
  67. package/dist/graph/context-cache.js +92 -0
  68. package/dist/graph/context-cache.js.map +1 -0
  69. package/dist/graph/context-slicer-types.d.ts +2 -0
  70. package/dist/graph/context-slicer-types.d.ts.map +1 -1
  71. package/dist/graph/context-slicer-types.js.map +1 -1
  72. package/dist/graph/context-slicer.d.ts +1 -0
  73. package/dist/graph/context-slicer.d.ts.map +1 -1
  74. package/dist/graph/context-slicer.js +54 -8
  75. package/dist/graph/context-slicer.js.map +1 -1
  76. package/dist/graph/file-indexer.d.ts +4 -1
  77. package/dist/graph/file-indexer.d.ts.map +1 -1
  78. package/dist/graph/file-indexer.js +16 -5
  79. package/dist/graph/file-indexer.js.map +1 -1
  80. package/dist/graph/file-watcher.d.ts.map +1 -1
  81. package/dist/graph/file-watcher.js +9 -2
  82. package/dist/graph/file-watcher.js.map +1 -1
  83. package/dist/graph/graph-utils.d.ts +6 -1
  84. package/dist/graph/graph-utils.d.ts.map +1 -1
  85. package/dist/graph/graph-utils.js +116 -2
  86. package/dist/graph/graph-utils.js.map +1 -1
  87. package/dist/graph/graphify-file-client.d.ts.map +1 -1
  88. package/dist/graph/graphify-file-client.js +2 -1
  89. package/dist/graph/graphify-file-client.js.map +1 -1
  90. package/dist/graph/hit-diversify.d.ts +31 -0
  91. package/dist/graph/hit-diversify.d.ts.map +1 -0
  92. package/dist/graph/hit-diversify.js +270 -0
  93. package/dist/graph/hit-diversify.js.map +1 -0
  94. package/dist/graph/language-indexers/go.d.ts.map +1 -1
  95. package/dist/graph/language-indexers/go.js +2 -3
  96. package/dist/graph/language-indexers/go.js.map +1 -1
  97. package/dist/graph/language-indexers/incremental-parse.d.ts +9 -0
  98. package/dist/graph/language-indexers/incremental-parse.d.ts.map +1 -0
  99. package/dist/graph/language-indexers/incremental-parse.js +114 -0
  100. package/dist/graph/language-indexers/incremental-parse.js.map +1 -0
  101. package/dist/graph/language-indexers/python.d.ts.map +1 -1
  102. package/dist/graph/language-indexers/python.js +2 -3
  103. package/dist/graph/language-indexers/python.js.map +1 -1
  104. package/dist/graph/language-indexers/rust.d.ts.map +1 -1
  105. package/dist/graph/language-indexers/rust.js +2 -3
  106. package/dist/graph/language-indexers/rust.js.map +1 -1
  107. package/dist/graph/language-indexers/tree-sitter-loader.d.ts +19 -3
  108. package/dist/graph/language-indexers/tree-sitter-loader.d.ts.map +1 -1
  109. package/dist/graph/language-indexers/tree-sitter-loader.js +24 -4
  110. package/dist/graph/language-indexers/tree-sitter-loader.js.map +1 -1
  111. package/dist/graph/query-expand.d.ts.map +1 -1
  112. package/dist/graph/query-expand.js +2 -0
  113. package/dist/graph/query-expand.js.map +1 -1
  114. package/dist/index.d.ts +1 -1
  115. package/dist/index.d.ts.map +1 -1
  116. package/dist/index.js +2 -1
  117. package/dist/index.js.map +1 -1
  118. package/dist/integrations/agent-mcp-installer.d.ts +39 -0
  119. package/dist/integrations/agent-mcp-installer.d.ts.map +1 -1
  120. package/dist/integrations/agent-mcp-installer.js +242 -31
  121. package/dist/integrations/agent-mcp-installer.js.map +1 -1
  122. package/dist/integrations/agent-profiles/index.d.ts +26 -0
  123. package/dist/integrations/agent-profiles/index.d.ts.map +1 -0
  124. package/dist/integrations/agent-profiles/index.js +31 -0
  125. package/dist/integrations/agent-profiles/index.js.map +1 -0
  126. package/dist/integrations/agent-profiles/profiles/amazon-q.d.ts +2 -0
  127. package/dist/integrations/agent-profiles/profiles/amazon-q.d.ts.map +1 -0
  128. package/dist/integrations/agent-profiles/profiles/amazon-q.js +18 -0
  129. package/dist/integrations/agent-profiles/profiles/amazon-q.js.map +1 -0
  130. package/dist/integrations/agent-profiles/profiles/antigravity.d.ts +2 -0
  131. package/dist/integrations/agent-profiles/profiles/antigravity.d.ts.map +1 -0
  132. package/dist/integrations/agent-profiles/profiles/antigravity.js +33 -0
  133. package/dist/integrations/agent-profiles/profiles/antigravity.js.map +1 -0
  134. package/dist/integrations/agent-profiles/profiles/claude-code.d.ts +2 -0
  135. package/dist/integrations/agent-profiles/profiles/claude-code.d.ts.map +1 -0
  136. package/dist/integrations/agent-profiles/profiles/claude-code.js +22 -0
  137. package/dist/integrations/agent-profiles/profiles/claude-code.js.map +1 -0
  138. package/dist/integrations/agent-profiles/profiles/cline.d.ts +2 -0
  139. package/dist/integrations/agent-profiles/profiles/cline.d.ts.map +1 -0
  140. package/dist/integrations/agent-profiles/profiles/cline.js +33 -0
  141. package/dist/integrations/agent-profiles/profiles/cline.js.map +1 -0
  142. package/dist/integrations/agent-profiles/profiles/codex.d.ts +2 -0
  143. package/dist/integrations/agent-profiles/profiles/codex.d.ts.map +1 -0
  144. package/dist/integrations/agent-profiles/profiles/codex.js +22 -0
  145. package/dist/integrations/agent-profiles/profiles/codex.js.map +1 -0
  146. package/dist/integrations/agent-profiles/profiles/continue.d.ts +2 -0
  147. package/dist/integrations/agent-profiles/profiles/continue.d.ts.map +1 -0
  148. package/dist/integrations/agent-profiles/profiles/continue.js +23 -0
  149. package/dist/integrations/agent-profiles/profiles/continue.js.map +1 -0
  150. package/dist/integrations/agent-profiles/profiles/cursor.d.ts +2 -0
  151. package/dist/integrations/agent-profiles/profiles/cursor.d.ts.map +1 -0
  152. package/dist/integrations/agent-profiles/profiles/cursor.js +28 -0
  153. package/dist/integrations/agent-profiles/profiles/cursor.js.map +1 -0
  154. package/dist/integrations/agent-profiles/profiles/gemini.d.ts +2 -0
  155. package/dist/integrations/agent-profiles/profiles/gemini.d.ts.map +1 -0
  156. package/dist/integrations/agent-profiles/profiles/gemini.js +30 -0
  157. package/dist/integrations/agent-profiles/profiles/gemini.js.map +1 -0
  158. package/dist/integrations/agent-profiles/profiles/kilocode.d.ts +2 -0
  159. package/dist/integrations/agent-profiles/profiles/kilocode.d.ts.map +1 -0
  160. package/dist/integrations/agent-profiles/profiles/kilocode.js +33 -0
  161. package/dist/integrations/agent-profiles/profiles/kilocode.js.map +1 -0
  162. package/dist/integrations/agent-profiles/profiles/pearai.d.ts +2 -0
  163. package/dist/integrations/agent-profiles/profiles/pearai.d.ts.map +1 -0
  164. package/dist/integrations/agent-profiles/profiles/pearai.js +23 -0
  165. package/dist/integrations/agent-profiles/profiles/pearai.js.map +1 -0
  166. package/dist/integrations/agent-profiles/profiles/qoder.d.ts +2 -0
  167. package/dist/integrations/agent-profiles/profiles/qoder.d.ts.map +1 -0
  168. package/dist/integrations/agent-profiles/profiles/qoder.js +32 -0
  169. package/dist/integrations/agent-profiles/profiles/qoder.js.map +1 -0
  170. package/dist/integrations/agent-profiles/profiles/roo-code.d.ts +2 -0
  171. package/dist/integrations/agent-profiles/profiles/roo-code.d.ts.map +1 -0
  172. package/dist/integrations/agent-profiles/profiles/roo-code.js +33 -0
  173. package/dist/integrations/agent-profiles/profiles/roo-code.js.map +1 -0
  174. package/dist/integrations/agent-profiles/profiles/trae.d.ts +2 -0
  175. package/dist/integrations/agent-profiles/profiles/trae.d.ts.map +1 -0
  176. package/dist/integrations/agent-profiles/profiles/trae.js +42 -0
  177. package/dist/integrations/agent-profiles/profiles/trae.js.map +1 -0
  178. package/dist/integrations/agent-profiles/profiles/vscode.d.ts +2 -0
  179. package/dist/integrations/agent-profiles/profiles/vscode.d.ts.map +1 -0
  180. package/dist/integrations/agent-profiles/profiles/vscode.js +28 -0
  181. package/dist/integrations/agent-profiles/profiles/vscode.js.map +1 -0
  182. package/dist/integrations/agent-profiles/profiles/windsurf.d.ts +2 -0
  183. package/dist/integrations/agent-profiles/profiles/windsurf.d.ts.map +1 -0
  184. package/dist/integrations/agent-profiles/profiles/windsurf.js +21 -0
  185. package/dist/integrations/agent-profiles/profiles/windsurf.js.map +1 -0
  186. package/dist/integrations/agent-profiles/profiles/zed.d.ts +2 -0
  187. package/dist/integrations/agent-profiles/profiles/zed.d.ts.map +1 -0
  188. package/dist/integrations/agent-profiles/profiles/zed.js +26 -0
  189. package/dist/integrations/agent-profiles/profiles/zed.js.map +1 -0
  190. package/dist/integrations/agent-profiles/registry.d.ts +5 -0
  191. package/dist/integrations/agent-profiles/registry.d.ts.map +1 -0
  192. package/dist/integrations/agent-profiles/registry.js +45 -0
  193. package/dist/integrations/agent-profiles/registry.js.map +1 -0
  194. package/dist/integrations/agent-profiles/skills/antigravity.d.ts +2 -0
  195. package/dist/integrations/agent-profiles/skills/antigravity.d.ts.map +1 -0
  196. package/dist/integrations/agent-profiles/skills/antigravity.js +13 -0
  197. package/dist/integrations/agent-profiles/skills/antigravity.js.map +1 -0
  198. package/dist/integrations/agent-profiles/skills/claude-code.d.ts +2 -0
  199. package/dist/integrations/agent-profiles/skills/claude-code.d.ts.map +1 -0
  200. package/dist/integrations/agent-profiles/skills/claude-code.js +13 -0
  201. package/dist/integrations/agent-profiles/skills/claude-code.js.map +1 -0
  202. package/dist/integrations/agent-profiles/skills/codex.d.ts +2 -0
  203. package/dist/integrations/agent-profiles/skills/codex.d.ts.map +1 -0
  204. package/dist/integrations/agent-profiles/skills/codex.js +18 -0
  205. package/dist/integrations/agent-profiles/skills/codex.js.map +1 -0
  206. package/dist/integrations/agent-profiles/skills/cursor.d.ts +2 -0
  207. package/dist/integrations/agent-profiles/skills/cursor.d.ts.map +1 -0
  208. package/dist/integrations/agent-profiles/skills/cursor.js +13 -0
  209. package/dist/integrations/agent-profiles/skills/cursor.js.map +1 -0
  210. package/dist/integrations/agent-profiles/skills/kilocode.d.ts +2 -0
  211. package/dist/integrations/agent-profiles/skills/kilocode.d.ts.map +1 -0
  212. package/dist/integrations/agent-profiles/skills/kilocode.js +13 -0
  213. package/dist/integrations/agent-profiles/skills/kilocode.js.map +1 -0
  214. package/dist/integrations/agent-profiles/skills/qoder.d.ts +2 -0
  215. package/dist/integrations/agent-profiles/skills/qoder.d.ts.map +1 -0
  216. package/dist/integrations/agent-profiles/skills/qoder.js +13 -0
  217. package/dist/integrations/agent-profiles/skills/qoder.js.map +1 -0
  218. package/dist/integrations/agent-profiles/skills/roo-code.d.ts +2 -0
  219. package/dist/integrations/agent-profiles/skills/roo-code.d.ts.map +1 -0
  220. package/dist/integrations/agent-profiles/skills/roo-code.js +13 -0
  221. package/dist/integrations/agent-profiles/skills/roo-code.js.map +1 -0
  222. package/dist/integrations/agent-profiles/types.d.ts +31 -0
  223. package/dist/integrations/agent-profiles/types.d.ts.map +1 -0
  224. package/dist/integrations/agent-profiles/types.js +3 -0
  225. package/dist/integrations/agent-profiles/types.js.map +1 -0
  226. package/dist/integrations/agent-profiles/utils.d.ts +12 -0
  227. package/dist/integrations/agent-profiles/utils.d.ts.map +1 -0
  228. package/dist/integrations/agent-profiles/utils.js +75 -0
  229. package/dist/integrations/agent-profiles/utils.js.map +1 -0
  230. package/dist/integrations/errors.d.ts +28 -0
  231. package/dist/integrations/errors.d.ts.map +1 -0
  232. package/dist/integrations/errors.js +97 -0
  233. package/dist/integrations/errors.js.map +1 -0
  234. package/dist/integrations/skill-health.d.ts +24 -0
  235. package/dist/integrations/skill-health.d.ts.map +1 -0
  236. package/dist/integrations/skill-health.js +111 -0
  237. package/dist/integrations/skill-health.js.map +1 -0
  238. package/dist/integrations/skill-installer.d.ts.map +1 -1
  239. package/dist/integrations/skill-installer.js +5 -8
  240. package/dist/integrations/skill-installer.js.map +1 -1
  241. package/dist/learning/embedding-quality.d.ts +46 -0
  242. package/dist/learning/embedding-quality.d.ts.map +1 -0
  243. package/dist/learning/embedding-quality.js +131 -0
  244. package/dist/learning/embedding-quality.js.map +1 -0
  245. package/dist/learning/embeddings.d.ts +45 -1
  246. package/dist/learning/embeddings.d.ts.map +1 -1
  247. package/dist/learning/embeddings.js +180 -5
  248. package/dist/learning/embeddings.js.map +1 -1
  249. package/dist/learning/skill-flywheel.d.ts +1 -1
  250. package/dist/learning/skill-flywheel.d.ts.map +1 -1
  251. package/dist/learning/skill-flywheel.js +10 -3
  252. package/dist/learning/skill-flywheel.js.map +1 -1
  253. package/dist/routing/deepseek-tools.d.ts +7 -0
  254. package/dist/routing/deepseek-tools.d.ts.map +1 -0
  255. package/dist/routing/deepseek-tools.js +154 -0
  256. package/dist/routing/deepseek-tools.js.map +1 -0
  257. package/dist/routing/model-router.d.ts +1 -1
  258. package/dist/routing/model-router.d.ts.map +1 -1
  259. package/dist/routing/model-router.js +5 -1
  260. package/dist/routing/model-router.js.map +1 -1
  261. package/dist/routing/provider-adapters/anthropic.d.ts.map +1 -1
  262. package/dist/routing/provider-adapters/anthropic.js +7 -4
  263. package/dist/routing/provider-adapters/anthropic.js.map +1 -1
  264. package/dist/routing/provider-adapters/bailian.d.ts.map +1 -1
  265. package/dist/routing/provider-adapters/bailian.js +7 -4
  266. package/dist/routing/provider-adapters/bailian.js.map +1 -1
  267. package/dist/routing/provider-adapters/deepseek.d.ts +5 -0
  268. package/dist/routing/provider-adapters/deepseek.d.ts.map +1 -0
  269. package/dist/routing/provider-adapters/deepseek.js +109 -0
  270. package/dist/routing/provider-adapters/deepseek.js.map +1 -0
  271. package/dist/routing/provider-adapters/doubao.d.ts.map +1 -1
  272. package/dist/routing/provider-adapters/doubao.js +7 -4
  273. package/dist/routing/provider-adapters/doubao.js.map +1 -1
  274. package/dist/routing/provider-adapters/openai.d.ts +2 -4
  275. package/dist/routing/provider-adapters/openai.d.ts.map +1 -1
  276. package/dist/routing/provider-adapters/openai.js +23 -32
  277. package/dist/routing/provider-adapters/openai.js.map +1 -1
  278. package/dist/routing/provider-adapters/types.d.ts +61 -0
  279. package/dist/routing/provider-adapters/types.d.ts.map +1 -0
  280. package/dist/routing/provider-adapters/types.js +56 -0
  281. package/dist/routing/provider-adapters/types.js.map +1 -0
  282. package/dist/routing/provider-executor.d.ts +6 -1
  283. package/dist/routing/provider-executor.d.ts.map +1 -1
  284. package/dist/routing/provider-executor.js +70 -39
  285. package/dist/routing/provider-executor.js.map +1 -1
  286. package/dist/routing/provider-health.d.ts.map +1 -1
  287. package/dist/routing/provider-health.js +7 -1
  288. package/dist/routing/provider-health.js.map +1 -1
  289. package/dist/routing/role-capabilities.d.ts +11 -0
  290. package/dist/routing/role-capabilities.d.ts.map +1 -0
  291. package/dist/routing/role-capabilities.js +94 -0
  292. package/dist/routing/role-capabilities.js.map +1 -0
  293. package/dist/surfaces/antigravity-rules/graphflow.md +3 -2
  294. package/dist/surfaces/cli/runtime/env.d.ts.map +1 -1
  295. package/dist/surfaces/cli/runtime/env.js +3 -0
  296. package/dist/surfaces/cli/runtime/env.js.map +1 -1
  297. package/dist/surfaces/cli/runtime/facade.d.ts +2 -1
  298. package/dist/surfaces/cli/runtime/facade.d.ts.map +1 -1
  299. package/dist/surfaces/cli/runtime/facade.js +1 -0
  300. package/dist/surfaces/cli/runtime/facade.js.map +1 -1
  301. package/dist/surfaces/cli/runtime/graph.d.ts.map +1 -1
  302. package/dist/surfaces/cli/runtime/graph.js +18 -2
  303. package/dist/surfaces/cli/runtime/graph.js.map +1 -1
  304. package/dist/surfaces/cli/runtime/routing.d.ts +3 -0
  305. package/dist/surfaces/cli/runtime/routing.d.ts.map +1 -1
  306. package/dist/surfaces/cli/runtime/routing.js +34 -6
  307. package/dist/surfaces/cli/runtime/routing.js.map +1 -1
  308. package/dist/surfaces/cli/runtime/types.d.ts +24 -1
  309. package/dist/surfaces/cli/runtime/types.d.ts.map +1 -1
  310. package/dist/surfaces/cli/runtime.d.ts +1 -1
  311. package/dist/surfaces/cli/runtime.d.ts.map +1 -1
  312. package/dist/surfaces/cli/runtime.js +2 -1
  313. package/dist/surfaces/cli/runtime.js.map +1 -1
  314. package/dist/surfaces/copilot-instructions/graphflow.md +3 -2
  315. package/dist/surfaces/cursor-rules/graphflow.mdc +3 -2
  316. package/dist/surfaces/mcp/server.js +17 -6
  317. package/dist/surfaces/mcp/server.js.map +1 -1
  318. package/dist/surfaces/mcp/tool-definitions.d.ts.map +1 -1
  319. package/dist/surfaces/mcp/tool-definitions.js +1 -1
  320. package/dist/surfaces/mcp/tool-definitions.js.map +1 -1
  321. package/dist/surfaces/mcp/tool-handlers.d.ts.map +1 -1
  322. package/dist/surfaces/mcp/tool-handlers.js +2 -0
  323. package/dist/surfaces/mcp/tool-handlers.js.map +1 -1
  324. package/dist/surfaces/trae-rules/graphflow.md +3 -2
  325. package/dist/surfaces/trae-skill/graphflow/SKILL.md +2 -0
  326. package/package.json +1 -1
  327. package/scripts/safe-postinstall.cjs +1 -0
  328. package/src/surfaces/antigravity-rules/graphflow.md +3 -2
  329. package/src/surfaces/copilot-instructions/graphflow.md +3 -2
  330. package/src/surfaces/cursor-rules/graphflow.mdc +3 -2
  331. package/src/surfaces/trae-rules/graphflow.md +3 -2
  332. package/src/surfaces/trae-skill/graphflow/SKILL.md +2 -0
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerKiloCodeProfile = registerKiloCodeProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerKiloCodeProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "kilocode",
10
+ name: "Kilo Code",
11
+ markerPaths: [
12
+ (0, utils_1.join)(appData, "Code", "User", "globalStorage", "kilocode.kilocode-ai"),
13
+ (0, utils_1.join)(appData, "Cursor", "User", "globalStorage", "kilocode.kilocode-ai"),
14
+ (0, utils_1.join)(home, ".config", "Code", "User", "globalStorage", "kilocode.kilocode-ai"),
15
+ ],
16
+ userTargets: [
17
+ {
18
+ configPath: (0, utils_1.isWindows)()
19
+ ? (0, utils_1.join)(appData, "Code", "User", "globalStorage", "kilocode.kilocode-ai", "settings", "cline_mcp_settings.json")
20
+ : (0, utils_1.join)(home, ".config", "Code", "User", "globalStorage", "kilocode.kilocode-ai", "settings", "cline_mcp_settings.json"),
21
+ serversKey: "mcpServers",
22
+ },
23
+ {
24
+ configPath: (0, utils_1.isWindows)()
25
+ ? (0, utils_1.join)(appData, "Cursor", "User", "globalStorage", "kilocode.kilocode-ai", "settings", "cline_mcp_settings.json")
26
+ : (0, utils_1.join)(home, ".config", "Cursor", "User", "globalStorage", "kilocode.kilocode-ai", "settings", "cline_mcp_settings.json"),
27
+ serversKey: "mcpServers",
28
+ },
29
+ ],
30
+ });
31
+ }
32
+ registerKiloCodeProfile();
33
+ //# sourceMappingURL=kilocode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kilocode.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/kilocode.ts"],"names":[],"mappings":";;AAGA,0DA0BC;AA7BD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,uBAAuB;IACrC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,WAAW;QACjB,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,CAAC;YACtE,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,CAAC;YACxE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,CAAC;SAC/E;QACD,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,EAAE,UAAU,EAAE,yBAAyB,CAAC;oBAC/G,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,EAAE,UAAU,EAAE,yBAAyB,CAAC;gBACzH,UAAU,EAAE,YAAY;aACzB;YACD;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,EAAE,UAAU,EAAE,yBAAyB,CAAC;oBACjH,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,sBAAsB,EAAE,UAAU,EAAE,yBAAyB,CAAC;gBAC3H,UAAU,EAAE,YAAY;aACzB;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,uBAAuB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerPearAIProfile(): void;
2
+ //# sourceMappingURL=pearai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pearai.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/pearai.ts"],"names":[],"mappings":"AAGA,wBAAgB,qBAAqB,IAAI,IAAI,CAgB5C"}
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerPearAIProfile = registerPearAIProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerPearAIProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "pearai",
10
+ name: "PearAI",
11
+ markerPaths: [
12
+ (0, utils_1.join)(home, ".pearai"),
13
+ (0, utils_1.join)(appData, "PearAI"),
14
+ ],
15
+ userTargets: [
16
+ { configPath: (0, utils_1.join)(home, ".pearai", "mcp.json"), serversKey: "mcpServers" },
17
+ { configPath: (0, utils_1.join)(appData, "PearAI", "User", "mcp.json"), serversKey: "mcpServers" },
18
+ ],
19
+ workspaceRelativePaths: [{ relativePath: (0, utils_1.join)(".pearai", "mcp.json"), serversKey: "mcpServers" }],
20
+ });
21
+ }
22
+ registerPearAIProfile();
23
+ //# sourceMappingURL=pearai.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pearai.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/pearai.ts"],"names":[],"mappings":";;AAGA,sDAgBC;AAnBD,0CAA8C;AAC9C,oCAAkD;AAElD,SAAgB,qBAAqB;IACnC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,QAAQ;QACd,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,CAAC;YACrB,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,CAAC;SACxB;QACD,WAAW,EAAE;YACX,EAAE,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,UAAU,CAAC,EAAE,UAAU,EAAE,YAAY,EAAE;YAC3E,EAAE,UAAU,EAAE,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,UAAU,EAAE,YAAY,EAAE;SACtF;QACD,sBAAsB,EAAE,CAAC,EAAE,YAAY,EAAE,IAAA,YAAI,EAAC,SAAS,EAAE,UAAU,CAAC,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC;KAClG,CAAC,CAAC;AACL,CAAC;AAED,qBAAqB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerQoderProfile(): void;
2
+ //# sourceMappingURL=qoder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qoder.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/qoder.ts"],"names":[],"mappings":"AAGA,wBAAgB,oBAAoB,IAAI,IAAI,CAyB3C"}
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerQoderProfile = registerQoderProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerQoderProfile() {
7
+ const { home, appData, localAppData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "qoder",
10
+ name: "Qoder",
11
+ markerPaths: [
12
+ (0, utils_1.join)(home, ".qoder"),
13
+ (0, utils_1.join)(appData, "Qoder"),
14
+ (0, utils_1.join)(localAppData, "Programs", "qoder"),
15
+ ],
16
+ userTargets: [
17
+ {
18
+ configPath: (0, utils_1.join)(home, ".qoder", "mcp.json"),
19
+ serversKey: "mcpServers",
20
+ },
21
+ {
22
+ configPath: (0, utils_1.isWindows)()
23
+ ? (0, utils_1.join)(appData, "Qoder", "User", "mcp.json")
24
+ : (0, utils_1.join)(home, ".config", "Qoder", "User", "mcp.json"),
25
+ serversKey: "mcpServers",
26
+ },
27
+ ],
28
+ workspaceRelativePaths: [{ relativePath: (0, utils_1.join)(".qoder", "mcp.json"), serversKey: "mcpServers" }],
29
+ });
30
+ }
31
+ registerQoderProfile();
32
+ //# sourceMappingURL=qoder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qoder.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/qoder.ts"],"names":[],"mappings":";;AAGA,oDAyBC;AA5BD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,oBAAoB;IAClC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,YAAY,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE3D,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,OAAO;QACb,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,CAAC;YACpB,IAAA,YAAI,EAAC,OAAO,EAAE,OAAO,CAAC;YACtB,IAAA,YAAI,EAAC,YAAY,EAAE,UAAU,EAAE,OAAO,CAAC;SACxC;QACD,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,EAAE,UAAU,CAAC;gBAC5C,UAAU,EAAE,YAAY;aACzB;YACD;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC;oBAC5C,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC;gBACtD,UAAU,EAAE,YAAY;aACzB;SACF;QACD,sBAAsB,EAAE,CAAC,EAAE,YAAY,EAAE,IAAA,YAAI,EAAC,QAAQ,EAAE,UAAU,CAAC,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC;KACjG,CAAC,CAAC;AACL,CAAC;AAED,oBAAoB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerRooCodeProfile(): void;
2
+ //# sourceMappingURL=roo-code.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roo-code.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/roo-code.ts"],"names":[],"mappings":"AAGA,wBAAgB,sBAAsB,IAAI,IAAI,CA0B7C"}
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerRooCodeProfile = registerRooCodeProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerRooCodeProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "roo-code",
10
+ name: "Roo Code",
11
+ markerPaths: [
12
+ (0, utils_1.join)(appData, "Code", "User", "globalStorage", "rooveterinaryinc.roo-cline"),
13
+ (0, utils_1.join)(appData, "Cursor", "User", "globalStorage", "rooveterinaryinc.roo-cline"),
14
+ (0, utils_1.join)(home, ".config", "Code", "User", "globalStorage", "rooveterinaryinc.roo-cline"),
15
+ ],
16
+ userTargets: [
17
+ {
18
+ configPath: (0, utils_1.isWindows)()
19
+ ? (0, utils_1.join)(appData, "Code", "User", "globalStorage", "rooveterinaryinc.roo-cline", "settings", "cline_mcp_settings.json")
20
+ : (0, utils_1.join)(home, ".config", "Code", "User", "globalStorage", "rooveterinaryinc.roo-cline", "settings", "cline_mcp_settings.json"),
21
+ serversKey: "mcpServers",
22
+ },
23
+ {
24
+ configPath: (0, utils_1.isWindows)()
25
+ ? (0, utils_1.join)(appData, "Cursor", "User", "globalStorage", "rooveterinaryinc.roo-cline", "settings", "cline_mcp_settings.json")
26
+ : (0, utils_1.join)(home, ".config", "Cursor", "User", "globalStorage", "rooveterinaryinc.roo-cline", "settings", "cline_mcp_settings.json"),
27
+ serversKey: "mcpServers",
28
+ },
29
+ ],
30
+ });
31
+ }
32
+ registerRooCodeProfile();
33
+ //# sourceMappingURL=roo-code.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roo-code.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/roo-code.ts"],"names":[],"mappings":";;AAGA,wDA0BC;AA7BD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,sBAAsB;IACpC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,UAAU;QAChB,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,CAAC;YAC5E,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,CAAC;YAC9E,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,CAAC;SACrF;QACD,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,EAAE,UAAU,EAAE,yBAAyB,CAAC;oBACrH,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,EAAE,UAAU,EAAE,yBAAyB,CAAC;gBAC/H,UAAU,EAAE,YAAY;aACzB;YACD;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,EAAE,UAAU,EAAE,yBAAyB,CAAC;oBACvH,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,EAAE,eAAe,EAAE,4BAA4B,EAAE,UAAU,EAAE,yBAAyB,CAAC;gBACjI,UAAU,EAAE,YAAY;aACzB;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,sBAAsB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerTraeProfile(): void;
2
+ //# sourceMappingURL=trae.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trae.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/trae.ts"],"names":[],"mappings":"AAGA,wBAAgB,mBAAmB,IAAI,IAAI,CAmC1C"}
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerTraeProfile = registerTraeProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerTraeProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "trae",
10
+ name: "Trae",
11
+ markerPaths: [
12
+ (0, utils_1.join)(home, ".trae"),
13
+ (0, utils_1.join)(home, ".trae-cn"),
14
+ (0, utils_1.join)(home, ".trae-aicc"),
15
+ (0, utils_1.join)(appData, "Trae"),
16
+ (0, utils_1.join)(appData, "Trae CN"),
17
+ (0, utils_1.join)(appData, "TRAE SOLO CN"),
18
+ ],
19
+ userTargets: [
20
+ {
21
+ configPath: (0, utils_1.isWindows)()
22
+ ? (0, utils_1.join)(appData, "Trae", "User", "mcp.json")
23
+ : (0, utils_1.join)(home, ".config", "Trae", "User", "mcp.json"),
24
+ serversKey: "mcpServers",
25
+ },
26
+ {
27
+ configPath: (0, utils_1.isWindows)()
28
+ ? (0, utils_1.join)(appData, "Trae CN", "User", "mcp.json")
29
+ : (0, utils_1.join)(home, ".config", "Trae CN", "User", "mcp.json"),
30
+ serversKey: "mcpServers",
31
+ },
32
+ {
33
+ configPath: (0, utils_1.isWindows)()
34
+ ? (0, utils_1.join)(appData, "TRAE SOLO CN", "User", "mcp.json")
35
+ : (0, utils_1.join)(home, ".config", "TRAE SOLO CN", "User", "mcp.json"),
36
+ serversKey: "mcpServers",
37
+ },
38
+ ],
39
+ });
40
+ }
41
+ registerTraeProfile();
42
+ //# sourceMappingURL=trae.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trae.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/trae.ts"],"names":[],"mappings":";;AAGA,kDAmCC;AAtCD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,mBAAmB;IACjC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,MAAM;QACV,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,IAAI,EAAE,OAAO,CAAC;YACnB,IAAA,YAAI,EAAC,IAAI,EAAE,UAAU,CAAC;YACtB,IAAA,YAAI,EAAC,IAAI,EAAE,YAAY,CAAC;YACxB,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,CAAC;YACrB,IAAA,YAAI,EAAC,OAAO,EAAE,SAAS,CAAC;YACxB,IAAA,YAAI,EAAC,OAAO,EAAE,cAAc,CAAC;SAC9B;QACD,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC;oBAC3C,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC;gBACrD,UAAU,EAAE,YAAY;aACzB;YACD;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,CAAC;oBAC9C,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,CAAC;gBACxD,UAAU,EAAE,YAAY;aACzB;YACD;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,cAAc,EAAE,MAAM,EAAE,UAAU,CAAC;oBACnD,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,EAAE,UAAU,CAAC;gBAC7D,UAAU,EAAE,YAAY;aACzB;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerVscodeProfile(): void;
2
+ //# sourceMappingURL=vscode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/vscode.ts"],"names":[],"mappings":"AAGA,wBAAgB,qBAAqB,IAAI,IAAI,CAqB5C"}
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerVscodeProfile = registerVscodeProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerVscodeProfile() {
7
+ const { home, appData, localAppData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "vscode",
10
+ name: "VS Code",
11
+ markerPaths: [
12
+ (0, utils_1.join)(appData, "Code"),
13
+ (0, utils_1.join)(localAppData, "Programs", "Microsoft VS Code"),
14
+ (0, utils_1.join)(home, ".vscode"),
15
+ ],
16
+ userTargets: [
17
+ {
18
+ configPath: (0, utils_1.isWindows)()
19
+ ? (0, utils_1.join)(appData, "Code", "User", "mcp.json")
20
+ : (0, utils_1.join)(home, ".config", "Code", "User", "mcp.json"),
21
+ serversKey: "servers",
22
+ },
23
+ ],
24
+ workspaceRelativePaths: [{ relativePath: (0, utils_1.join)(".vscode", "mcp.json"), serversKey: "servers" }],
25
+ });
26
+ }
27
+ registerVscodeProfile();
28
+ //# sourceMappingURL=vscode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vscode.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/vscode.ts"],"names":[],"mappings":";;AAGA,sDAqBC;AAxBD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,qBAAqB;IACnC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,YAAY,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE3D,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,SAAS;QACf,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,CAAC;YACrB,IAAA,YAAI,EAAC,YAAY,EAAE,UAAU,EAAE,mBAAmB,CAAC;YACnD,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,CAAC;SACtB;QACD,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC;oBAC3C,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,CAAC;gBACrD,UAAU,EAAE,SAAS;aACtB;SACF;QACD,sBAAsB,EAAE,CAAC,EAAE,YAAY,EAAE,IAAA,YAAI,EAAC,SAAS,EAAE,UAAU,CAAC,EAAE,UAAU,EAAE,SAAS,EAAE,CAAC;KAC/F,CAAC,CAAC;AACL,CAAC;AAED,qBAAqB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerWindsurfProfile(): void;
2
+ //# sourceMappingURL=windsurf.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windsurf.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/windsurf.ts"],"names":[],"mappings":"AAGA,wBAAgB,uBAAuB,IAAI,IAAI,CAc9C"}
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerWindsurfProfile = registerWindsurfProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerWindsurfProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "windsurf",
10
+ name: "Windsurf",
11
+ markerPaths: [(0, utils_1.join)(home, ".codeium", "windsurf"), (0, utils_1.join)(appData, "Windsurf")],
12
+ userTargets: [
13
+ {
14
+ configPath: (0, utils_1.join)(home, ".codeium", "windsurf", "mcp_config.json"),
15
+ serversKey: "mcpServers",
16
+ },
17
+ ],
18
+ });
19
+ }
20
+ registerWindsurfProfile();
21
+ //# sourceMappingURL=windsurf.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"windsurf.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/windsurf.ts"],"names":[],"mappings":";;AAGA,0DAcC;AAjBD,0CAA8C;AAC9C,oCAAkD;AAElD,SAAgB,uBAAuB;IACrC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,UAAU;QACd,IAAI,EAAE,UAAU;QAChB,WAAW,EAAE,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,UAAU,EAAE,UAAU,CAAC,EAAE,IAAA,YAAI,EAAC,OAAO,EAAE,UAAU,CAAC,CAAC;QAC5E,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,UAAU,EAAE,UAAU,EAAE,iBAAiB,CAAC;gBACjE,UAAU,EAAE,YAAY;aACzB;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,uBAAuB,EAAE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function registerZedProfile(): void;
2
+ //# sourceMappingURL=zed.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zed.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/zed.ts"],"names":[],"mappings":"AAGA,wBAAgB,kBAAkB,IAAI,IAAI,CAmBzC"}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.registerZedProfile = registerZedProfile;
4
+ const registry_1 = require("../registry");
5
+ const utils_1 = require("../utils");
6
+ function registerZedProfile() {
7
+ const { home, appData } = (0, utils_1.resolveHomePaths)();
8
+ registry_1.profileRegistry.registerProfile({
9
+ id: "zed",
10
+ name: "Zed",
11
+ markerPaths: [
12
+ (0, utils_1.join)(home, ".config", "zed"),
13
+ (0, utils_1.isWindows)() ? (0, utils_1.join)(appData, "Zed") : undefined,
14
+ ].filter(Boolean),
15
+ userTargets: [
16
+ {
17
+ configPath: (0, utils_1.isWindows)()
18
+ ? (0, utils_1.join)(appData, "Zed", "settings.json")
19
+ : (0, utils_1.join)(home, ".config", "zed", "settings.json"),
20
+ serversKey: "context_servers",
21
+ },
22
+ ],
23
+ });
24
+ }
25
+ registerZedProfile();
26
+ //# sourceMappingURL=zed.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zed.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/profiles/zed.ts"],"names":[],"mappings":";;AAGA,gDAmBC;AAtBD,0CAA8C;AAC9C,oCAA6D;AAE7D,SAAgB,kBAAkB;IAChC,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;IAE7C,0BAAe,CAAC,eAAe,CAAC;QAC9B,EAAE,EAAE,KAAK;QACT,IAAI,EAAE,KAAK;QACX,WAAW,EAAE;YACX,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,KAAK,CAAC;YAC5B,IAAA,iBAAS,GAAE,CAAC,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,SAAS;SAC/C,CAAC,MAAM,CAAC,OAAO,CAAa;QAC7B,WAAW,EAAE;YACX;gBACE,UAAU,EAAE,IAAA,iBAAS,GAAE;oBACrB,CAAC,CAAC,IAAA,YAAI,EAAC,OAAO,EAAE,KAAK,EAAE,eAAe,CAAC;oBACvC,CAAC,CAAC,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,eAAe,CAAC;gBACjD,UAAU,EAAE,iBAAiB;aAC9B;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,kBAAkB,EAAE,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { AgentProfile, AgentSkillTarget, ProfileRegistry } from "./types";
2
+ export declare const profileRegistry: ProfileRegistry;
3
+ export declare function registerProfiles(profiles: AgentProfile[]): void;
4
+ export declare function registerSkillTargets(targets: AgentSkillTarget[]): void;
5
+ //# sourceMappingURL=registry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../../src/integrations/agent-profiles/registry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAiC/E,eAAO,MAAM,eAAe,EAAE,eAA8C,CAAC;AAE7E,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,YAAY,EAAE,GAAG,IAAI,CAI/D;AAED,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,gBAAgB,EAAE,GAAG,IAAI,CAItE"}
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.profileRegistry = void 0;
4
+ exports.registerProfiles = registerProfiles;
5
+ exports.registerSkillTargets = registerSkillTargets;
6
+ class DefaultProfileRegistry {
7
+ profiles = [];
8
+ skillTargets = [];
9
+ registerProfile(profile) {
10
+ const existingIndex = this.profiles.findIndex((p) => p.id === profile.id);
11
+ if (existingIndex >= 0) {
12
+ this.profiles[existingIndex] = profile;
13
+ }
14
+ else {
15
+ this.profiles.push(profile);
16
+ }
17
+ }
18
+ registerSkillTarget(target) {
19
+ const existingIndex = this.skillTargets.findIndex((t) => t.agent === target.agent);
20
+ if (existingIndex >= 0) {
21
+ this.skillTargets[existingIndex] = target;
22
+ }
23
+ else {
24
+ this.skillTargets.push(target);
25
+ }
26
+ }
27
+ getProfiles() {
28
+ return [...this.profiles];
29
+ }
30
+ getSkillTargets() {
31
+ return [...this.skillTargets];
32
+ }
33
+ }
34
+ exports.profileRegistry = new DefaultProfileRegistry();
35
+ function registerProfiles(profiles) {
36
+ for (const profile of profiles) {
37
+ exports.profileRegistry.registerProfile(profile);
38
+ }
39
+ }
40
+ function registerSkillTargets(targets) {
41
+ for (const target of targets) {
42
+ exports.profileRegistry.registerSkillTarget(target);
43
+ }
44
+ }
45
+ //# sourceMappingURL=registry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../../src/integrations/agent-profiles/registry.ts"],"names":[],"mappings":";;;AAmCA,4CAIC;AAED,oDAIC;AA3CD,MAAM,sBAAsB;IAClB,QAAQ,GAAmB,EAAE,CAAC;IAC9B,YAAY,GAAuB,EAAE,CAAC;IAE9C,eAAe,CAAC,OAAqB;QACnC,MAAM,aAAa,GAAG,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,CAAC,CAAC;QAC1E,IAAI,aAAa,IAAI,CAAC,EAAE,CAAC;YACvB,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,GAAG,OAAO,CAAC;QACzC,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC9B,CAAC;IACH,CAAC;IAED,mBAAmB,CAAC,MAAwB;QAC1C,MAAM,aAAa,GAAG,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,KAAK,MAAM,CAAC,KAAK,CAAC,CAAC;QACnF,IAAI,aAAa,IAAI,CAAC,EAAE,CAAC;YACvB,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC,GAAG,MAAM,CAAC;QAC5C,CAAC;aAAM,CAAC;YACN,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACjC,CAAC;IACH,CAAC;IAED,WAAW;QACT,OAAO,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;IAC5B,CAAC;IAED,eAAe;QACb,OAAO,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,CAAC;IAChC,CAAC;CACF;AAEY,QAAA,eAAe,GAAoB,IAAI,sBAAsB,EAAE,CAAC;AAE7E,SAAgB,gBAAgB,CAAC,QAAwB;IACvD,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;QAC/B,uBAAe,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;IAC3C,CAAC;AACH,CAAC;AAED,SAAgB,oBAAoB,CAAC,OAA2B;IAC9D,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE,CAAC;QAC7B,uBAAe,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC;IAC9C,CAAC;AACH,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=antigravity.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"antigravity.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/antigravity.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Antigravity",
9
+ markerDir: (0, utils_1.join)(home, ".gemini", "antigravity"),
10
+ skillsRoot: (0, utils_1.join)(home, ".gemini", "antigravity", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=antigravity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"antigravity.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/antigravity.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,aAAa;QACpB,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,aAAa,CAAC;QAC/C,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,aAAa,EAAE,QAAQ,CAAC;KAC3D;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=claude-code.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"claude-code.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/claude-code.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Claude Code",
9
+ markerDir: (0, utils_1.join)(home, ".claude"),
10
+ skillsRoot: (0, utils_1.join)(home, ".claude", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=claude-code.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"claude-code.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/claude-code.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,aAAa;QACpB,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,CAAC;QAChC,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,QAAQ,CAAC;KAC5C;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=codex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codex.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/codex.ts"],"names":[],"mappings":""}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Codex",
9
+ markerDir: (0, utils_1.join)(home, ".codex"),
10
+ skillsRoot: (0, utils_1.join)(home, ".codex", "skills"),
11
+ },
12
+ {
13
+ agent: "Codex (agents)",
14
+ markerDir: (0, utils_1.join)(home, ".codex"),
15
+ skillsRoot: (0, utils_1.join)(home, ".agents", "skills"),
16
+ },
17
+ ]);
18
+ //# sourceMappingURL=codex.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"codex.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/codex.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,OAAO;QACd,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,CAAC;QAC/B,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,EAAE,QAAQ,CAAC;KAC3C;IACD;QACE,KAAK,EAAE,gBAAgB;QACvB,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,CAAC;QAC/B,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,QAAQ,CAAC;KAC5C;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=cursor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cursor.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/cursor.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Cursor",
9
+ markerDir: (0, utils_1.join)(home, ".cursor"),
10
+ skillsRoot: (0, utils_1.join)(home, ".cursor", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=cursor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cursor.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/cursor.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,QAAQ;QACf,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,CAAC;QAChC,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,SAAS,EAAE,QAAQ,CAAC;KAC5C;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=kilocode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kilocode.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/kilocode.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Kilo Code",
9
+ markerDir: (0, utils_1.join)(home, ".kilocode"),
10
+ skillsRoot: (0, utils_1.join)(home, ".kilocode", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=kilocode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"kilocode.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/kilocode.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,WAAW;QAClB,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,WAAW,CAAC;QAClC,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,WAAW,EAAE,QAAQ,CAAC;KAC9C;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=qoder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qoder.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/qoder.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Qoder",
9
+ markerDir: (0, utils_1.join)(home, ".qoder"),
10
+ skillsRoot: (0, utils_1.join)(home, ".qoder", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=qoder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"qoder.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/qoder.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,OAAO;QACd,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,CAAC;QAC/B,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,QAAQ,EAAE,QAAQ,CAAC;KAC3C;CACF,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=roo-code.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roo-code.d.ts","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/roo-code.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const registry_1 = require("../registry");
4
+ const utils_1 = require("../utils");
5
+ const { home } = (0, utils_1.resolveHomePaths)();
6
+ (0, registry_1.registerSkillTargets)([
7
+ {
8
+ agent: "Roo Code",
9
+ markerDir: (0, utils_1.join)(home, ".roo"),
10
+ skillsRoot: (0, utils_1.join)(home, ".roo", "skills"),
11
+ },
12
+ ]);
13
+ //# sourceMappingURL=roo-code.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roo-code.js","sourceRoot":"","sources":["../../../../src/integrations/agent-profiles/skills/roo-code.ts"],"names":[],"mappings":";;AAAA,0CAAmD;AACnD,oCAAkD;AAElD,MAAM,EAAE,IAAI,EAAE,GAAG,IAAA,wBAAgB,GAAE,CAAC;AAEpC,IAAA,+BAAoB,EAAC;IACnB;QACE,KAAK,EAAE,UAAU;QACjB,SAAS,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,MAAM,CAAC;QAC7B,UAAU,EAAE,IAAA,YAAI,EAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC;KACzC;CACF,CAAC,CAAC"}