forge-server 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. package/.claude/hooks/worktree-create.sh +64 -0
  2. package/.claude/hooks/worktree-remove.sh +57 -0
  3. package/.claude/settings.local.json +29 -0
  4. package/.forge/knowledge/conventions.yaml +1 -0
  5. package/.forge/knowledge/decisions.yaml +1 -0
  6. package/.forge/knowledge/gotchas.yaml +1 -0
  7. package/.forge/knowledge/patterns.yaml +1 -0
  8. package/.forge/manifest.yaml +6 -0
  9. package/CLAUDE.md +144 -0
  10. package/bin/setup-forge.sh +132 -0
  11. package/dist/cli.d.ts +3 -0
  12. package/dist/cli.d.ts.map +1 -0
  13. package/dist/cli.js +553 -0
  14. package/dist/cli.js.map +1 -0
  15. package/dist/context/codebase.d.ts +57 -0
  16. package/dist/context/codebase.d.ts.map +1 -0
  17. package/dist/context/codebase.js +301 -0
  18. package/dist/context/codebase.js.map +1 -0
  19. package/dist/context/injector.d.ts +147 -0
  20. package/dist/context/injector.d.ts.map +1 -0
  21. package/dist/context/injector.js +533 -0
  22. package/dist/context/injector.js.map +1 -0
  23. package/dist/context/memory.d.ts +32 -0
  24. package/dist/context/memory.d.ts.map +1 -0
  25. package/dist/context/memory.js +140 -0
  26. package/dist/context/memory.js.map +1 -0
  27. package/dist/context/session-index.d.ts +54 -0
  28. package/dist/context/session-index.d.ts.map +1 -0
  29. package/dist/context/session-index.js +265 -0
  30. package/dist/context/session-index.js.map +1 -0
  31. package/dist/context/session.d.ts +42 -0
  32. package/dist/context/session.d.ts.map +1 -0
  33. package/dist/context/session.js +121 -0
  34. package/dist/context/session.js.map +1 -0
  35. package/dist/index.d.ts +3 -0
  36. package/dist/index.d.ts.map +1 -0
  37. package/dist/index.js +37 -0
  38. package/dist/index.js.map +1 -0
  39. package/dist/ingestion/chunker.d.ts +19 -0
  40. package/dist/ingestion/chunker.d.ts.map +1 -0
  41. package/dist/ingestion/chunker.js +189 -0
  42. package/dist/ingestion/chunker.js.map +1 -0
  43. package/dist/ingestion/embedder.d.ts +45 -0
  44. package/dist/ingestion/embedder.d.ts.map +1 -0
  45. package/dist/ingestion/embedder.js +152 -0
  46. package/dist/ingestion/embedder.js.map +1 -0
  47. package/dist/ingestion/git-analyzer.d.ts +77 -0
  48. package/dist/ingestion/git-analyzer.d.ts.map +1 -0
  49. package/dist/ingestion/git-analyzer.js +437 -0
  50. package/dist/ingestion/git-analyzer.js.map +1 -0
  51. package/dist/ingestion/indexer.d.ts +79 -0
  52. package/dist/ingestion/indexer.d.ts.map +1 -0
  53. package/dist/ingestion/indexer.js +766 -0
  54. package/dist/ingestion/indexer.js.map +1 -0
  55. package/dist/ingestion/markdown-chunker.d.ts +19 -0
  56. package/dist/ingestion/markdown-chunker.d.ts.map +1 -0
  57. package/dist/ingestion/markdown-chunker.js +243 -0
  58. package/dist/ingestion/markdown-chunker.js.map +1 -0
  59. package/dist/ingestion/markdown-knowledge.d.ts +21 -0
  60. package/dist/ingestion/markdown-knowledge.d.ts.map +1 -0
  61. package/dist/ingestion/markdown-knowledge.js +129 -0
  62. package/dist/ingestion/markdown-knowledge.js.map +1 -0
  63. package/dist/ingestion/parser.d.ts +20 -0
  64. package/dist/ingestion/parser.d.ts.map +1 -0
  65. package/dist/ingestion/parser.js +429 -0
  66. package/dist/ingestion/parser.js.map +1 -0
  67. package/dist/ingestion/watcher.d.ts +28 -0
  68. package/dist/ingestion/watcher.d.ts.map +1 -0
  69. package/dist/ingestion/watcher.js +147 -0
  70. package/dist/ingestion/watcher.js.map +1 -0
  71. package/dist/knowledge/hydrator.d.ts +37 -0
  72. package/dist/knowledge/hydrator.d.ts.map +1 -0
  73. package/dist/knowledge/hydrator.js +220 -0
  74. package/dist/knowledge/hydrator.js.map +1 -0
  75. package/dist/knowledge/registry.d.ts +129 -0
  76. package/dist/knowledge/registry.d.ts.map +1 -0
  77. package/dist/knowledge/registry.js +361 -0
  78. package/dist/knowledge/registry.js.map +1 -0
  79. package/dist/knowledge/search.d.ts +114 -0
  80. package/dist/knowledge/search.d.ts.map +1 -0
  81. package/dist/knowledge/search.js +428 -0
  82. package/dist/knowledge/search.js.map +1 -0
  83. package/dist/knowledge/store.d.ts +76 -0
  84. package/dist/knowledge/store.d.ts.map +1 -0
  85. package/dist/knowledge/store.js +230 -0
  86. package/dist/knowledge/store.js.map +1 -0
  87. package/dist/learning/confidence.d.ts +30 -0
  88. package/dist/learning/confidence.d.ts.map +1 -0
  89. package/dist/learning/confidence.js +165 -0
  90. package/dist/learning/confidence.js.map +1 -0
  91. package/dist/learning/patterns.d.ts +52 -0
  92. package/dist/learning/patterns.d.ts.map +1 -0
  93. package/dist/learning/patterns.js +290 -0
  94. package/dist/learning/patterns.js.map +1 -0
  95. package/dist/learning/trajectory.d.ts +55 -0
  96. package/dist/learning/trajectory.d.ts.map +1 -0
  97. package/dist/learning/trajectory.js +200 -0
  98. package/dist/learning/trajectory.js.map +1 -0
  99. package/dist/memory/memory-compat.d.ts +100 -0
  100. package/dist/memory/memory-compat.d.ts.map +1 -0
  101. package/dist/memory/memory-compat.js +146 -0
  102. package/dist/memory/memory-compat.js.map +1 -0
  103. package/dist/memory/observation-store.d.ts +57 -0
  104. package/dist/memory/observation-store.d.ts.map +1 -0
  105. package/dist/memory/observation-store.js +154 -0
  106. package/dist/memory/observation-store.js.map +1 -0
  107. package/dist/memory/session-tracker.d.ts +81 -0
  108. package/dist/memory/session-tracker.d.ts.map +1 -0
  109. package/dist/memory/session-tracker.js +262 -0
  110. package/dist/memory/session-tracker.js.map +1 -0
  111. package/dist/pipeline/engine.d.ts +179 -0
  112. package/dist/pipeline/engine.d.ts.map +1 -0
  113. package/dist/pipeline/engine.js +691 -0
  114. package/dist/pipeline/engine.js.map +1 -0
  115. package/dist/pipeline/events.d.ts +54 -0
  116. package/dist/pipeline/events.d.ts.map +1 -0
  117. package/dist/pipeline/events.js +157 -0
  118. package/dist/pipeline/events.js.map +1 -0
  119. package/dist/pipeline/parallel.d.ts +83 -0
  120. package/dist/pipeline/parallel.d.ts.map +1 -0
  121. package/dist/pipeline/parallel.js +277 -0
  122. package/dist/pipeline/parallel.js.map +1 -0
  123. package/dist/pipeline/state-machine.d.ts +65 -0
  124. package/dist/pipeline/state-machine.d.ts.map +1 -0
  125. package/dist/pipeline/state-machine.js +176 -0
  126. package/dist/pipeline/state-machine.js.map +1 -0
  127. package/dist/query/graph-queries.d.ts +84 -0
  128. package/dist/query/graph-queries.d.ts.map +1 -0
  129. package/dist/query/graph-queries.js +216 -0
  130. package/dist/query/graph-queries.js.map +1 -0
  131. package/dist/query/hybrid-search.d.ts +34 -0
  132. package/dist/query/hybrid-search.d.ts.map +1 -0
  133. package/dist/query/hybrid-search.js +263 -0
  134. package/dist/query/hybrid-search.js.map +1 -0
  135. package/dist/query/intent-detector.d.ts +35 -0
  136. package/dist/query/intent-detector.d.ts.map +1 -0
  137. package/dist/query/intent-detector.js +115 -0
  138. package/dist/query/intent-detector.js.map +1 -0
  139. package/dist/query/ranking.d.ts +57 -0
  140. package/dist/query/ranking.d.ts.map +1 -0
  141. package/dist/query/ranking.js +109 -0
  142. package/dist/query/ranking.js.map +1 -0
  143. package/dist/server.d.ts +3 -0
  144. package/dist/server.d.ts.map +1 -0
  145. package/dist/server.js +291 -0
  146. package/dist/server.js.map +1 -0
  147. package/dist/storage/falkordb-store.d.ts +73 -0
  148. package/dist/storage/falkordb-store.d.ts.map +1 -0
  149. package/dist/storage/falkordb-store.js +346 -0
  150. package/dist/storage/falkordb-store.js.map +1 -0
  151. package/dist/storage/file-cache.d.ts +32 -0
  152. package/dist/storage/file-cache.d.ts.map +1 -0
  153. package/dist/storage/file-cache.js +115 -0
  154. package/dist/storage/file-cache.js.map +1 -0
  155. package/dist/storage/interfaces.d.ts +151 -0
  156. package/dist/storage/interfaces.d.ts.map +1 -0
  157. package/dist/storage/interfaces.js +7 -0
  158. package/dist/storage/interfaces.js.map +1 -0
  159. package/dist/storage/qdrant-store.d.ts +110 -0
  160. package/dist/storage/qdrant-store.d.ts.map +1 -0
  161. package/dist/storage/qdrant-store.js +467 -0
  162. package/dist/storage/qdrant-store.js.map +1 -0
  163. package/dist/storage/schema.d.ts +4 -0
  164. package/dist/storage/schema.d.ts.map +1 -0
  165. package/dist/storage/schema.js +136 -0
  166. package/dist/storage/schema.js.map +1 -0
  167. package/dist/storage/sqlite.d.ts +35 -0
  168. package/dist/storage/sqlite.d.ts.map +1 -0
  169. package/dist/storage/sqlite.js +132 -0
  170. package/dist/storage/sqlite.js.map +1 -0
  171. package/dist/tools/collaboration-tools.d.ts +111 -0
  172. package/dist/tools/collaboration-tools.d.ts.map +1 -0
  173. package/dist/tools/collaboration-tools.js +174 -0
  174. package/dist/tools/collaboration-tools.js.map +1 -0
  175. package/dist/tools/context-tools.d.ts +293 -0
  176. package/dist/tools/context-tools.d.ts.map +1 -0
  177. package/dist/tools/context-tools.js +437 -0
  178. package/dist/tools/context-tools.js.map +1 -0
  179. package/dist/tools/graph-tools.d.ts +129 -0
  180. package/dist/tools/graph-tools.d.ts.map +1 -0
  181. package/dist/tools/graph-tools.js +237 -0
  182. package/dist/tools/graph-tools.js.map +1 -0
  183. package/dist/tools/ingestion-tools.d.ts +96 -0
  184. package/dist/tools/ingestion-tools.d.ts.map +1 -0
  185. package/dist/tools/ingestion-tools.js +90 -0
  186. package/dist/tools/ingestion-tools.js.map +1 -0
  187. package/dist/tools/learning-tools.d.ts +168 -0
  188. package/dist/tools/learning-tools.d.ts.map +1 -0
  189. package/dist/tools/learning-tools.js +158 -0
  190. package/dist/tools/learning-tools.js.map +1 -0
  191. package/dist/tools/memory-tools.d.ts +183 -0
  192. package/dist/tools/memory-tools.d.ts.map +1 -0
  193. package/dist/tools/memory-tools.js +197 -0
  194. package/dist/tools/memory-tools.js.map +1 -0
  195. package/dist/tools/phase-tools.d.ts +954 -0
  196. package/dist/tools/phase-tools.d.ts.map +1 -0
  197. package/dist/tools/phase-tools.js +1215 -0
  198. package/dist/tools/phase-tools.js.map +1 -0
  199. package/dist/tools/pipeline-tools.d.ts +140 -0
  200. package/dist/tools/pipeline-tools.d.ts.map +1 -0
  201. package/dist/tools/pipeline-tools.js +162 -0
  202. package/dist/tools/pipeline-tools.js.map +1 -0
  203. package/dist/tools/registration-tools.d.ts +220 -0
  204. package/dist/tools/registration-tools.d.ts.map +1 -0
  205. package/dist/tools/registration-tools.js +391 -0
  206. package/dist/tools/registration-tools.js.map +1 -0
  207. package/dist/util/circuit-breaker.d.ts +75 -0
  208. package/dist/util/circuit-breaker.d.ts.map +1 -0
  209. package/dist/util/circuit-breaker.js +159 -0
  210. package/dist/util/circuit-breaker.js.map +1 -0
  211. package/dist/util/config.d.ts +23 -0
  212. package/dist/util/config.d.ts.map +1 -0
  213. package/dist/util/config.js +164 -0
  214. package/dist/util/config.js.map +1 -0
  215. package/dist/util/logger.d.ts +13 -0
  216. package/dist/util/logger.d.ts.map +1 -0
  217. package/dist/util/logger.js +45 -0
  218. package/dist/util/logger.js.map +1 -0
  219. package/dist/util/token-counter.d.ts +24 -0
  220. package/dist/util/token-counter.d.ts.map +1 -0
  221. package/dist/util/token-counter.js +48 -0
  222. package/dist/util/token-counter.js.map +1 -0
  223. package/dist/util/types.d.ts +525 -0
  224. package/dist/util/types.d.ts.map +1 -0
  225. package/dist/util/types.js +5 -0
  226. package/dist/util/types.js.map +1 -0
  227. package/docker-compose.yml +20 -0
  228. package/docs/plans/2026-02-27-swarm-coordination/architecture.md +203 -0
  229. package/docs/plans/2026-02-27-swarm-coordination/vision.md +57 -0
  230. package/docs/plans/completed/2026-02-26-forge-plugin-bundling/architecture.md +1 -0
  231. package/docs/plans/completed/2026-02-26-forge-plugin-bundling/vision.md +300 -0
  232. package/docs/plans/completed/2026-02-27-forge-swarm-learning/architecture.md +480 -0
  233. package/docs/plans/completed/2026-02-27-forge-swarm-learning/verification-checklist.md +462 -0
  234. package/docs/plans/completed/2026-02-27-git-history-atlassian/git-jira-plan.md +181 -0
  235. package/package.json +39 -0
  236. package/plugin/.claude-plugin/plugin.json +8 -0
  237. package/plugin/.mcp.json +15 -0
  238. package/plugin/README.md +134 -0
  239. package/plugin/agents/architect.md +367 -0
  240. package/plugin/agents/backend-specialist.md +263 -0
  241. package/plugin/agents/brainstormer.md +122 -0
  242. package/plugin/agents/data-specialist.md +266 -0
  243. package/plugin/agents/designer.md +408 -0
  244. package/plugin/agents/frontend-specialist.md +241 -0
  245. package/plugin/agents/inspector.md +406 -0
  246. package/plugin/agents/knowledge-keeper.md +443 -0
  247. package/plugin/agents/platform-engineer.md +326 -0
  248. package/plugin/agents/product-manager.md +268 -0
  249. package/plugin/agents/product-owner.md +438 -0
  250. package/plugin/agents/pulse-checker.md +73 -0
  251. package/plugin/agents/qa-strategist.md +500 -0
  252. package/plugin/agents/self-improver.md +310 -0
  253. package/plugin/agents/strategist.md +360 -0
  254. package/plugin/agents/supervisor.md +380 -0
  255. package/plugin/commands/brainstorm.md +25 -0
  256. package/plugin/commands/forge.md +88 -0
  257. package/plugin/docs/atlassian-integration.md +110 -0
  258. package/plugin/docs/workflow.md +126 -0
  259. package/plugin/skills/agent-development/.skillfish.json +10 -0
  260. package/plugin/skills/agent-development/SKILL.md +415 -0
  261. package/plugin/skills/agent-development/examples/agent-creation-prompt.md +238 -0
  262. package/plugin/skills/agent-development/examples/complete-agent-examples.md +427 -0
  263. package/plugin/skills/agent-development/references/agent-creation-system-prompt.md +207 -0
  264. package/plugin/skills/agent-development/references/system-prompt-design.md +411 -0
  265. package/plugin/skills/agent-development/references/triggering-examples.md +491 -0
  266. package/plugin/skills/agent-development/scripts/validate-agent.sh +217 -0
  267. package/plugin/skills/agent-handoff/SKILL.md +335 -0
  268. package/plugin/skills/anti-stub/SKILL.md +317 -0
  269. package/plugin/skills/brainstorm/SKILL.md +31 -0
  270. package/plugin/skills/debugging/SKILL.md +276 -0
  271. package/plugin/skills/fix/SKILL.md +62 -0
  272. package/plugin/skills/frontend-design/.skillfish.json +10 -0
  273. package/plugin/skills/frontend-design/SKILL.md +42 -0
  274. package/plugin/skills/gotchas/SKILL.md +61 -0
  275. package/plugin/skills/graph-orchestrator/SKILL.md +38 -0
  276. package/plugin/skills/history/SKILL.md +58 -0
  277. package/plugin/skills/impact/SKILL.md +59 -0
  278. package/plugin/skills/implementation-execution/SKILL.md +291 -0
  279. package/plugin/skills/index-repo/SKILL.md +55 -0
  280. package/plugin/skills/interviewing/SKILL.md +225 -0
  281. package/plugin/skills/knowledge-curation/SKILL.md +393 -0
  282. package/plugin/skills/learn/SKILL.md +69 -0
  283. package/plugin/skills/mcp-integration/.skillfish.json +10 -0
  284. package/plugin/skills/mcp-integration/SKILL.md +554 -0
  285. package/plugin/skills/mcp-integration/examples/http-server.json +20 -0
  286. package/plugin/skills/mcp-integration/examples/sse-server.json +19 -0
  287. package/plugin/skills/mcp-integration/examples/stdio-server.json +26 -0
  288. package/plugin/skills/mcp-integration/references/authentication.md +549 -0
  289. package/plugin/skills/mcp-integration/references/server-types.md +536 -0
  290. package/plugin/skills/mcp-integration/references/tool-usage.md +538 -0
  291. package/plugin/skills/nestjs/.skillfish.json +10 -0
  292. package/plugin/skills/nestjs/SKILL.md +669 -0
  293. package/plugin/skills/nestjs/drizzle-reference.md +1894 -0
  294. package/plugin/skills/nestjs/reference.md +1447 -0
  295. package/plugin/skills/nestjs/workflow-optimization.md +229 -0
  296. package/plugin/skills/parallel-dispatch/SKILL.md +308 -0
  297. package/plugin/skills/project-discovery/SKILL.md +304 -0
  298. package/plugin/skills/search/SKILL.md +56 -0
  299. package/plugin/skills/security-audit/SKILL.md +362 -0
  300. package/plugin/skills/skill-development/.skillfish.json +10 -0
  301. package/plugin/skills/skill-development/SKILL.md +637 -0
  302. package/plugin/skills/skill-development/references/skill-creator-original.md +209 -0
  303. package/plugin/skills/tdd/SKILL.md +273 -0
  304. package/plugin/skills/terminal-presentation/SKILL.md +395 -0
  305. package/plugin/skills/test-strategy/SKILL.md +365 -0
  306. package/plugin/skills/verification-protocol/SKILL.md +256 -0
  307. package/plugin/skills/visual-explainer/CHANGELOG.md +97 -0
  308. package/plugin/skills/visual-explainer/LICENSE +21 -0
  309. package/plugin/skills/visual-explainer/README.md +137 -0
  310. package/plugin/skills/visual-explainer/SKILL.md +352 -0
  311. package/plugin/skills/visual-explainer/banner.png +0 -0
  312. package/plugin/skills/visual-explainer/package.json +11 -0
  313. package/plugin/skills/visual-explainer/prompts/diff-review.md +68 -0
  314. package/plugin/skills/visual-explainer/prompts/fact-check.md +63 -0
  315. package/plugin/skills/visual-explainer/prompts/generate-slides.md +18 -0
  316. package/plugin/skills/visual-explainer/prompts/generate-web-diagram.md +10 -0
  317. package/plugin/skills/visual-explainer/prompts/plan-review.md +86 -0
  318. package/plugin/skills/visual-explainer/prompts/project-recap.md +61 -0
  319. package/plugin/skills/visual-explainer/references/css-patterns.md +1188 -0
  320. package/plugin/skills/visual-explainer/references/libraries.md +470 -0
  321. package/plugin/skills/visual-explainer/references/responsive-nav.md +212 -0
  322. package/plugin/skills/visual-explainer/references/slide-patterns.md +1403 -0
  323. package/plugin/skills/visual-explainer/templates/architecture.html +596 -0
  324. package/plugin/skills/visual-explainer/templates/data-table.html +540 -0
  325. package/plugin/skills/visual-explainer/templates/mermaid-flowchart.html +435 -0
  326. package/plugin/skills/visual-explainer/templates/slide-deck.html +913 -0
  327. package/src/cli.ts +655 -0
  328. package/src/context/.gitkeep +0 -0
  329. package/src/context/codebase.ts +393 -0
  330. package/src/context/injector.ts +797 -0
  331. package/src/context/memory.ts +187 -0
  332. package/src/context/session-index.ts +327 -0
  333. package/src/context/session.ts +152 -0
  334. package/src/index.ts +47 -0
  335. package/src/ingestion/.gitkeep +0 -0
  336. package/src/ingestion/chunker.ts +277 -0
  337. package/src/ingestion/embedder.ts +167 -0
  338. package/src/ingestion/git-analyzer.ts +545 -0
  339. package/src/ingestion/indexer.ts +984 -0
  340. package/src/ingestion/markdown-chunker.ts +337 -0
  341. package/src/ingestion/markdown-knowledge.ts +175 -0
  342. package/src/ingestion/parser.ts +475 -0
  343. package/src/ingestion/watcher.ts +182 -0
  344. package/src/knowledge/.gitkeep +0 -0
  345. package/src/knowledge/hydrator.ts +246 -0
  346. package/src/knowledge/registry.ts +463 -0
  347. package/src/knowledge/search.ts +565 -0
  348. package/src/knowledge/store.ts +262 -0
  349. package/src/learning/.gitkeep +0 -0
  350. package/src/learning/confidence.ts +193 -0
  351. package/src/learning/patterns.ts +360 -0
  352. package/src/learning/trajectory.ts +268 -0
  353. package/src/memory/.gitkeep +0 -0
  354. package/src/memory/memory-compat.ts +233 -0
  355. package/src/memory/observation-store.ts +224 -0
  356. package/src/memory/session-tracker.ts +332 -0
  357. package/src/pipeline/.gitkeep +0 -0
  358. package/src/pipeline/engine.ts +1139 -0
  359. package/src/pipeline/events.ts +253 -0
  360. package/src/pipeline/parallel.ts +394 -0
  361. package/src/pipeline/state-machine.ts +199 -0
  362. package/src/query/.gitkeep +0 -0
  363. package/src/query/graph-queries.ts +262 -0
  364. package/src/query/hybrid-search.ts +337 -0
  365. package/src/query/intent-detector.ts +131 -0
  366. package/src/query/ranking.ts +161 -0
  367. package/src/server.ts +352 -0
  368. package/src/storage/.gitkeep +0 -0
  369. package/src/storage/falkordb-store.ts +388 -0
  370. package/src/storage/file-cache.ts +141 -0
  371. package/src/storage/interfaces.ts +201 -0
  372. package/src/storage/qdrant-store.ts +557 -0
  373. package/src/storage/schema.ts +139 -0
  374. package/src/storage/sqlite.ts +168 -0
  375. package/src/tools/.gitkeep +0 -0
  376. package/src/tools/collaboration-tools.ts +208 -0
  377. package/src/tools/context-tools.ts +493 -0
  378. package/src/tools/graph-tools.ts +295 -0
  379. package/src/tools/ingestion-tools.ts +122 -0
  380. package/src/tools/learning-tools.ts +181 -0
  381. package/src/tools/memory-tools.ts +234 -0
  382. package/src/tools/phase-tools.ts +1452 -0
  383. package/src/tools/pipeline-tools.ts +188 -0
  384. package/src/tools/registration-tools.ts +450 -0
  385. package/src/util/.gitkeep +0 -0
  386. package/src/util/circuit-breaker.ts +193 -0
  387. package/src/util/config.ts +177 -0
  388. package/src/util/logger.ts +53 -0
  389. package/src/util/token-counter.ts +52 -0
  390. package/src/util/types.ts +710 -0
  391. package/tests/context/.gitkeep +0 -0
  392. package/tests/integration/.gitkeep +0 -0
  393. package/tests/knowledge/.gitkeep +0 -0
  394. package/tests/learning/.gitkeep +0 -0
  395. package/tests/pipeline/.gitkeep +0 -0
  396. package/tests/tools/.gitkeep +0 -0
  397. package/tsconfig.json +21 -0
  398. package/vitest.config.ts +10 -0
  399. package/vscode-extension/.vscodeignore +7 -0
  400. package/vscode-extension/README.md +43 -0
  401. package/vscode-extension/out/edge-collector.js +274 -0
  402. package/vscode-extension/out/edge-collector.js.map +1 -0
  403. package/vscode-extension/out/extension.js +264 -0
  404. package/vscode-extension/out/extension.js.map +1 -0
  405. package/vscode-extension/out/forge-client.js +318 -0
  406. package/vscode-extension/out/forge-client.js.map +1 -0
  407. package/vscode-extension/package-lock.json +59 -0
  408. package/vscode-extension/package.json +71 -0
  409. package/vscode-extension/src/edge-collector.ts +320 -0
  410. package/vscode-extension/src/extension.ts +269 -0
  411. package/vscode-extension/src/forge-client.ts +364 -0
  412. package/vscode-extension/tsconfig.json +19 -0
@@ -0,0 +1,437 @@
1
+ // context-tools.ts — B15
2
+ // MCP tool handlers for codebase context and knowledge search.
3
+ // Tools: search_knowledge, get_codebase_context, get_project_history, get_git_context
4
+ import { z } from 'zod';
5
+ import { detectIntent, getIntentStrategy } from '../query/intent-detector.js';
6
+ import { logger } from '../util/logger.js';
7
+ // ---------------------------------------------------------------------------
8
+ // Input schemas
9
+ // ---------------------------------------------------------------------------
10
+ export const searchKnowledgeSchema = z.object({
11
+ query: z.string().min(1, 'query is required'),
12
+ category: z.enum(['gotcha', 'pattern', 'decision', 'convention']).optional(),
13
+ stack_tags: z.array(z.string()).optional(),
14
+ repo_id: z.string().optional(),
15
+ limit: z.number().int().min(1).max(50).default(10),
16
+ include_cross_repo: z.boolean().default(true),
17
+ });
18
+ export const getCodebaseContextSchema = z.object({
19
+ query: z.string().min(1, 'query is required'),
20
+ repo_id: z.string().optional(),
21
+ detail: z.enum(['full', 'skeleton', 'paths']).default('full'),
22
+ max_results: z.number().int().min(1).max(20).default(5),
23
+ include_tests: z.boolean().default(false),
24
+ include_cross_repo: z.boolean().default(true),
25
+ });
26
+ export const getProjectHistorySchema = z.object({
27
+ project_id: z.string().min(1, 'project_id is required'),
28
+ });
29
+ export const getGitContextSchema = z.object({
30
+ mode: z.enum(['hotspots', 'commit_search', 'file_history']),
31
+ repo_id: z.string().optional(),
32
+ query: z.string().optional(),
33
+ file_path: z.string().optional(),
34
+ limit: z.number().int().min(1).max(100).default(20),
35
+ });
36
+ // ---------------------------------------------------------------------------
37
+ // Tool factory
38
+ // ---------------------------------------------------------------------------
39
+ export function createContextTools(knowledgeSearch, codebaseContext, engine, memoryBridge, vectorStore, graphStore) {
40
+ return {
41
+ 'search_knowledge': {
42
+ schema: searchKnowledgeSchema,
43
+ description: 'Semantic search over knowledge items (gotchas, patterns, decisions, conventions) across all registered repos. PREFER THIS over ad-hoc file searching when looking for known issues, established patterns, or past decisions — it searches curated knowledge, not raw code. Cross-repo results are filtered by repo sharing mode. Provide repo_id to boost same-repo results.',
44
+ handler: async (input) => {
45
+ try {
46
+ const results = await knowledgeSearch.search(input.query, {
47
+ category: input.category,
48
+ stack_tags: input.stack_tags,
49
+ repo_id: input.repo_id,
50
+ limit: input.limit,
51
+ include_cross_repo: input.include_cross_repo,
52
+ });
53
+ const reposSearched = new Set(results.map(r => r.source_repo)).size;
54
+ logger.debug('context-tools.search_knowledge: completed', {
55
+ query: input.query.slice(0, 80),
56
+ resultCount: results.length,
57
+ });
58
+ return {
59
+ results: results.map(r => ({
60
+ id: r.id,
61
+ category: r.category,
62
+ title: r.title,
63
+ content: r.content,
64
+ confidence: r.confidence,
65
+ stack_tags: r.stack_tags,
66
+ source_repo: r.source_repo,
67
+ relevance_score: r.relevance_score,
68
+ })),
69
+ search_method: 'vector',
70
+ repos_searched: reposSearched,
71
+ };
72
+ }
73
+ catch (err) {
74
+ logger.error('context-tools.search_knowledge: error', { error: String(err) });
75
+ return {
76
+ error: 'SEARCH_KNOWLEDGE_FAILED',
77
+ message: String(err),
78
+ results: [],
79
+ search_method: 'vector',
80
+ repos_searched: 0,
81
+ };
82
+ }
83
+ },
84
+ },
85
+ 'get_codebase_context': {
86
+ schema: getCodebaseContextSchema,
87
+ description: 'Hybrid search over indexed codebase (vector + graph) to retrieve relevant code context for a query. PREFER THIS over built-in Read/Grep/Glob when the repo is indexed — it combines vector similarity, graph centrality, recency, and hotspot scoring for much better results than keyword search. Cross-repo results are filtered by repo sharing mode. Provide repo_id to scope to a single repo.',
88
+ handler: async (input) => {
89
+ const startTime = Date.now();
90
+ try {
91
+ // Classify query intent and get retrieval strategy weights
92
+ const queryIntent = detectIntent(input.query);
93
+ const strategy = getIntentStrategy(queryIntent);
94
+ const result = await codebaseContext.getContext(input.query, {
95
+ repoId: input.repo_id,
96
+ detail: input.detail,
97
+ maxResults: input.max_results,
98
+ includeTests: input.include_tests ?? strategy.includeTests,
99
+ includeCrossRepo: input.include_cross_repo,
100
+ maxTokens: 8000,
101
+ vectorWeight: strategy.vectorWeight,
102
+ graphWeight: strategy.graphWeight,
103
+ });
104
+ // Populate related memories from observation store
105
+ let relatedMemories = [];
106
+ if (memoryBridge) {
107
+ try {
108
+ const memories = await memoryBridge.searchMemories(input.query, {
109
+ repoId: input.repo_id,
110
+ limit: 3,
111
+ });
112
+ relatedMemories = memories.map(m => ({
113
+ content: m.content,
114
+ relevance_score: m.relevanceScore,
115
+ }));
116
+ }
117
+ catch (memErr) {
118
+ logger.debug('context-tools.get_codebase_context: memory search failed (non-fatal)', {
119
+ error: String(memErr),
120
+ });
121
+ }
122
+ }
123
+ const executionTimeMs = Date.now() - startTime;
124
+ logger.debug('context-tools.get_codebase_context: completed', {
125
+ query: input.query.slice(0, 80),
126
+ queryIntent,
127
+ pivotCount: result.pivotFiles.length,
128
+ tokenCount: result.tokenCount,
129
+ memoryCount: relatedMemories.length,
130
+ executionTimeMs,
131
+ });
132
+ return {
133
+ pivot_files: result.pivotFiles.map(f => ({
134
+ file_path: f.filePath,
135
+ content: f.content,
136
+ relevance_score: f.relevanceScore,
137
+ match_reason: f.matchReason,
138
+ })),
139
+ supporting_skeletons: result.supportingSkeletons.map(s => ({
140
+ file_path: s.filePath,
141
+ skeleton: s.skeleton,
142
+ relevance_score: s.relevanceScore,
143
+ })),
144
+ related_memories: relatedMemories,
145
+ query_intent: queryIntent,
146
+ token_count: result.tokenCount,
147
+ execution_time_ms: executionTimeMs,
148
+ };
149
+ }
150
+ catch (err) {
151
+ logger.error('context-tools.get_codebase_context: error', { error: String(err) });
152
+ return {
153
+ error: 'GET_CODEBASE_CONTEXT_FAILED',
154
+ message: String(err),
155
+ pivot_files: [],
156
+ supporting_skeletons: [],
157
+ related_memories: [],
158
+ query_intent: 'read',
159
+ token_count: 0,
160
+ execution_time_ms: Date.now() - startTime,
161
+ };
162
+ }
163
+ },
164
+ },
165
+ 'get_project_history': {
166
+ schema: getProjectHistorySchema,
167
+ description: 'Returns the full event history and phase outputs for a project. Use this to understand what happened during a pipeline run — phase transitions, agent outputs, broadcasts, and decisions.',
168
+ handler: async (input) => {
169
+ try {
170
+ const project = engine.getProject(input.project_id);
171
+ if (!project) {
172
+ return {
173
+ error: 'PROJECT_NOT_FOUND',
174
+ project_id: input.project_id,
175
+ };
176
+ }
177
+ const { events, outputs } = engine.getHistory(input.project_id);
178
+ logger.debug('context-tools.get_project_history: completed', {
179
+ projectId: input.project_id,
180
+ eventCount: events.length,
181
+ outputCount: outputs.length,
182
+ });
183
+ return {
184
+ project_id: input.project_id,
185
+ events: events.map(ev => ({
186
+ type: ev.eventType,
187
+ from_phase: ev.fromPhase ?? undefined,
188
+ to_phase: ev.toPhase ?? undefined,
189
+ agent: ev.agent ?? undefined,
190
+ timestamp: new Date(ev.createdAt).toISOString(),
191
+ payload: ev.payload,
192
+ })),
193
+ outputs: outputs.map(o => ({
194
+ phase: o.phase,
195
+ type: o.outputType,
196
+ preview: o.content.slice(0, 500),
197
+ file_path: o.filePath ?? undefined,
198
+ timestamp: new Date(o.createdAt).toISOString(),
199
+ })),
200
+ };
201
+ }
202
+ catch (err) {
203
+ logger.error('context-tools.get_project_history: error', { error: String(err) });
204
+ return {
205
+ error: 'GET_PROJECT_HISTORY_FAILED',
206
+ project_id: input.project_id,
207
+ message: String(err),
208
+ };
209
+ }
210
+ },
211
+ },
212
+ 'get_git_context': {
213
+ schema: getGitContextSchema,
214
+ description: 'Query git history context: hotspots (frequently changed files), commit_search (semantic search over commit messages), or file_history (commits for a specific file). PREFER THIS over raw `git log` commands — it uses indexed data with semantic search over commit messages. Requires FalkorDB for hotspots/file_history and Qdrant git_commits collection for commit_search.',
215
+ handler: async (input) => {
216
+ try {
217
+ switch (input.mode) {
218
+ // -----------------------------------------------------------------
219
+ // hotspots: top N files by commit_count from FalkorDB File nodes
220
+ // -----------------------------------------------------------------
221
+ case 'hotspots': {
222
+ if (!graphStore) {
223
+ return {
224
+ mode: 'hotspots',
225
+ error: 'GRAPH_UNAVAILABLE',
226
+ message: 'FalkorDB is not connected — hotspots require the graph store',
227
+ results: [],
228
+ };
229
+ }
230
+ const graphHealthy = await graphStore.isHealthy();
231
+ if (!graphHealthy) {
232
+ return {
233
+ mode: 'hotspots',
234
+ error: 'GRAPH_UNAVAILABLE',
235
+ message: 'FalkorDB is unhealthy — hotspots unavailable',
236
+ results: [],
237
+ };
238
+ }
239
+ const repoFilter = input.repo_id
240
+ ? `{repo_id: "${escCypher(input.repo_id)}"}`
241
+ : '';
242
+ const cypher = `
243
+ MATCH (f:File ${repoFilter})
244
+ WHERE f.commit_count IS NOT NULL AND f.commit_count > 0
245
+ RETURN f.path AS path, f.commit_count AS commit_count,
246
+ f.stability_score AS stability_score,
247
+ f.change_velocity AS change_velocity
248
+ ORDER BY f.commit_count DESC
249
+ LIMIT ${input.limit}
250
+ `;
251
+ const result = await graphStore.query(cypher);
252
+ const rows = result.raw ?? [];
253
+ const hotspots = rows.map((row) => {
254
+ if (Array.isArray(row)) {
255
+ return {
256
+ file_path: row[0],
257
+ commit_count: row[1],
258
+ stability_score: row[2],
259
+ change_velocity: row[3],
260
+ };
261
+ }
262
+ const obj = row;
263
+ return {
264
+ file_path: obj.path,
265
+ commit_count: obj.commit_count,
266
+ stability_score: obj.stability_score ?? null,
267
+ change_velocity: obj.change_velocity ?? null,
268
+ };
269
+ });
270
+ logger.debug('context-tools.get_git_context: hotspots', {
271
+ repoId: input.repo_id,
272
+ resultCount: hotspots.length,
273
+ });
274
+ return {
275
+ mode: 'hotspots',
276
+ results: hotspots,
277
+ total: hotspots.length,
278
+ };
279
+ }
280
+ // -----------------------------------------------------------------
281
+ // commit_search: semantic search over git_commits in Qdrant
282
+ // -----------------------------------------------------------------
283
+ case 'commit_search': {
284
+ if (!input.query) {
285
+ return {
286
+ mode: 'commit_search',
287
+ error: 'MISSING_QUERY',
288
+ message: 'commit_search mode requires a query string',
289
+ results: [],
290
+ };
291
+ }
292
+ // Guard: searchGitCommits is a QdrantVectorStore-specific method
293
+ // that only exists after git_commits collection is created (Phase 3)
294
+ if (!vectorStore ||
295
+ !('searchGitCommits' in vectorStore)) {
296
+ return {
297
+ mode: 'commit_search',
298
+ error: 'GIT_COMMITS_UNAVAILABLE',
299
+ message: 'Git commits collection is not indexed — run index_repo with git enrichment first',
300
+ results: [],
301
+ };
302
+ }
303
+ const healthy = await vectorStore.isHealthy();
304
+ if (!healthy) {
305
+ return {
306
+ mode: 'commit_search',
307
+ error: 'VECTOR_UNAVAILABLE',
308
+ message: 'Qdrant is unhealthy — commit search unavailable',
309
+ results: [],
310
+ };
311
+ }
312
+ const qdrantStore = vectorStore;
313
+ const commits = await qdrantStore.searchGitCommits(input.query, {
314
+ repoId: input.repo_id,
315
+ limit: input.limit,
316
+ });
317
+ logger.debug('context-tools.get_git_context: commit_search', {
318
+ query: input.query.slice(0, 80),
319
+ resultCount: Array.isArray(commits) ? commits.length : 0,
320
+ });
321
+ return {
322
+ mode: 'commit_search',
323
+ results: Array.isArray(commits) ? commits : [],
324
+ total: Array.isArray(commits) ? commits.length : 0,
325
+ };
326
+ }
327
+ // -----------------------------------------------------------------
328
+ // file_history: recent commits for a specific file from FalkorDB
329
+ // -----------------------------------------------------------------
330
+ case 'file_history': {
331
+ if (!input.file_path) {
332
+ return {
333
+ mode: 'file_history',
334
+ error: 'MISSING_FILE_PATH',
335
+ message: 'file_history mode requires a file_path',
336
+ results: [],
337
+ };
338
+ }
339
+ if (!graphStore) {
340
+ return {
341
+ mode: 'file_history',
342
+ error: 'GRAPH_UNAVAILABLE',
343
+ message: 'FalkorDB is not connected — file history requires the graph store',
344
+ results: [],
345
+ };
346
+ }
347
+ const graphHealthy = await graphStore.isHealthy();
348
+ if (!graphHealthy) {
349
+ return {
350
+ mode: 'file_history',
351
+ error: 'GRAPH_UNAVAILABLE',
352
+ message: 'FalkorDB is unhealthy — file history unavailable',
353
+ results: [],
354
+ };
355
+ }
356
+ const repoMatch = input.repo_id
357
+ ? `, repo_id: "${escCypher(input.repo_id)}"`
358
+ : '';
359
+ const cypher = `
360
+ MATCH (f:File {path: "${escCypher(input.file_path)}"${repoMatch}})
361
+ RETURN f.path AS path, f.commit_count AS commit_count,
362
+ f.stability_score AS stability_score,
363
+ f.change_velocity AS change_velocity,
364
+ f.last_commit_hash AS last_commit_hash,
365
+ f.last_commit_ts AS last_commit_ts
366
+ `;
367
+ const result = await graphStore.query(cypher);
368
+ const rows = result.raw ?? [];
369
+ const fileStats = rows.map((row) => {
370
+ if (Array.isArray(row)) {
371
+ return {
372
+ file_path: row[0],
373
+ commit_count: row[1],
374
+ stability_score: row[2],
375
+ change_velocity: row[3],
376
+ last_commit_hash: row[4],
377
+ last_commit_ts: row[5],
378
+ };
379
+ }
380
+ const obj = row;
381
+ return {
382
+ file_path: obj.path,
383
+ commit_count: obj.commit_count ?? null,
384
+ stability_score: obj.stability_score ?? null,
385
+ change_velocity: obj.change_velocity ?? null,
386
+ last_commit_hash: obj.last_commit_hash ?? null,
387
+ last_commit_ts: obj.last_commit_ts ?? null,
388
+ };
389
+ });
390
+ logger.debug('context-tools.get_git_context: file_history', {
391
+ filePath: input.file_path,
392
+ found: fileStats.length > 0,
393
+ });
394
+ return {
395
+ mode: 'file_history',
396
+ results: fileStats,
397
+ total: fileStats.length,
398
+ };
399
+ }
400
+ default:
401
+ return {
402
+ error: 'INVALID_MODE',
403
+ message: `Unknown mode: ${String(input.mode)}`,
404
+ };
405
+ }
406
+ }
407
+ catch (err) {
408
+ logger.error('context-tools.get_git_context: error', {
409
+ mode: input.mode,
410
+ error: String(err),
411
+ });
412
+ return {
413
+ mode: input.mode,
414
+ error: 'GET_GIT_CONTEXT_FAILED',
415
+ message: String(err),
416
+ results: [],
417
+ };
418
+ }
419
+ },
420
+ },
421
+ };
422
+ }
423
+ // ---------------------------------------------------------------------------
424
+ // Utility
425
+ // ---------------------------------------------------------------------------
426
+ /**
427
+ * Escape a string for safe embedding in Cypher queries.
428
+ * FalkorDB uses double-quoted strings.
429
+ */
430
+ function escCypher(s) {
431
+ return s
432
+ .replace(/\\/g, '\\\\')
433
+ .replace(/"/g, '\\"')
434
+ .replace(/\n/g, '\\n')
435
+ .replace(/\r/g, '');
436
+ }
437
+ //# sourceMappingURL=context-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context-tools.js","sourceRoot":"","sources":["../../src/tools/context-tools.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,129 @@
1
+ import { z } from 'zod';
2
+ import type { GraphStore } from '../storage/interfaces.js';
3
+ export declare const getImpactGraphSchema: z.ZodObject<{
4
+ symbol: z.ZodString;
5
+ repo_id: z.ZodString;
6
+ direction: z.ZodDefault<z.ZodEnum<["inbound", "outbound", "both"]>>;
7
+ depth: z.ZodDefault<z.ZodNumber>;
8
+ }, "strip", z.ZodTypeAny, {
9
+ symbol: string;
10
+ repo_id: string;
11
+ direction: "inbound" | "outbound" | "both";
12
+ depth: number;
13
+ }, {
14
+ symbol: string;
15
+ repo_id: string;
16
+ direction?: "inbound" | "outbound" | "both" | undefined;
17
+ depth?: number | undefined;
18
+ }>;
19
+ export declare const searchLogicFlowSchema: z.ZodObject<{
20
+ from_symbol: z.ZodString;
21
+ to_symbol: z.ZodString;
22
+ repo_id: z.ZodString;
23
+ max_depth: z.ZodDefault<z.ZodNumber>;
24
+ }, "strip", z.ZodTypeAny, {
25
+ repo_id: string;
26
+ from_symbol: string;
27
+ to_symbol: string;
28
+ max_depth: number;
29
+ }, {
30
+ repo_id: string;
31
+ from_symbol: string;
32
+ to_symbol: string;
33
+ max_depth?: number | undefined;
34
+ }>;
35
+ export declare function createGraphTools(graphStore: GraphStore | null): {
36
+ get_impact_graph: {
37
+ schema: z.ZodObject<{
38
+ symbol: z.ZodString;
39
+ repo_id: z.ZodString;
40
+ direction: z.ZodDefault<z.ZodEnum<["inbound", "outbound", "both"]>>;
41
+ depth: z.ZodDefault<z.ZodNumber>;
42
+ }, "strip", z.ZodTypeAny, {
43
+ symbol: string;
44
+ repo_id: string;
45
+ direction: "inbound" | "outbound" | "both";
46
+ depth: number;
47
+ }, {
48
+ symbol: string;
49
+ repo_id: string;
50
+ direction?: "inbound" | "outbound" | "both" | undefined;
51
+ depth?: number | undefined;
52
+ }>;
53
+ description: string;
54
+ handler: (input: z.infer<typeof getImpactGraphSchema>) => Promise<{
55
+ error: string;
56
+ message: string;
57
+ symbol?: undefined;
58
+ direction?: undefined;
59
+ nodes?: undefined;
60
+ edges?: undefined;
61
+ total_nodes?: undefined;
62
+ total_edges?: undefined;
63
+ } | {
64
+ symbol: string;
65
+ direction: "inbound" | "outbound" | "both";
66
+ nodes: {
67
+ name: string;
68
+ label: string;
69
+ file_path?: string;
70
+ }[];
71
+ edges: {
72
+ from: string;
73
+ to: string;
74
+ type: string;
75
+ depth: number;
76
+ }[];
77
+ total_nodes: number;
78
+ total_edges: number;
79
+ error?: undefined;
80
+ message?: undefined;
81
+ }>;
82
+ };
83
+ search_logic_flow: {
84
+ schema: z.ZodObject<{
85
+ from_symbol: z.ZodString;
86
+ to_symbol: z.ZodString;
87
+ repo_id: z.ZodString;
88
+ max_depth: z.ZodDefault<z.ZodNumber>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ repo_id: string;
91
+ from_symbol: string;
92
+ to_symbol: string;
93
+ max_depth: number;
94
+ }, {
95
+ repo_id: string;
96
+ from_symbol: string;
97
+ to_symbol: string;
98
+ max_depth?: number | undefined;
99
+ }>;
100
+ description: string;
101
+ handler: (input: z.infer<typeof searchLogicFlowSchema>) => Promise<{
102
+ error: string;
103
+ message: string;
104
+ from_symbol?: undefined;
105
+ to_symbol?: undefined;
106
+ paths?: undefined;
107
+ connected?: undefined;
108
+ } | {
109
+ from_symbol: string;
110
+ to_symbol: string;
111
+ paths: {
112
+ nodes: string[];
113
+ edges: string[];
114
+ length: number;
115
+ }[];
116
+ connected: boolean;
117
+ error?: undefined;
118
+ message?: undefined;
119
+ } | {
120
+ error: string;
121
+ message: string;
122
+ from_symbol: string;
123
+ to_symbol: string;
124
+ paths: never[];
125
+ connected: boolean;
126
+ }>;
127
+ };
128
+ };
129
+ //# sourceMappingURL=graph-tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"graph-tools.d.ts","sourceRoot":"","sources":["../../src/tools/graph-tools.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAY3D,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAK/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAMH,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,UAAU,GAAG,IAAI;;;;;;;;;;;;;;;;;;;yBAKjC,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC;;;;;;;;;;;;;sBAsPhD,MAAM;uBAAS,MAAM;4BAAc,MAAM;;;sBApOrB,MAAM;oBAAM,MAAM;sBAAQ,MAAM;uBAAS,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;yBAyDvD,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC;;;;;;;;;;;uBA6GhD,MAAM,EAAE;uBAAS,MAAM,EAAE;wBAAU,MAAM;;;;;;;;;;;;;;EA5D1D"}