@mycodemap/mycodemap 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 (329) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/LICENSE +21 -0
  3. package/README.md +559 -0
  4. package/dist/ai/claude.d.ts +38 -0
  5. package/dist/ai/claude.d.ts.map +1 -0
  6. package/dist/ai/claude.js +169 -0
  7. package/dist/ai/claude.js.map +1 -0
  8. package/dist/ai/codex.d.ts +38 -0
  9. package/dist/ai/codex.d.ts.map +1 -0
  10. package/dist/ai/codex.js +169 -0
  11. package/dist/ai/codex.js.map +1 -0
  12. package/dist/ai/factory.d.ts +48 -0
  13. package/dist/ai/factory.d.ts.map +1 -0
  14. package/dist/ai/factory.js +95 -0
  15. package/dist/ai/factory.js.map +1 -0
  16. package/dist/ai/index.d.ts +12 -0
  17. package/dist/ai/index.d.ts.map +1 -0
  18. package/dist/ai/index.js +29 -0
  19. package/dist/ai/index.js.map +1 -0
  20. package/dist/ai/provider.d.ts +70 -0
  21. package/dist/ai/provider.d.ts.map +1 -0
  22. package/dist/ai/provider.js +31 -0
  23. package/dist/ai/provider.js.map +1 -0
  24. package/dist/ai/subagent-caller.d.ts +90 -0
  25. package/dist/ai/subagent-caller.d.ts.map +1 -0
  26. package/dist/ai/subagent-caller.js +280 -0
  27. package/dist/ai/subagent-caller.js.map +1 -0
  28. package/dist/ai/types.d.ts +70 -0
  29. package/dist/ai/types.d.ts.map +1 -0
  30. package/dist/ai/types.js +5 -0
  31. package/dist/ai/types.js.map +1 -0
  32. package/dist/cache/file-hash-cache.d.ts +76 -0
  33. package/dist/cache/file-hash-cache.d.ts.map +1 -0
  34. package/dist/cache/file-hash-cache.js +159 -0
  35. package/dist/cache/file-hash-cache.js.map +1 -0
  36. package/dist/cache/index.d.ts +151 -0
  37. package/dist/cache/index.d.ts.map +1 -0
  38. package/dist/cache/index.js +303 -0
  39. package/dist/cache/index.js.map +1 -0
  40. package/dist/cache/lru-cache.d.ts +93 -0
  41. package/dist/cache/lru-cache.d.ts.map +1 -0
  42. package/dist/cache/lru-cache.js +194 -0
  43. package/dist/cache/lru-cache.js.map +1 -0
  44. package/dist/cache/parse-cache.d.ts +68 -0
  45. package/dist/cache/parse-cache.d.ts.map +1 -0
  46. package/dist/cache/parse-cache.js +173 -0
  47. package/dist/cache/parse-cache.js.map +1 -0
  48. package/dist/cli/commands/analyze.d.ts +96 -0
  49. package/dist/cli/commands/analyze.d.ts.map +1 -0
  50. package/dist/cli/commands/analyze.js +567 -0
  51. package/dist/cli/commands/analyze.js.map +1 -0
  52. package/dist/cli/commands/ci.d.ts +25 -0
  53. package/dist/cli/commands/ci.d.ts.map +1 -0
  54. package/dist/cli/commands/ci.js +481 -0
  55. package/dist/cli/commands/ci.js.map +1 -0
  56. package/dist/cli/commands/complexity.d.ts +70 -0
  57. package/dist/cli/commands/complexity.d.ts.map +1 -0
  58. package/dist/cli/commands/complexity.js +479 -0
  59. package/dist/cli/commands/complexity.js.map +1 -0
  60. package/dist/cli/commands/cycles.d.ts +10 -0
  61. package/dist/cli/commands/cycles.d.ts.map +1 -0
  62. package/dist/cli/commands/cycles.js +202 -0
  63. package/dist/cli/commands/cycles.js.map +1 -0
  64. package/dist/cli/commands/deps.d.ts +61 -0
  65. package/dist/cli/commands/deps.d.ts.map +1 -0
  66. package/dist/cli/commands/deps.js +340 -0
  67. package/dist/cli/commands/deps.js.map +1 -0
  68. package/dist/cli/commands/generate.d.ts +8 -0
  69. package/dist/cli/commands/generate.d.ts.map +1 -0
  70. package/dist/cli/commands/generate.js +61 -0
  71. package/dist/cli/commands/generate.js.map +1 -0
  72. package/dist/cli/commands/impact.d.ts +55 -0
  73. package/dist/cli/commands/impact.d.ts.map +1 -0
  74. package/dist/cli/commands/impact.js +455 -0
  75. package/dist/cli/commands/impact.js.map +1 -0
  76. package/dist/cli/commands/init.d.ts +4 -0
  77. package/dist/cli/commands/init.d.ts.map +1 -0
  78. package/dist/cli/commands/init.js +50 -0
  79. package/dist/cli/commands/init.js.map +1 -0
  80. package/dist/cli/commands/query.d.ts +22 -0
  81. package/dist/cli/commands/query.d.ts.map +1 -0
  82. package/dist/cli/commands/query.js +718 -0
  83. package/dist/cli/commands/query.js.map +1 -0
  84. package/dist/cli/commands/watch-foreground.d.ts +9 -0
  85. package/dist/cli/commands/watch-foreground.d.ts.map +1 -0
  86. package/dist/cli/commands/watch-foreground.js +67 -0
  87. package/dist/cli/commands/watch-foreground.js.map +1 -0
  88. package/dist/cli/commands/watch.d.ts +12 -0
  89. package/dist/cli/commands/watch.d.ts.map +1 -0
  90. package/dist/cli/commands/watch.js +114 -0
  91. package/dist/cli/commands/watch.js.map +1 -0
  92. package/dist/cli/commands/workflow.d.ts +25 -0
  93. package/dist/cli/commands/workflow.d.ts.map +1 -0
  94. package/dist/cli/commands/workflow.js +488 -0
  95. package/dist/cli/commands/workflow.js.map +1 -0
  96. package/dist/cli/index.d.ts +3 -0
  97. package/dist/cli/index.d.ts.map +1 -0
  98. package/dist/cli/index.js +115 -0
  99. package/dist/cli/index.js.map +1 -0
  100. package/dist/cli/paths.d.ts +90 -0
  101. package/dist/cli/paths.d.ts.map +1 -0
  102. package/dist/cli/paths.js +136 -0
  103. package/dist/cli/paths.js.map +1 -0
  104. package/dist/cli/runtime-logger.d.ts +13 -0
  105. package/dist/cli/runtime-logger.d.ts.map +1 -0
  106. package/dist/cli/runtime-logger.js +213 -0
  107. package/dist/cli/runtime-logger.js.map +1 -0
  108. package/dist/core/analyzer.d.ts +3 -0
  109. package/dist/core/analyzer.d.ts.map +1 -0
  110. package/dist/core/analyzer.js +359 -0
  111. package/dist/core/analyzer.js.map +1 -0
  112. package/dist/core/ast-complexity-analyzer.d.ts +40 -0
  113. package/dist/core/ast-complexity-analyzer.d.ts.map +1 -0
  114. package/dist/core/ast-complexity-analyzer.js +279 -0
  115. package/dist/core/ast-complexity-analyzer.js.map +1 -0
  116. package/dist/core/global-index.d.ts +69 -0
  117. package/dist/core/global-index.d.ts.map +1 -0
  118. package/dist/core/global-index.js +388 -0
  119. package/dist/core/global-index.js.map +1 -0
  120. package/dist/generator/ai-overview.d.ts +51 -0
  121. package/dist/generator/ai-overview.d.ts.map +1 -0
  122. package/dist/generator/ai-overview.js +160 -0
  123. package/dist/generator/ai-overview.js.map +1 -0
  124. package/dist/generator/context.d.ts +5 -0
  125. package/dist/generator/context.d.ts.map +1 -0
  126. package/dist/generator/context.js +514 -0
  127. package/dist/generator/context.js.map +1 -0
  128. package/dist/generator/file-describer.d.ts +93 -0
  129. package/dist/generator/file-describer.d.ts.map +1 -0
  130. package/dist/generator/file-describer.js +375 -0
  131. package/dist/generator/file-describer.js.map +1 -0
  132. package/dist/generator/index.d.ts +8 -0
  133. package/dist/generator/index.d.ts.map +1 -0
  134. package/dist/generator/index.js +259 -0
  135. package/dist/generator/index.js.map +1 -0
  136. package/dist/index.d.ts +5 -0
  137. package/dist/index.d.ts.map +1 -0
  138. package/dist/index.js +6 -0
  139. package/dist/index.js.map +1 -0
  140. package/dist/orchestrator/adapters/ast-grep-adapter.d.ts +75 -0
  141. package/dist/orchestrator/adapters/ast-grep-adapter.d.ts.map +1 -0
  142. package/dist/orchestrator/adapters/ast-grep-adapter.js +242 -0
  143. package/dist/orchestrator/adapters/ast-grep-adapter.js.map +1 -0
  144. package/dist/orchestrator/adapters/base-adapter.d.ts +24 -0
  145. package/dist/orchestrator/adapters/base-adapter.d.ts.map +1 -0
  146. package/dist/orchestrator/adapters/base-adapter.js +2 -0
  147. package/dist/orchestrator/adapters/base-adapter.js.map +1 -0
  148. package/dist/orchestrator/adapters/codemap-adapter.d.ts +56 -0
  149. package/dist/orchestrator/adapters/codemap-adapter.d.ts.map +1 -0
  150. package/dist/orchestrator/adapters/codemap-adapter.js +163 -0
  151. package/dist/orchestrator/adapters/codemap-adapter.js.map +1 -0
  152. package/dist/orchestrator/adapters/index.d.ts +10 -0
  153. package/dist/orchestrator/adapters/index.d.ts.map +1 -0
  154. package/dist/orchestrator/adapters/index.js +3 -0
  155. package/dist/orchestrator/adapters/index.js.map +1 -0
  156. package/dist/orchestrator/ai-feed-generator.d.ts +210 -0
  157. package/dist/orchestrator/ai-feed-generator.d.ts.map +1 -0
  158. package/dist/orchestrator/ai-feed-generator.js +377 -0
  159. package/dist/orchestrator/ai-feed-generator.js.map +1 -0
  160. package/dist/orchestrator/commit-validator.d.ts +30 -0
  161. package/dist/orchestrator/commit-validator.d.ts.map +1 -0
  162. package/dist/orchestrator/commit-validator.js +87 -0
  163. package/dist/orchestrator/commit-validator.js.map +1 -0
  164. package/dist/orchestrator/confidence.d.ts +25 -0
  165. package/dist/orchestrator/confidence.d.ts.map +1 -0
  166. package/dist/orchestrator/confidence.js +138 -0
  167. package/dist/orchestrator/confidence.js.map +1 -0
  168. package/dist/orchestrator/file-header-scanner.d.ts +48 -0
  169. package/dist/orchestrator/file-header-scanner.d.ts.map +1 -0
  170. package/dist/orchestrator/file-header-scanner.js +158 -0
  171. package/dist/orchestrator/file-header-scanner.js.map +1 -0
  172. package/dist/orchestrator/git-analyzer.d.ts +192 -0
  173. package/dist/orchestrator/git-analyzer.d.ts.map +1 -0
  174. package/dist/orchestrator/git-analyzer.js +539 -0
  175. package/dist/orchestrator/git-analyzer.js.map +1 -0
  176. package/dist/orchestrator/index.d.ts +20 -0
  177. package/dist/orchestrator/index.d.ts.map +1 -0
  178. package/dist/orchestrator/index.js +16 -0
  179. package/dist/orchestrator/index.js.map +1 -0
  180. package/dist/orchestrator/intent-router.d.ts +41 -0
  181. package/dist/orchestrator/intent-router.d.ts.map +1 -0
  182. package/dist/orchestrator/intent-router.js +98 -0
  183. package/dist/orchestrator/intent-router.js.map +1 -0
  184. package/dist/orchestrator/result-fusion.d.ts +114 -0
  185. package/dist/orchestrator/result-fusion.d.ts.map +1 -0
  186. package/dist/orchestrator/result-fusion.js +332 -0
  187. package/dist/orchestrator/result-fusion.js.map +1 -0
  188. package/dist/orchestrator/test-linker.d.ts +166 -0
  189. package/dist/orchestrator/test-linker.d.ts.map +1 -0
  190. package/dist/orchestrator/test-linker.js +570 -0
  191. package/dist/orchestrator/test-linker.js.map +1 -0
  192. package/dist/orchestrator/tool-orchestrator.d.ts +108 -0
  193. package/dist/orchestrator/tool-orchestrator.d.ts.map +1 -0
  194. package/dist/orchestrator/tool-orchestrator.js +247 -0
  195. package/dist/orchestrator/tool-orchestrator.js.map +1 -0
  196. package/dist/orchestrator/types.d.ts +162 -0
  197. package/dist/orchestrator/types.d.ts.map +1 -0
  198. package/dist/orchestrator/types.js +39 -0
  199. package/dist/orchestrator/types.js.map +1 -0
  200. package/dist/orchestrator/workflow/ci-executor.d.ts +157 -0
  201. package/dist/orchestrator/workflow/ci-executor.d.ts.map +1 -0
  202. package/dist/orchestrator/workflow/ci-executor.js +423 -0
  203. package/dist/orchestrator/workflow/ci-executor.js.map +1 -0
  204. package/dist/orchestrator/workflow/config.d.ts +97 -0
  205. package/dist/orchestrator/workflow/config.d.ts.map +1 -0
  206. package/dist/orchestrator/workflow/config.js +115 -0
  207. package/dist/orchestrator/workflow/config.js.map +1 -0
  208. package/dist/orchestrator/workflow/git-analyzer.d.ts +173 -0
  209. package/dist/orchestrator/workflow/git-analyzer.d.ts.map +1 -0
  210. package/dist/orchestrator/workflow/git-analyzer.js +473 -0
  211. package/dist/orchestrator/workflow/git-analyzer.js.map +1 -0
  212. package/dist/orchestrator/workflow/index.d.ts +21 -0
  213. package/dist/orchestrator/workflow/index.d.ts.map +1 -0
  214. package/dist/orchestrator/workflow/index.js +21 -0
  215. package/dist/orchestrator/workflow/index.js.map +1 -0
  216. package/dist/orchestrator/workflow/phase-checkpoint.d.ts +38 -0
  217. package/dist/orchestrator/workflow/phase-checkpoint.d.ts.map +1 -0
  218. package/dist/orchestrator/workflow/phase-checkpoint.js +75 -0
  219. package/dist/orchestrator/workflow/phase-checkpoint.js.map +1 -0
  220. package/dist/orchestrator/workflow/phase-inheritance.d.ts +128 -0
  221. package/dist/orchestrator/workflow/phase-inheritance.d.ts.map +1 -0
  222. package/dist/orchestrator/workflow/phase-inheritance.js +266 -0
  223. package/dist/orchestrator/workflow/phase-inheritance.js.map +1 -0
  224. package/dist/orchestrator/workflow/result-fusion.d.ts +117 -0
  225. package/dist/orchestrator/workflow/result-fusion.d.ts.map +1 -0
  226. package/dist/orchestrator/workflow/result-fusion.js +246 -0
  227. package/dist/orchestrator/workflow/result-fusion.js.map +1 -0
  228. package/dist/orchestrator/workflow/templates.d.ts +116 -0
  229. package/dist/orchestrator/workflow/templates.d.ts.map +1 -0
  230. package/dist/orchestrator/workflow/templates.js +546 -0
  231. package/dist/orchestrator/workflow/templates.js.map +1 -0
  232. package/dist/orchestrator/workflow/test-linker.d.ts +152 -0
  233. package/dist/orchestrator/workflow/test-linker.d.ts.map +1 -0
  234. package/dist/orchestrator/workflow/test-linker.js +342 -0
  235. package/dist/orchestrator/workflow/test-linker.js.map +1 -0
  236. package/dist/orchestrator/workflow/types.d.ts +202 -0
  237. package/dist/orchestrator/workflow/types.d.ts.map +1 -0
  238. package/dist/orchestrator/workflow/types.js +4 -0
  239. package/dist/orchestrator/workflow/types.js.map +1 -0
  240. package/dist/orchestrator/workflow/visualizer.d.ts +56 -0
  241. package/dist/orchestrator/workflow/visualizer.d.ts.map +1 -0
  242. package/dist/orchestrator/workflow/visualizer.js +300 -0
  243. package/dist/orchestrator/workflow/visualizer.js.map +1 -0
  244. package/dist/orchestrator/workflow/workflow-context.d.ts +50 -0
  245. package/dist/orchestrator/workflow/workflow-context.d.ts.map +1 -0
  246. package/dist/orchestrator/workflow/workflow-context.js +105 -0
  247. package/dist/orchestrator/workflow/workflow-context.js.map +1 -0
  248. package/dist/orchestrator/workflow/workflow-orchestrator.d.ts +126 -0
  249. package/dist/orchestrator/workflow/workflow-orchestrator.d.ts.map +1 -0
  250. package/dist/orchestrator/workflow/workflow-orchestrator.js +489 -0
  251. package/dist/orchestrator/workflow/workflow-orchestrator.js.map +1 -0
  252. package/dist/orchestrator/workflow/workflow-persistence.d.ts +38 -0
  253. package/dist/orchestrator/workflow/workflow-persistence.d.ts.map +1 -0
  254. package/dist/orchestrator/workflow/workflow-persistence.js +166 -0
  255. package/dist/orchestrator/workflow/workflow-persistence.js.map +1 -0
  256. package/dist/parser/implementations/fast-parser.d.ts +65 -0
  257. package/dist/parser/implementations/fast-parser.d.ts.map +1 -0
  258. package/dist/parser/implementations/fast-parser.js +299 -0
  259. package/dist/parser/implementations/fast-parser.js.map +1 -0
  260. package/dist/parser/implementations/smart-parser.d.ts +220 -0
  261. package/dist/parser/implementations/smart-parser.d.ts.map +1 -0
  262. package/dist/parser/implementations/smart-parser.js +1536 -0
  263. package/dist/parser/implementations/smart-parser.js.map +1 -0
  264. package/dist/parser/implementations/tree-sitter-parser.d.ts +57 -0
  265. package/dist/parser/implementations/tree-sitter-parser.d.ts.map +1 -0
  266. package/dist/parser/implementations/tree-sitter-parser.js +375 -0
  267. package/dist/parser/implementations/tree-sitter-parser.js.map +1 -0
  268. package/dist/parser/index.d.ts +19 -0
  269. package/dist/parser/index.d.ts.map +1 -0
  270. package/dist/parser/index.js +449 -0
  271. package/dist/parser/index.js.map +1 -0
  272. package/dist/parser/interfaces/IParser.d.ts +218 -0
  273. package/dist/parser/interfaces/IParser.d.ts.map +1 -0
  274. package/dist/parser/interfaces/IParser.js +22 -0
  275. package/dist/parser/interfaces/IParser.js.map +1 -0
  276. package/dist/plugins/built-in/call-graph.d.ts +38 -0
  277. package/dist/plugins/built-in/call-graph.d.ts.map +1 -0
  278. package/dist/plugins/built-in/call-graph.js +135 -0
  279. package/dist/plugins/built-in/call-graph.js.map +1 -0
  280. package/dist/plugins/built-in/complexity-analyzer.d.ts +45 -0
  281. package/dist/plugins/built-in/complexity-analyzer.d.ts.map +1 -0
  282. package/dist/plugins/built-in/complexity-analyzer.js +155 -0
  283. package/dist/plugins/built-in/complexity-analyzer.js.map +1 -0
  284. package/dist/plugins/index.d.ts +34 -0
  285. package/dist/plugins/index.d.ts.map +1 -0
  286. package/dist/plugins/index.js +103 -0
  287. package/dist/plugins/index.js.map +1 -0
  288. package/dist/plugins/plugin-loader.d.ts +22 -0
  289. package/dist/plugins/plugin-loader.d.ts.map +1 -0
  290. package/dist/plugins/plugin-loader.js +200 -0
  291. package/dist/plugins/plugin-loader.js.map +1 -0
  292. package/dist/plugins/plugin-registry.d.ts +20 -0
  293. package/dist/plugins/plugin-registry.d.ts.map +1 -0
  294. package/dist/plugins/plugin-registry.js +143 -0
  295. package/dist/plugins/plugin-registry.js.map +1 -0
  296. package/dist/plugins/types.d.ts +72 -0
  297. package/dist/plugins/types.d.ts.map +1 -0
  298. package/dist/plugins/types.js +5 -0
  299. package/dist/plugins/types.js.map +1 -0
  300. package/dist/types/index.d.ts +373 -0
  301. package/dist/types/index.d.ts.map +1 -0
  302. package/dist/types/index.js +7 -0
  303. package/dist/types/index.js.map +1 -0
  304. package/dist/watcher/daemon.d.ts +64 -0
  305. package/dist/watcher/daemon.d.ts.map +1 -0
  306. package/dist/watcher/daemon.js +189 -0
  307. package/dist/watcher/daemon.js.map +1 -0
  308. package/dist/watcher/file-watcher.d.ts +70 -0
  309. package/dist/watcher/file-watcher.d.ts.map +1 -0
  310. package/dist/watcher/file-watcher.js +127 -0
  311. package/dist/watcher/file-watcher.js.map +1 -0
  312. package/dist/watcher/index.d.ts +5 -0
  313. package/dist/watcher/index.d.ts.map +1 -0
  314. package/dist/watcher/index.js +6 -0
  315. package/dist/watcher/index.js.map +1 -0
  316. package/dist/watcher/watch-worker.d.ts +2 -0
  317. package/dist/watcher/watch-worker.d.ts.map +1 -0
  318. package/dist/watcher/watch-worker.js +57 -0
  319. package/dist/watcher/watch-worker.js.map +1 -0
  320. package/dist/worker/index.d.ts +76 -0
  321. package/dist/worker/index.d.ts.map +1 -0
  322. package/dist/worker/index.js +155 -0
  323. package/dist/worker/index.js.map +1 -0
  324. package/dist/worker/parse-worker.d.ts +2 -0
  325. package/dist/worker/parse-worker.d.ts.map +1 -0
  326. package/dist/worker/parse-worker.js +202 -0
  327. package/dist/worker/parse-worker.js.map +1 -0
  328. package/mycodemap.config.schema.json +42 -0
  329. package/package.json +69 -0
@@ -0,0 +1,479 @@
1
+ // [META] since:2026-03-03 | owner:orchestrator-team | stable:true
2
+ // [WHY] 提供代码复杂度分析命令,支持文件级和函数级复杂度详情
3
+ import chalk from 'chalk';
4
+ import fs from 'fs';
5
+ import path from 'path';
6
+ import { resolveDataPath } from '../paths.js';
7
+ import { analyzeFileComplexity } from '../../core/ast-complexity-analyzer.js';
8
+ // ===== 纯逻辑函数(从原有函数提取) =====
9
+ /**
10
+ * 加载代码地图数据
11
+ */
12
+ function loadCodeMap(rootDir) {
13
+ const codemapPath = resolveDataPath(rootDir);
14
+ if (!fs.existsSync(codemapPath)) {
15
+ return null;
16
+ }
17
+ try {
18
+ const data = fs.readFileSync(codemapPath, 'utf-8');
19
+ return JSON.parse(data);
20
+ }
21
+ catch {
22
+ return null;
23
+ }
24
+ }
25
+ /**
26
+ * 计算可维护性指数
27
+ *
28
+ * 基于微软的可维护性指数公式,进行适应性调整:
29
+ * MI = MAX(0, (171 - 5.2 * ln(Halstead Volume) - 0.23 * Cyclomatic - 16.2 * ln(LOC)) * 100 / 171)
30
+ *
31
+ * 由于我们没有 Halstead Volume,使用简化但合理的公式:
32
+ * - 基于圈复杂度和代码行数计算
33
+ * - 结果范围 0-100
34
+ * - 考虑了文件大小和复杂度的平衡
35
+ */
36
+ function calculateMaintainabilityIndex(loc, cyclomatic, commentRatio) {
37
+ // 规范化输入
38
+ const normalizedLOC = Math.max(1, loc);
39
+ const normalizedCC = Math.max(1, cyclomatic);
40
+ // 基础分 100
41
+ let mi = 100;
42
+ // 圈复杂度惩罚(每点复杂度减少2分)
43
+ mi -= (normalizedCC - 1) * 2;
44
+ // 代码行数惩罚(对数缩放,避免大文件过度惩罚)
45
+ // 100行: -5分, 500行: -15分, 1000行: -20分
46
+ mi -= Math.log(normalizedLOC / 10 + 1) * 5;
47
+ // 注释奖励(最多+10分)
48
+ mi += commentRatio * 15;
49
+ // 确保结果在 0-100 范围内
50
+ return Math.max(0, Math.min(100, Math.round(mi)));
51
+ }
52
+ /**
53
+ * 获取模块复杂度信息
54
+ */
55
+ function getModuleComplexity(module) {
56
+ // 如果模块已经有复杂度数据(来自解析器)
57
+ if (module.complexity && module.complexity.cyclomatic > 0) {
58
+ const commentRatio = module.stats.commentLines / Math.max(1, module.stats.lines);
59
+ const maintainability = calculateMaintainabilityIndex(module.stats.codeLines, module.complexity.cyclomatic, commentRatio);
60
+ return {
61
+ cyclomatic: module.complexity.cyclomatic,
62
+ cognitive: module.complexity.cognitive || Math.round(module.complexity.cyclomatic * 1.5),
63
+ maintainability,
64
+ functions: module.complexity.details?.functions.length ||
65
+ module.symbols.filter(s => s.kind === 'function' || s.kind === 'method').length,
66
+ classes: module.symbols.filter(s => s.kind === 'class').length,
67
+ lines: module.stats.codeLines,
68
+ functionDetails: module.complexity.details?.functions.map(f => ({
69
+ name: f.name,
70
+ kind: 'function',
71
+ line: 1,
72
+ column: 1,
73
+ cyclomatic: f.cyclomatic,
74
+ cognitive: f.cognitive,
75
+ nestingDepth: 0,
76
+ isHighComplexity: f.cyclomatic >= 10
77
+ }))
78
+ };
79
+ }
80
+ // 否则基于符号数量估算
81
+ const functions = module.symbols.filter(s => s.kind === 'function' || s.kind === 'method').length;
82
+ const classes = module.symbols.filter(s => s.kind === 'class').length;
83
+ // 更合理的圈复杂度估算:基于函数数量和代码行数
84
+ // 每个函数基础复杂度1,再加上基于行数的估算
85
+ const cyclomatic = Math.max(1, functions + Math.floor(module.stats.codeLines / 50));
86
+ const cognitive = Math.round(cyclomatic * 1.5);
87
+ const commentRatio = module.stats.commentLines / Math.max(1, module.stats.lines);
88
+ const maintainability = calculateMaintainabilityIndex(module.stats.codeLines, cyclomatic, commentRatio);
89
+ return {
90
+ cyclomatic,
91
+ cognitive,
92
+ maintainability,
93
+ functions,
94
+ classes,
95
+ lines: module.stats.codeLines
96
+ };
97
+ }
98
+ /**
99
+ * 使用 AST 分析获取精确的模块复杂度信息
100
+ */
101
+ function getModuleComplexityWithAST(module) {
102
+ try {
103
+ const astResult = analyzeFileComplexity(module.absolutePath);
104
+ return {
105
+ cyclomatic: astResult.cyclomatic,
106
+ cognitive: astResult.cognitive,
107
+ maintainability: astResult.maintainability,
108
+ functions: astResult.functions,
109
+ classes: astResult.classes,
110
+ lines: astResult.lines,
111
+ functionDetails: astResult.functionDetails
112
+ };
113
+ }
114
+ catch (error) {
115
+ // 如果 AST 分析失败,回退到估算方式
116
+ console.warn(`警告: AST 分析失败,回退到估算方式: ${module.absolutePath}`);
117
+ return getModuleComplexity(module);
118
+ }
119
+ }
120
+ /**
121
+ * 构建 SourceLocation 对象
122
+ */
123
+ function buildLocation(filePath, line = 1, column = 1) {
124
+ return {
125
+ file: filePath,
126
+ line,
127
+ column,
128
+ };
129
+ }
130
+ function analyzeComplexity(codeMap, options = {}) {
131
+ const { filePaths, useAST = false } = options;
132
+ const result = {
133
+ files: []
134
+ };
135
+ // 筛选目标模块
136
+ let modulesToAnalyze = codeMap.modules;
137
+ if (filePaths && filePaths.length > 0) {
138
+ modulesToAnalyze = codeMap.modules.filter(m => filePaths.some(fp => m.absolutePath.includes(fp) ||
139
+ path.relative(codeMap.project.rootDir, m.absolutePath).includes(fp)));
140
+ }
141
+ // 计算每个模块的复杂度
142
+ for (const module of modulesToAnalyze) {
143
+ const complexity = useAST
144
+ ? getModuleComplexityWithAST(module)
145
+ : getModuleComplexity(module);
146
+ const relativePath = path.relative(codeMap.project.rootDir, module.absolutePath);
147
+ result.files.push({
148
+ path: module.absolutePath,
149
+ relativePath,
150
+ location: buildLocation(relativePath, 1, 1), // 新增:结构化位置信息
151
+ complexity
152
+ });
153
+ }
154
+ // 计算汇总统计
155
+ if (result.files.length > 0) {
156
+ result.summary = {
157
+ totalModules: codeMap.modules.length,
158
+ averageCyclomatic: result.files.reduce((sum, f) => sum + f.complexity.cyclomatic, 0) / result.files.length,
159
+ averageCognitive: result.files.reduce((sum, f) => sum + f.complexity.cognitive, 0) / result.files.length,
160
+ averageMaintainability: result.files.reduce((sum, f) => sum + f.complexity.maintainability, 0) / result.files.length
161
+ };
162
+ }
163
+ return result;
164
+ }
165
+ /**
166
+ * 获取复杂度评级(内部使用)
167
+ */
168
+ function getComplexityRating(value, type) {
169
+ if (type === 'cyclomatic') {
170
+ if (value <= 10)
171
+ return chalk.green('低');
172
+ if (value <= 20)
173
+ return chalk.yellow('中');
174
+ if (value <= 50)
175
+ return chalk.red('高');
176
+ return chalk.magenta('极高');
177
+ }
178
+ else {
179
+ if (value >= 80)
180
+ return chalk.green('高');
181
+ if (value >= 60)
182
+ return chalk.yellow('中');
183
+ if (value >= 40)
184
+ return chalk.red('低');
185
+ return chalk.magenta('极低');
186
+ }
187
+ }
188
+ /**
189
+ * 获取风险等级(内部使用)
190
+ */
191
+ function getRiskLevel(complexity) {
192
+ if (complexity.cyclomatic > 20 || complexity.cognitive > 30 || complexity.maintainability < 40) {
193
+ return 'high';
194
+ }
195
+ if (complexity.cyclomatic > 10 || complexity.cognitive > 15 || complexity.maintainability < 60) {
196
+ return 'medium';
197
+ }
198
+ return 'low';
199
+ }
200
+ // ===== ComplexityCommand 类(供 ToolOrchestrator 调用) =====
201
+ export class ComplexityCommand {
202
+ codeMap = null;
203
+ rootDir;
204
+ constructor(rootDir) {
205
+ this.rootDir = rootDir || process.cwd();
206
+ }
207
+ /**
208
+ * 加载代码地图
209
+ */
210
+ loadCodeMap() {
211
+ if (this.codeMap) {
212
+ return this.codeMap;
213
+ }
214
+ this.codeMap = loadCodeMap(this.rootDir);
215
+ return this.codeMap;
216
+ }
217
+ /**
218
+ * 运行复杂度分析,返回结构化结果
219
+ */
220
+ async run(args) {
221
+ const codeMap = this.loadCodeMap();
222
+ if (!codeMap) {
223
+ throw new Error('代码地图不存在,请先运行 codemap generate');
224
+ }
225
+ return analyzeComplexity(codeMap, {
226
+ filePaths: args.targets,
227
+ useAST: args.useAST ?? false
228
+ });
229
+ }
230
+ /**
231
+ * 增强模式,返回 UnifiedResult[]
232
+ */
233
+ async runEnhanced(args) {
234
+ const result = await this.run(args);
235
+ return this.toUnifiedResults(result);
236
+ }
237
+ /**
238
+ * 将 ComplexityResult 转换为 UnifiedResult[]
239
+ */
240
+ toUnifiedResults(result) {
241
+ return result.files.map(file => {
242
+ const complexity = file.complexity;
243
+ const riskLevel = getRiskLevel(complexity);
244
+ // 基于复杂度计算相关性(复杂度越高相关性越高)
245
+ const relevance = Math.min(1, Math.max(0.3, (complexity.cyclomatic / 50) * 0.4 +
246
+ (complexity.cognitive / 75) * 0.3 +
247
+ (1 - complexity.maintainability / 100) * 0.3));
248
+ // 确定类型:复杂度高则标记为 risk-assessment
249
+ const type = riskLevel === 'high' ? 'risk-assessment' : 'file';
250
+ // 生成人类可读的描述
251
+ const content = `圈复杂度: ${complexity.cyclomatic}, 认知复杂度: ${complexity.cognitive}, 可维护性: ${complexity.maintainability}`;
252
+ // 使用已有的 location
253
+ const location = file.location || {
254
+ file: file.relativePath,
255
+ line: 1,
256
+ column: 1,
257
+ };
258
+ return {
259
+ id: `codemap-${file.path}-0`,
260
+ source: 'codemap',
261
+ toolScore: 0.9,
262
+ type,
263
+ file: file.path,
264
+ line: 1,
265
+ location, // 新增:结构化位置信息
266
+ content,
267
+ relevance,
268
+ keywords: [],
269
+ metadata: {
270
+ symbolType: 'class',
271
+ dependencies: [],
272
+ testFile: '',
273
+ commitCount: 0,
274
+ gravity: 0,
275
+ heatScore: {
276
+ freq30d: 0,
277
+ lastType: '',
278
+ lastDate: null,
279
+ stability: true
280
+ },
281
+ impactCount: 0,
282
+ stability: true,
283
+ riskLevel,
284
+ // 额外添加复杂度详细指标
285
+ complexityMetrics: {
286
+ cyclomatic: complexity.cyclomatic,
287
+ cognitive: complexity.cognitive,
288
+ maintainability: complexity.maintainability,
289
+ functions: complexity.functions,
290
+ classes: complexity.classes,
291
+ lines: complexity.lines
292
+ }
293
+ }
294
+ };
295
+ });
296
+ }
297
+ }
298
+ // ===== 原有 CLI 命令(保持兼容,使用控制台输出) =====
299
+ /**
300
+ * 格式化复杂度输出
301
+ */
302
+ function formatComplexity(codeMap, targetModule, allComplexities, options) {
303
+ // 如果有详细数据,使用已有的复杂度信息
304
+ const activeComplexity = targetModule && allComplexities.length > 0
305
+ ? allComplexities[0].complexity
306
+ : (options.file && allComplexities.length > 0 ? allComplexities[0].complexity : undefined);
307
+ if (options.json) {
308
+ const output = {};
309
+ if (options.file && targetModule) {
310
+ const relativePath = path.relative(codeMap.project.rootDir, targetModule.absolutePath);
311
+ output.file = {
312
+ path: targetModule.absolutePath,
313
+ relativePath,
314
+ location: buildLocation(relativePath, 1, 1), // 新增:结构化位置信息
315
+ complexity: activeComplexity || getModuleComplexity(targetModule)
316
+ };
317
+ }
318
+ else {
319
+ output.modules = allComplexities.map(({ module, complexity }) => {
320
+ const relativePath = path.relative(codeMap.project.rootDir, module.absolutePath);
321
+ return {
322
+ path: relativePath,
323
+ location: buildLocation(relativePath, 1, 1), // 新增:结构化位置信息
324
+ ...complexity
325
+ };
326
+ });
327
+ output.summary = {
328
+ totalModules: codeMap.modules.length,
329
+ averageCyclomatic: allComplexities.reduce((sum, c) => sum + c.complexity.cyclomatic, 0) / codeMap.modules.length,
330
+ averageCognitive: allComplexities.reduce((sum, c) => sum + c.complexity.cognitive, 0) / codeMap.modules.length,
331
+ averageMaintainability: allComplexities.reduce((sum, c) => sum + c.complexity.maintainability, 0) / codeMap.modules.length
332
+ };
333
+ }
334
+ console.log(JSON.stringify(output, null, 2));
335
+ return;
336
+ }
337
+ // 检查是否需要显示单个文件详情(targetModule 存在 或 allComplexities 只有一个元素且有函数详情)
338
+ const showSingleFile = options.file && (targetModule || (allComplexities.length === 1 && allComplexities[0].complexity.functionDetails));
339
+ if (showSingleFile) {
340
+ // 输出指定文件的复杂度
341
+ // 如果有来自 AST 分析的详细数据则使用它
342
+ const complexity = allComplexities.length > 0 && allComplexities[0].complexity.functionDetails
343
+ ? allComplexities[0].complexity
344
+ : (targetModule ? getModuleComplexity(targetModule) : allComplexities[0].complexity);
345
+ const filePath = targetModule
346
+ ? path.relative(codeMap.project.rootDir, targetModule.absolutePath)
347
+ : (allComplexities.length > 0 ? allComplexities[0].module.absolutePath : options.file);
348
+ console.log(chalk.cyan(`\n📊 文件复杂度: ${filePath}`));
349
+ console.log(chalk.gray('─'.repeat(50)));
350
+ console.log(chalk.yellow('\n圈复杂度 (Cyclomatic Complexity):'));
351
+ console.log(chalk.green(` ${complexity.cyclomatic}`), getComplexityRating(complexity.cyclomatic, 'cyclomatic'));
352
+ console.log(chalk.gray(` 衡量代码中独立路径的数量`));
353
+ console.log(chalk.yellow('\n认知复杂度 (Cognitive Complexity):'));
354
+ console.log(chalk.green(` ${complexity.cognitive}`), chalk.gray('(越低越好)'));
355
+ console.log(chalk.gray(` 衡量代码的理解难度`));
356
+ console.log(chalk.yellow('\n可维护性指数 (Maintainability):'));
357
+ console.log(chalk.green(` ${complexity.maintainability}`), getComplexityRating(complexity.maintainability, 'maintainability'));
358
+ console.log(chalk.gray(` 0-100,越高越易维护`));
359
+ console.log(chalk.yellow('\n统计信息:'));
360
+ console.log(chalk.gray(` 代码行数: ${complexity.lines}`));
361
+ console.log(chalk.gray(` 函数/方法: ${complexity.functions}`));
362
+ console.log(chalk.gray(` 类: ${complexity.classes}`));
363
+ // 显示函数级详情(当有详细数据时)
364
+ if (options.detail && complexity.functionDetails && complexity.functionDetails.length > 0) {
365
+ console.log(chalk.yellow('\n函数级复杂度详情:'));
366
+ console.log(chalk.gray('─'.repeat(50)));
367
+ // 按圈复杂度排序
368
+ const sortedFunctions = [...complexity.functionDetails].sort((a, b) => b.cyclomatic - a.cyclomatic);
369
+ for (const func of sortedFunctions) {
370
+ const complexityLevel = func.isHighComplexity
371
+ ? chalk.red(' ⚠️ 高')
372
+ : chalk.green(' ✓');
373
+ console.log(chalk.cyan(`\n ${func.name} (${func.kind})`));
374
+ console.log(chalk.gray(` 行号: ${func.line}`));
375
+ console.log(chalk.gray(` 圈复杂度: ${func.cyclomatic} ${complexityLevel}`));
376
+ console.log(chalk.gray(` 认知复杂度: ${func.cognitive}`));
377
+ console.log(chalk.gray(` 嵌套深度: ${func.nestingDepth}`));
378
+ }
379
+ }
380
+ }
381
+ else {
382
+ // 输出所有文件的复杂度
383
+ console.log(chalk.cyan('\n📊 项目复杂度分析'));
384
+ console.log(chalk.gray('─'.repeat(50)));
385
+ // 按圈复杂度排序
386
+ const sorted = allComplexities.sort((a, b) => b.complexity.cyclomatic - a.complexity.cyclomatic);
387
+ console.log(chalk.yellow('\n🔥 复杂度最高的文件 (Top 15):'));
388
+ let rank = 1;
389
+ for (const { module, complexity } of sorted.slice(0, 15)) {
390
+ const relPath = path.relative(codeMap.project.rootDir, module.absolutePath);
391
+ const rating = getComplexityRating(complexity.cyclomatic, 'cyclomatic');
392
+ console.log(chalk.green(`\n ${rank}. ${relPath}`));
393
+ console.log(chalk.gray(` 圈复杂度: ${complexity.cyclomatic} ${rating}`));
394
+ console.log(chalk.gray(` 认知复杂度: ${complexity.cognitive}`));
395
+ console.log(chalk.gray(` 可维护性: ${complexity.maintainability} ${getComplexityRating(complexity.maintainability, 'maintainability')}`));
396
+ rank++;
397
+ }
398
+ // 统计摘要
399
+ const totalCyclomatic = allComplexities.reduce((sum, c) => sum + c.complexity.cyclomatic, 0);
400
+ const totalCognitive = allComplexities.reduce((sum, c) => sum + c.complexity.cognitive, 0);
401
+ const totalMaintainability = allComplexities.reduce((sum, c) => sum + c.complexity.maintainability, 0);
402
+ const avgCyclomatic = totalCyclomatic / codeMap.modules.length;
403
+ const avgCognitive = totalCognitive / codeMap.modules.length;
404
+ const avgMaintainability = totalMaintainability / codeMap.modules.length;
405
+ console.log(chalk.gray('\n─'.repeat(50)));
406
+ console.log(chalk.cyan('\n📈 项目统计:'));
407
+ console.log(chalk.gray(` 总文件数: ${codeMap.modules.length}`));
408
+ console.log(chalk.gray(` 平均圈复杂度: ${avgCyclomatic.toFixed(2)} ${getComplexityRating(avgCyclomatic, 'cyclomatic')}`));
409
+ console.log(chalk.gray(` 平均认知复杂度: ${avgCognitive.toFixed(2)}`));
410
+ console.log(chalk.gray(` 平均可维护性: ${avgMaintainability.toFixed(2)} ${getComplexityRating(avgMaintainability, 'maintainability')}`));
411
+ }
412
+ console.log('');
413
+ }
414
+ /**
415
+ * 加载代码地图数据(兼容旧函数,带控制台输出)
416
+ */
417
+ function loadCodeMapWithOutput(rootDir) {
418
+ const codemapPath = resolveDataPath(rootDir);
419
+ if (!fs.existsSync(codemapPath)) {
420
+ console.log(chalk.red('❌ 代码地图不存在,请先运行 codemap generate'));
421
+ return null;
422
+ }
423
+ try {
424
+ const data = fs.readFileSync(codemapPath, 'utf-8');
425
+ return JSON.parse(data);
426
+ }
427
+ catch (error) {
428
+ console.log(chalk.red('❌ 读取代码地图失败:', error instanceof Error ? error.message : String(error)));
429
+ return null;
430
+ }
431
+ }
432
+ /**
433
+ * Complexity 命令实现(原有函数,保持兼容)
434
+ */
435
+ export async function complexityCommand(options) {
436
+ const rootDir = process.cwd();
437
+ // 加载代码地图
438
+ const codeMap = loadCodeMapWithOutput(rootDir);
439
+ if (!codeMap) {
440
+ process.exit(1);
441
+ }
442
+ // 获取目标模块
443
+ let targetModule;
444
+ const allComplexities = [];
445
+ // 使用 AST 分析时,detail 选项自动启用
446
+ const useAST = options.detail || false;
447
+ if (options.file) {
448
+ targetModule = codeMap.modules.find(m => m.absolutePath.includes(options.file) ||
449
+ path.relative(codeMap.project.rootDir, m.absolutePath).includes(options.file));
450
+ if (!targetModule) {
451
+ console.log(chalk.red(`❌ 未找到文件: ${options.file}`));
452
+ process.exit(1);
453
+ }
454
+ // 如果使用 AST 分析,获取精确的函数级复杂度
455
+ if (useAST) {
456
+ const astComplexity = getModuleComplexityWithAST(targetModule);
457
+ allComplexities.push({
458
+ module: targetModule,
459
+ complexity: astComplexity
460
+ });
461
+ targetModule = undefined; // 使用 allComplexities 输出
462
+ }
463
+ }
464
+ else {
465
+ // 计算所有模块的复杂度
466
+ for (const module of codeMap.modules) {
467
+ const complexity = useAST
468
+ ? getModuleComplexityWithAST(module)
469
+ : getModuleComplexity(module);
470
+ allComplexities.push({
471
+ module,
472
+ complexity
473
+ });
474
+ }
475
+ }
476
+ // 输出结果
477
+ formatComplexity(codeMap, targetModule, allComplexities, options);
478
+ }
479
+ //# sourceMappingURL=complexity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"complexity.js","sourceRoot":"","sources":["../../../src/cli/commands/complexity.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ interface CyclesOptions {
2
+ depth?: number;
3
+ json?: boolean;
4
+ }
5
+ /**
6
+ * Cycles 命令实现
7
+ */
8
+ export declare function cyclesCommand(options: CyclesOptions): Promise<void>;
9
+ export {};
10
+ //# sourceMappingURL=cycles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cycles.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/cycles.ts"],"names":[],"mappings":"AAMA,UAAU,aAAa;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAuND;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,iBAyBzD"}