octocode-cli 1.2.5 → 1.2.7

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 (303) hide show
  1. package/LICENSE +21 -63
  2. package/README.md +86 -109
  3. package/out/octocode-cli.js +7027 -7014
  4. package/package.json +8 -6
  5. package/skills/README.md +97 -120
  6. package/skills/octocode-code-engineer/.claude/settings.local.json +18 -0
  7. package/skills/octocode-code-engineer/.octocode/rfc/RFC-code-engineer-weakness-fixes.md +255 -0
  8. package/skills/octocode-code-engineer/.plan/VALIDATED_PLAN.md +223 -0
  9. package/skills/octocode-code-engineer/README.md +178 -0
  10. package/skills/octocode-code-engineer/SKILL.md +418 -0
  11. package/skills/octocode-code-engineer/coverage/architecture.ts.html +7828 -0
  12. package/skills/octocode-code-engineer/coverage/ast-helpers.ts.html +211 -0
  13. package/skills/octocode-code-engineer/coverage/ast-search.ts.html +1795 -0
  14. package/skills/octocode-code-engineer/coverage/base.css +224 -0
  15. package/skills/octocode-code-engineer/coverage/block-navigation.js +87 -0
  16. package/skills/octocode-code-engineer/coverage/cache.ts.html +376 -0
  17. package/skills/octocode-code-engineer/coverage/cli.ts.html +982 -0
  18. package/skills/octocode-code-engineer/coverage/clover.xml +3217 -0
  19. package/skills/octocode-code-engineer/coverage/collect-effects.ts.html +664 -0
  20. package/skills/octocode-code-engineer/coverage/collect-input-sources.ts.html +577 -0
  21. package/skills/octocode-code-engineer/coverage/collect-performance.ts.html +331 -0
  22. package/skills/octocode-code-engineer/coverage/collect-prototype-pollution.ts.html +421 -0
  23. package/skills/octocode-code-engineer/coverage/collect-security.ts.html +604 -0
  24. package/skills/octocode-code-engineer/coverage/collect-test-profile.ts.html +589 -0
  25. package/skills/octocode-code-engineer/coverage/coverage-final.json +30 -0
  26. package/skills/octocode-code-engineer/coverage/dependencies.ts.html +997 -0
  27. package/skills/octocode-code-engineer/coverage/dependency-summary.ts.html +688 -0
  28. package/skills/octocode-code-engineer/coverage/discovery.ts.html +322 -0
  29. package/skills/octocode-code-engineer/coverage/favicon.png +0 -0
  30. package/skills/octocode-code-engineer/coverage/graph-analytics.ts.html +1510 -0
  31. package/skills/octocode-code-engineer/coverage/index.html +536 -0
  32. package/skills/octocode-code-engineer/coverage/index.ts.html +826 -0
  33. package/skills/octocode-code-engineer/coverage/metrics.ts.html +553 -0
  34. package/skills/octocode-code-engineer/coverage/pipeline.ts.html +2044 -0
  35. package/skills/octocode-code-engineer/coverage/prettify.css +1 -0
  36. package/skills/octocode-code-engineer/coverage/prettify.js +2 -0
  37. package/skills/octocode-code-engineer/coverage/report-analysis.ts.html +1570 -0
  38. package/skills/octocode-code-engineer/coverage/report-writer.ts.html +1102 -0
  39. package/skills/octocode-code-engineer/coverage/security-detectors.ts.html +1747 -0
  40. package/skills/octocode-code-engineer/coverage/semantic-detectors.ts.html +2152 -0
  41. package/skills/octocode-code-engineer/coverage/semantic.ts.html +1897 -0
  42. package/skills/octocode-code-engineer/coverage/sort-arrow-sprite.png +0 -0
  43. package/skills/octocode-code-engineer/coverage/sorter.js +210 -0
  44. package/skills/octocode-code-engineer/coverage/summary-md.ts.html +1222 -0
  45. package/skills/octocode-code-engineer/coverage/test-quality-detectors.ts.html +1039 -0
  46. package/skills/octocode-code-engineer/coverage/tree-sitter-analyzer.ts.html +955 -0
  47. package/skills/octocode-code-engineer/coverage/ts-analyzer.ts.html +1213 -0
  48. package/skills/octocode-code-engineer/coverage/types.ts.html +2473 -0
  49. package/skills/octocode-code-engineer/coverage/utils.ts.html +820 -0
  50. package/skills/octocode-code-engineer/eslint.config.mjs +54 -0
  51. package/skills/octocode-code-engineer/minify-scripts.mjs +32 -0
  52. package/skills/octocode-code-engineer/package.json +54 -0
  53. package/skills/octocode-code-engineer/references/agent-ast-reading-rfc.md +95 -0
  54. package/skills/octocode-code-engineer/references/architecture-techniques.md +121 -0
  55. package/skills/octocode-code-engineer/references/ast-search.md +210 -0
  56. package/skills/octocode-code-engineer/references/ast-tree-search.md +151 -0
  57. package/skills/octocode-code-engineer/references/cli-reference.md +167 -0
  58. package/skills/octocode-code-engineer/references/concepts.md +107 -0
  59. package/skills/octocode-code-engineer/references/finding-categories.md +128 -0
  60. package/skills/octocode-code-engineer/references/improvement-roadmap.md +304 -0
  61. package/skills/octocode-code-engineer/references/output-files.md +144 -0
  62. package/skills/octocode-code-engineer/references/playbooks.md +204 -0
  63. package/skills/octocode-code-engineer/references/present-results.md +136 -0
  64. package/skills/octocode-code-engineer/references/tool-workflows.md +566 -0
  65. package/skills/octocode-code-engineer/references/validate-investigate.md +225 -0
  66. package/skills/octocode-code-engineer/scripts/analysis/dependencies.js +1 -0
  67. package/skills/octocode-code-engineer/scripts/analysis/dependency-summary.js +1 -0
  68. package/skills/octocode-code-engineer/scripts/analysis/discovery.js +1 -0
  69. package/skills/octocode-code-engineer/scripts/analysis/graph-analytics.js +1 -0
  70. package/skills/octocode-code-engineer/scripts/analysis/semantic.js +1 -0
  71. package/skills/octocode-code-engineer/scripts/ast/helpers.js +1 -0
  72. package/skills/octocode-code-engineer/scripts/ast/metrics.js +1 -0
  73. package/skills/octocode-code-engineer/scripts/ast/search.js +2 -0
  74. package/skills/octocode-code-engineer/scripts/ast/tree-search.js +2 -0
  75. package/skills/octocode-code-engineer/scripts/ast/tree-sitter.js +1 -0
  76. package/skills/octocode-code-engineer/scripts/ast/ts-analyzer.js +1 -0
  77. package/skills/octocode-code-engineer/scripts/collectors/chains.js +1 -0
  78. package/skills/octocode-code-engineer/scripts/collectors/effects.js +1 -0
  79. package/skills/octocode-code-engineer/scripts/collectors/input-sources.js +1 -0
  80. package/skills/octocode-code-engineer/scripts/collectors/performance.js +1 -0
  81. package/skills/octocode-code-engineer/scripts/collectors/prototype-pollution.js +1 -0
  82. package/skills/octocode-code-engineer/scripts/collectors/security.js +1 -0
  83. package/skills/octocode-code-engineer/scripts/collectors/test-profile.js +1 -0
  84. package/skills/octocode-code-engineer/scripts/common/is-direct-run.js +1 -0
  85. package/skills/octocode-code-engineer/scripts/common/utils.js +1 -0
  86. package/skills/octocode-code-engineer/scripts/detectors/code-quality.js +1 -0
  87. package/skills/octocode-code-engineer/scripts/detectors/cohesion.js +1 -0
  88. package/skills/octocode-code-engineer/scripts/detectors/coupling.js +1 -0
  89. package/skills/octocode-code-engineer/scripts/detectors/cycle.js +1 -0
  90. package/skills/octocode-code-engineer/scripts/detectors/dead-code.js +1 -0
  91. package/skills/octocode-code-engineer/scripts/detectors/import-style.js +1 -0
  92. package/skills/octocode-code-engineer/scripts/detectors/index.js +1 -0
  93. package/skills/octocode-code-engineer/scripts/detectors/security.js +1 -0
  94. package/skills/octocode-code-engineer/scripts/detectors/semantic.js +1 -0
  95. package/skills/octocode-code-engineer/scripts/detectors/shared.js +1 -0
  96. package/skills/octocode-code-engineer/scripts/detectors/test-quality.js +1 -0
  97. package/skills/octocode-code-engineer/scripts/index.js +1 -0
  98. package/skills/octocode-code-engineer/scripts/pipeline/cache.js +1 -0
  99. package/skills/octocode-code-engineer/scripts/pipeline/cli.js +1 -0
  100. package/skills/octocode-code-engineer/scripts/pipeline/main.js +2 -0
  101. package/skills/octocode-code-engineer/scripts/reporting/analysis.js +1 -0
  102. package/skills/octocode-code-engineer/scripts/reporting/summary-md.js +1 -0
  103. package/skills/octocode-code-engineer/scripts/reporting/writer.js +1 -0
  104. package/skills/octocode-code-engineer/scripts/types/constants.js +1 -0
  105. package/skills/octocode-code-engineer/scripts/types/index.js +1 -0
  106. package/skills/octocode-code-engineer/scripts/types/interfaces.js +1 -0
  107. package/skills/octocode-code-engineer/src/analysis/dependencies.test.ts +545 -0
  108. package/skills/octocode-code-engineer/src/analysis/dependencies.ts +406 -0
  109. package/skills/octocode-code-engineer/src/analysis/dependency-summary.test.ts +566 -0
  110. package/skills/octocode-code-engineer/src/analysis/dependency-summary.ts +257 -0
  111. package/skills/octocode-code-engineer/src/analysis/discovery.test.ts +420 -0
  112. package/skills/octocode-code-engineer/src/analysis/discovery.ts +87 -0
  113. package/skills/octocode-code-engineer/src/analysis/graph-analytics.test.ts +449 -0
  114. package/skills/octocode-code-engineer/src/analysis/graph-analytics.ts +534 -0
  115. package/skills/octocode-code-engineer/src/analysis/semantic.test.ts +1533 -0
  116. package/skills/octocode-code-engineer/src/analysis/semantic.ts +830 -0
  117. package/skills/octocode-code-engineer/src/ast/helpers.test.ts +185 -0
  118. package/skills/octocode-code-engineer/src/ast/helpers.ts +62 -0
  119. package/skills/octocode-code-engineer/src/ast/metrics.test.ts +304 -0
  120. package/skills/octocode-code-engineer/src/ast/metrics.ts +204 -0
  121. package/skills/octocode-code-engineer/src/ast/search.test.ts +647 -0
  122. package/skills/octocode-code-engineer/src/ast/search.ts +648 -0
  123. package/skills/octocode-code-engineer/src/ast/tree-search.test.ts +199 -0
  124. package/skills/octocode-code-engineer/src/ast/tree-search.ts +392 -0
  125. package/skills/octocode-code-engineer/src/ast/tree-sitter.test.ts +407 -0
  126. package/skills/octocode-code-engineer/src/ast/tree-sitter.ts +402 -0
  127. package/skills/octocode-code-engineer/src/ast/ts-analyzer.test.ts +1864 -0
  128. package/skills/octocode-code-engineer/src/ast/ts-analyzer.ts +509 -0
  129. package/skills/octocode-code-engineer/src/collectors/chains.ts +74 -0
  130. package/skills/octocode-code-engineer/src/collectors/effects.test.ts +490 -0
  131. package/skills/octocode-code-engineer/src/collectors/effects.ts +332 -0
  132. package/skills/octocode-code-engineer/src/collectors/input-sources.test.ts +144 -0
  133. package/skills/octocode-code-engineer/src/collectors/input-sources.ts +196 -0
  134. package/skills/octocode-code-engineer/src/collectors/performance.test.ts +82 -0
  135. package/skills/octocode-code-engineer/src/collectors/performance.ts +141 -0
  136. package/skills/octocode-code-engineer/src/collectors/prototype-pollution.test.ts +55 -0
  137. package/skills/octocode-code-engineer/src/collectors/prototype-pollution.ts +162 -0
  138. package/skills/octocode-code-engineer/src/collectors/security.test.ts +124 -0
  139. package/skills/octocode-code-engineer/src/collectors/security.ts +309 -0
  140. package/skills/octocode-code-engineer/src/collectors/test-profile.test.ts +97 -0
  141. package/skills/octocode-code-engineer/src/collectors/test-profile.ts +269 -0
  142. package/skills/octocode-code-engineer/src/common/is-direct-run.test.ts +32 -0
  143. package/skills/octocode-code-engineer/src/common/is-direct-run.ts +13 -0
  144. package/skills/octocode-code-engineer/src/common/utils.test.ts +463 -0
  145. package/skills/octocode-code-engineer/src/common/utils.ts +304 -0
  146. package/skills/octocode-code-engineer/src/detectors/code-quality.ts +966 -0
  147. package/skills/octocode-code-engineer/src/detectors/cohesion.ts +539 -0
  148. package/skills/octocode-code-engineer/src/detectors/coupling.ts +323 -0
  149. package/skills/octocode-code-engineer/src/detectors/cycle.ts +349 -0
  150. package/skills/octocode-code-engineer/src/detectors/dead-code.ts +320 -0
  151. package/skills/octocode-code-engineer/src/detectors/import-style.ts +376 -0
  152. package/skills/octocode-code-engineer/src/detectors/index.test.ts +3061 -0
  153. package/skills/octocode-code-engineer/src/detectors/index.ts +88 -0
  154. package/skills/octocode-code-engineer/src/detectors/security.test.ts +882 -0
  155. package/skills/octocode-code-engineer/src/detectors/security.ts +821 -0
  156. package/skills/octocode-code-engineer/src/detectors/semantic.ts +758 -0
  157. package/skills/octocode-code-engineer/src/detectors/shared.ts +49 -0
  158. package/skills/octocode-code-engineer/src/detectors/test-quality.test.ts +388 -0
  159. package/skills/octocode-code-engineer/src/detectors/test-quality.ts +367 -0
  160. package/skills/octocode-code-engineer/src/index.test.ts +4425 -0
  161. package/skills/octocode-code-engineer/src/index.ts +403 -0
  162. package/skills/octocode-code-engineer/src/pipeline/cache.test.ts +199 -0
  163. package/skills/octocode-code-engineer/src/pipeline/cache.ts +130 -0
  164. package/skills/octocode-code-engineer/src/pipeline/cli.test.ts +493 -0
  165. package/skills/octocode-code-engineer/src/pipeline/cli.ts +344 -0
  166. package/skills/octocode-code-engineer/src/pipeline/main.test.ts +174 -0
  167. package/skills/octocode-code-engineer/src/pipeline/main.ts +1074 -0
  168. package/skills/octocode-code-engineer/src/pipeline.test.ts +84 -0
  169. package/skills/octocode-code-engineer/src/reporting/analysis.test.ts +782 -0
  170. package/skills/octocode-code-engineer/src/reporting/analysis.ts +688 -0
  171. package/skills/octocode-code-engineer/src/reporting/output-contract.test.ts +463 -0
  172. package/skills/octocode-code-engineer/src/reporting/summary-md.test.ts +421 -0
  173. package/skills/octocode-code-engineer/src/reporting/summary-md.ts +714 -0
  174. package/skills/octocode-code-engineer/src/reporting/writer.ts +430 -0
  175. package/skills/octocode-code-engineer/src/sanity.test.ts +47 -0
  176. package/skills/octocode-code-engineer/src/types/constants.ts +248 -0
  177. package/skills/octocode-code-engineer/src/types/index.ts +80 -0
  178. package/skills/octocode-code-engineer/src/types/interfaces.ts +682 -0
  179. package/skills/octocode-code-engineer/tsconfig.json +17 -0
  180. package/skills/octocode-code-engineer/vitest.config.ts +8 -0
  181. package/skills/octocode-documentation-writer/README.md +113 -0
  182. package/skills/octocode-documentation-writer/SKILL.md +886 -0
  183. package/skills/octocode-documentation-writer/references/agent-discovery-analysis.md +453 -0
  184. package/skills/octocode-documentation-writer/references/agent-documentation-writer.md +255 -0
  185. package/skills/octocode-documentation-writer/references/agent-engineer-questions.md +247 -0
  186. package/skills/octocode-documentation-writer/references/agent-orchestrator.md +370 -0
  187. package/skills/octocode-documentation-writer/references/agent-qa-validator.md +227 -0
  188. package/skills/octocode-documentation-writer/references/agent-researcher.md +250 -0
  189. package/skills/octocode-documentation-writer/schemas/analysis-schema.json +886 -0
  190. package/skills/octocode-documentation-writer/schemas/discovery-tasks.json +96 -0
  191. package/skills/octocode-documentation-writer/schemas/documentation-structure.json +373 -0
  192. package/skills/octocode-documentation-writer/schemas/partial-discovery-schema.json +102 -0
  193. package/skills/octocode-documentation-writer/schemas/partial-research-schema.json +98 -0
  194. package/skills/octocode-documentation-writer/schemas/qa-results-schema.json +113 -0
  195. package/skills/octocode-documentation-writer/schemas/questions-schema.json +228 -0
  196. package/skills/octocode-documentation-writer/schemas/research-schema.json +104 -0
  197. package/skills/octocode-documentation-writer/schemas/state-schema.json +222 -0
  198. package/skills/octocode-documentation-writer/schemas/work-assignments-schema.json +74 -0
  199. package/skills/octocode-plan/SKILL.md +122 -116
  200. package/skills/octocode-prompt-optimizer/SKILL.md +617 -0
  201. package/skills/octocode-pull-request-reviewer/README.md +249 -0
  202. package/skills/octocode-pull-request-reviewer/SKILL.md +479 -0
  203. package/skills/octocode-pull-request-reviewer/references/dependency-check.md +74 -0
  204. package/skills/octocode-pull-request-reviewer/references/domain-reviewers.md +24 -0
  205. package/skills/octocode-pull-request-reviewer/references/execution-lifecycle.md +441 -0
  206. package/skills/octocode-pull-request-reviewer/references/flow-analysis-protocol.md +64 -0
  207. package/skills/octocode-pull-request-reviewer/references/output-template.md +174 -0
  208. package/skills/octocode-pull-request-reviewer/references/parallel-agent-protocol.md +182 -0
  209. package/skills/octocode-pull-request-reviewer/references/review-guidelines.md +26 -0
  210. package/skills/octocode-pull-request-reviewer/references/verification-checklist.md +40 -0
  211. package/skills/octocode-research/.claude/settings.local.json +46 -0
  212. package/skills/octocode-research/.octocode/plan/code-review-fixes/plan.md +312 -0
  213. package/skills/octocode-research/.octocode/plan/code-review-fixes/research.md +212 -0
  214. package/skills/octocode-research/.octocode/plans/NODE_SERVER_START_PLAN.md +755 -0
  215. package/skills/octocode-research/.octocode/research/code-review/research.md +371 -0
  216. package/skills/octocode-research/.octocode/review/IMPROVEMENTS.md +391 -0
  217. package/skills/octocode-research/.octocode/review/REVIEW_PLAN.md +289 -0
  218. package/skills/octocode-research/.octocode/review/REVIEW_REPORT.md +356 -0
  219. package/skills/octocode-research/AGENTS.md +349 -0
  220. package/skills/octocode-research/README.md +494 -0
  221. package/skills/octocode-research/SKILL.md +652 -274
  222. package/skills/octocode-research/docs/API_REFERENCE.md +562 -0
  223. package/skills/octocode-research/docs/ARCHITECTURE.md +554 -0
  224. package/skills/octocode-research/docs/FLOWS.md +577 -0
  225. package/skills/octocode-research/docs/OVERVIEW.md +564 -0
  226. package/skills/octocode-research/docs/SERVER_FLOWS.md +631 -0
  227. package/skills/octocode-research/ecosystem.config.cjs +88 -0
  228. package/skills/octocode-research/eslint.config.mjs +27 -0
  229. package/skills/octocode-research/package.json +84 -0
  230. package/skills/octocode-research/references/GUARDRAILS.md +40 -0
  231. package/skills/octocode-research/references/PARALLEL_AGENT_PROTOCOL.md +178 -0
  232. package/skills/octocode-research/references/roast-prompt.md +149 -0
  233. package/skills/octocode-research/scripts/server-init.d.ts +2 -0
  234. package/skills/octocode-research/scripts/server-init.js +2 -0
  235. package/skills/octocode-research/scripts/server.d.ts +8 -0
  236. package/skills/octocode-research/scripts/server.js +445 -0
  237. package/skills/octocode-research/src/__tests__/integration/circuitBreaker.test.ts +205 -0
  238. package/skills/octocode-research/src/__tests__/integration/routes.test.ts +374 -0
  239. package/skills/octocode-research/src/__tests__/unit/circuitBreaker.test.ts +245 -0
  240. package/skills/octocode-research/src/__tests__/unit/errorHandler.test.ts +183 -0
  241. package/skills/octocode-research/src/__tests__/unit/httpPreprocess.test.ts +157 -0
  242. package/skills/octocode-research/src/__tests__/unit/logger.test.ts +143 -0
  243. package/skills/octocode-research/src/__tests__/unit/queryParser.test.ts +130 -0
  244. package/skills/octocode-research/src/__tests__/unit/responseBuilder.test.ts +469 -0
  245. package/skills/octocode-research/src/__tests__/unit/retry.test.ts +205 -0
  246. package/skills/octocode-research/src/index.ts +186 -0
  247. package/skills/octocode-research/src/mcpCache.ts +49 -0
  248. package/skills/octocode-research/src/middleware/errorHandler.ts +65 -0
  249. package/skills/octocode-research/src/middleware/logger.ts +61 -0
  250. package/skills/octocode-research/src/middleware/queryParser.ts +115 -0
  251. package/skills/octocode-research/src/middleware/readiness.ts +17 -0
  252. package/skills/octocode-research/src/routes/github.ts +197 -0
  253. package/skills/octocode-research/src/routes/local.ts +175 -0
  254. package/skills/octocode-research/src/routes/lsp.ts +177 -0
  255. package/skills/octocode-research/src/routes/package.ts +127 -0
  256. package/skills/octocode-research/src/routes/prompts.ts +138 -0
  257. package/skills/octocode-research/src/routes/tools.ts +677 -0
  258. package/skills/octocode-research/src/server-init.ts +363 -0
  259. package/skills/octocode-research/src/server.ts +285 -0
  260. package/skills/octocode-research/src/types/errorGuards.ts +151 -0
  261. package/skills/octocode-research/src/types/express.d.ts +76 -0
  262. package/skills/octocode-research/src/types/guards.ts +98 -0
  263. package/skills/octocode-research/src/types/mcp.ts +119 -0
  264. package/skills/octocode-research/src/types/responses.ts +199 -0
  265. package/skills/octocode-research/src/types/toolTypes.ts +33 -0
  266. package/skills/octocode-research/src/utils/asyncTimeout.ts +116 -0
  267. package/skills/octocode-research/src/utils/circuitBreaker.ts +492 -0
  268. package/skills/octocode-research/src/utils/colors.ts +53 -0
  269. package/skills/octocode-research/src/utils/errorQueue.ts +71 -0
  270. package/skills/octocode-research/src/utils/logEmoji.ts +103 -0
  271. package/skills/octocode-research/src/utils/logger.ts +413 -0
  272. package/skills/octocode-research/src/utils/resilience.ts +169 -0
  273. package/skills/octocode-research/src/utils/responseBuilder.ts +495 -0
  274. package/skills/octocode-research/src/utils/responseFactory.ts +100 -0
  275. package/skills/octocode-research/src/utils/responseParser.ts +272 -0
  276. package/skills/octocode-research/src/utils/retry.ts +280 -0
  277. package/skills/octocode-research/src/utils/routeFactory.ts +117 -0
  278. package/skills/octocode-research/src/utils/url.ts +20 -0
  279. package/skills/octocode-research/src/validation/httpPreprocess.ts +155 -0
  280. package/skills/octocode-research/src/validation/index.ts +2 -0
  281. package/skills/octocode-research/src/validation/schemas.ts +578 -0
  282. package/skills/octocode-research/src/validation/toolCallSchema.ts +132 -0
  283. package/skills/octocode-research/tsconfig.json +21 -0
  284. package/skills/octocode-research/tsdown.config.ts +42 -0
  285. package/skills/octocode-research/vitest.config.ts +20 -0
  286. package/skills/octocode-researcher/SKILL.md +461 -0
  287. package/skills/octocode-researcher/references/fallbacks.md +120 -0
  288. package/skills/{octocode-local-search → octocode-researcher}/references/tool-reference.md +132 -49
  289. package/skills/{octocode-local-search → octocode-researcher}/references/workflow-patterns.md +204 -4
  290. package/skills/octocode-rfc-generator/SKILL.md +223 -0
  291. package/skills/octocode-rfc-generator/references/rfc-template.md +193 -0
  292. package/skills/octocode-roast/SKILL.md +63 -21
  293. package/skills/octocode-implement/SKILL.md +0 -293
  294. package/skills/octocode-implement/references/execution-phases.md +0 -317
  295. package/skills/octocode-implement/references/tool-reference.md +0 -403
  296. package/skills/octocode-implement/references/workflow-patterns.md +0 -385
  297. package/skills/octocode-local-search/SKILL.md +0 -449
  298. package/skills/octocode-pr-review/SKILL.md +0 -391
  299. package/skills/octocode-pr-review/references/domain-reviewers.md +0 -105
  300. package/skills/octocode-pr-review/references/execution-lifecycle.md +0 -116
  301. package/skills/octocode-pr-review/references/research-flows.md +0 -75
  302. package/skills/octocode-research/references/tool-reference.md +0 -304
  303. package/skills/octocode-research/references/workflow-patterns.md +0 -325
@@ -0,0 +1,3217 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1773879185689" clover="3.2.0">
3
+ <project timestamp="1773879185689" name="All files">
4
+ <metrics statements="3124" coveredstatements="2708" conditionals="2429" coveredconditionals="1930" methods="209" coveredmethods="155" elements="5762" coveredelements="4793" complexity="0" loc="3124" ncloc="3124" packages="1" files="29" classes="29"/>
5
+ <file name="architecture.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/architecture.ts">
6
+ <metrics statements="560" coveredstatements="533" conditionals="702" coveredconditionals="600" methods="27" coveredmethods="26"/>
7
+ <line num="19" count="45" type="stmt"/>
8
+ <line num="23" count="0" type="cond" truecount="0" falsecount="2"/>
9
+ <line num="27" count="45" type="stmt"/>
10
+ <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
11
+ <line num="35" count="45" type="stmt"/>
12
+ <line num="39" count="426" type="stmt"/>
13
+ <line num="40" count="426" type="cond" truecount="2" falsecount="0"/>
14
+ <line num="41" count="402" type="cond" truecount="2" falsecount="0"/>
15
+ <line num="42" count="400" type="stmt"/>
16
+ <line num="46" count="69" type="stmt"/>
17
+ <line num="47" count="69" type="stmt"/>
18
+ <line num="48" count="69" type="cond" truecount="1" falsecount="1"/>
19
+ <line num="57" count="63" type="stmt"/>
20
+ <line num="58" count="63" type="stmt"/>
21
+ <line num="60" count="8" type="cond" truecount="2" falsecount="0"/>
22
+ <line num="62" count="14" type="stmt"/>
23
+ <line num="63" count="14" type="cond" truecount="1" falsecount="1"/>
24
+ <line num="64" count="14" type="cond" truecount="2" falsecount="0"/>
25
+ <line num="65" count="14" type="stmt"/>
26
+ <line num="69" count="7" type="cond" truecount="1" falsecount="1"/>
27
+ <line num="71" count="8" type="stmt"/>
28
+ <line num="72" count="8" type="cond" truecount="2" falsecount="0"/>
29
+ <line num="73" count="7" type="cond" truecount="1" falsecount="1"/>
30
+ <line num="74" count="7" type="stmt"/>
31
+ <line num="77" count="63" type="stmt"/>
32
+ <line num="83" count="65" type="stmt"/>
33
+ <line num="85" count="10" type="stmt"/>
34
+ <line num="86" count="10" type="stmt"/>
35
+ <line num="88" count="10" type="cond" truecount="4" falsecount="0"/>
36
+ <line num="89" count="10" type="stmt"/>
37
+ <line num="95" count="27" type="stmt"/>
38
+ <line num="118" count="65" type="stmt"/>
39
+ <line num="127" count="63" type="stmt"/>
40
+ <line num="129" count="5" type="cond" truecount="2" falsecount="0"/>
41
+ <line num="130" count="4" type="stmt"/>
42
+ <line num="131" count="4" type="stmt"/>
43
+ <line num="132" count="4" type="cond" truecount="2" falsecount="0"/>
44
+ <line num="133" count="5" type="stmt"/>
45
+ <line num="139" count="8" type="stmt"/>
46
+ <line num="153" count="63" type="stmt"/>
47
+ <line num="162" count="64" type="stmt"/>
48
+ <line num="165" count="99" type="stmt"/>
49
+ <line num="166" count="99" type="cond" truecount="2" falsecount="0"/>
50
+ <line num="167" count="99" type="cond" truecount="2" falsecount="0"/>
51
+ <line num="168" count="99" type="cond" truecount="2" falsecount="0"/>
52
+ <line num="169" count="99" type="cond" truecount="2" falsecount="0"/>
53
+ <line num="171" count="99" type="cond" truecount="2" falsecount="0"/>
54
+ <line num="173" count="94" type="cond" truecount="3" falsecount="0"/>
55
+ <line num="174" count="99" type="stmt"/>
56
+ <line num="204" count="64" type="stmt"/>
57
+ <line num="210" count="61" type="stmt"/>
58
+ <line num="211" count="61" type="cond" truecount="2" falsecount="0"/>
59
+ <line num="213" count="31" type="stmt"/>
60
+ <line num="234" count="7" type="stmt"/>
61
+ <line num="243" count="61" type="stmt"/>
62
+ <line num="244" count="61" type="cond" truecount="2" falsecount="0"/>
63
+ <line num="246" count="22" type="stmt"/>
64
+ <line num="247" count="22" type="stmt"/>
65
+ <line num="277" count="8" type="stmt"/>
66
+ <line num="286" count="10" type="stmt"/>
67
+ <line num="288" count="42" type="cond" truecount="2" falsecount="0"/>
68
+ <line num="289" count="42" type="cond" truecount="2" falsecount="0"/>
69
+ <line num="291" count="7" type="stmt"/>
70
+ <line num="294" count="10" type="stmt"/>
71
+ <line num="298" count="17" type="cond" truecount="2" falsecount="0"/>
72
+ <line num="300" count="5" type="stmt"/>
73
+ <line num="301" count="5" type="stmt"/>
74
+ <line num="303" count="5" type="stmt"/>
75
+ <line num="304" count="12" type="cond" truecount="2" falsecount="0"/>
76
+ <line num="305" count="7" type="stmt"/>
77
+ <line num="306" count="7" type="stmt"/>
78
+ <line num="307" count="7" type="stmt"/>
79
+ <line num="309" count="7" type="stmt"/>
80
+ <line num="310" count="7" type="cond" truecount="1" falsecount="1"/>
81
+ <line num="311" count="7" type="stmt"/>
82
+ <line num="312" count="7" type="stmt"/>
83
+ <line num="313" count="90" type="stmt"/>
84
+ <line num="314" count="7" type="stmt"/>
85
+ <line num="315" count="7" type="cond" truecount="1" falsecount="1"/>
86
+ <line num="318" count="5" type="stmt"/>
87
+ <line num="319" count="5" type="stmt"/>
88
+ <line num="321" count="75" type="stmt"/>
89
+ <line num="326" count="4" type="stmt"/>
90
+ <line num="327" count="4" type="stmt"/>
91
+ <line num="334" count="3" type="stmt"/>
92
+ <line num="338" count="12" type="stmt"/>
93
+ <line num="346" count="66" type="stmt"/>
94
+ <line num="347" count="66" type="cond" truecount="2" falsecount="0"/>
95
+ <line num="349" count="12" type="cond" truecount="2" falsecount="0"/>
96
+ <line num="350" count="10" type="stmt"/>
97
+ <line num="351" count="10" type="stmt"/>
98
+ <line num="352" count="10" type="stmt"/>
99
+ <line num="373" count="11" type="stmt"/>
100
+ <line num="382" count="5" type="stmt"/>
101
+ <line num="384" count="5" type="cond" truecount="2" falsecount="0"/>
102
+ <line num="385" count="4" type="cond" truecount="2" falsecount="0"/>
103
+ <line num="386" count="3" type="cond" truecount="2" falsecount="0"/>
104
+ <line num="387" count="5" type="cond" truecount="2" falsecount="0"/>
105
+ <line num="388" count="5" type="cond" truecount="1" falsecount="1"/>
106
+ <line num="389" count="3" type="cond" truecount="2" falsecount="0"/>
107
+ <line num="390" count="1" type="stmt"/>
108
+ <line num="420" count="5" type="stmt"/>
109
+ <line num="430" count="63" type="stmt"/>
110
+ <line num="432" count="13" type="cond" truecount="1" falsecount="1"/>
111
+ <line num="433" count="13" type="cond" truecount="1" falsecount="1"/>
112
+ <line num="434" count="13" type="cond" truecount="2" falsecount="0"/>
113
+ <line num="435" count="13" type="cond" truecount="2" falsecount="0"/>
114
+ <line num="436" count="13" type="stmt"/>
115
+ <line num="437" count="13" type="stmt"/>
116
+ <line num="439" count="20" type="cond" truecount="2" falsecount="2"/>
117
+ <line num="440" count="20" type="cond" truecount="4" falsecount="0"/>
118
+ <line num="442" count="14" type="cond" truecount="3" falsecount="1"/>
119
+ <line num="443" count="14" type="stmt"/>
120
+ <line num="474" count="63" type="stmt"/>
121
+ <line num="483" count="62" type="stmt"/>
122
+ <line num="485" count="9" type="cond" truecount="1" falsecount="1"/>
123
+ <line num="486" count="9" type="cond" truecount="2" falsecount="0"/>
124
+ <line num="487" count="9" type="stmt"/>
125
+ <line num="488" count="9" type="stmt"/>
126
+ <line num="489" count="9" type="cond" truecount="2" falsecount="0"/>
127
+ <line num="492" count="11" type="stmt"/>
128
+ <line num="493" count="11" type="cond" truecount="2" falsecount="0"/>
129
+ <line num="494" count="11" type="cond" truecount="1" falsecount="1"/>
130
+ <line num="496" count="11" type="cond" truecount="4" falsecount="0"/>
131
+ <line num="498" count="7" type="stmt"/>
132
+ <line num="523" count="2" type="stmt"/>
133
+ <line num="545" count="2" type="stmt"/>
134
+ <line num="568" count="62" type="stmt"/>
135
+ <line num="574" count="154" type="stmt"/>
136
+ <line num="575" count="154" type="cond" truecount="2" falsecount="0"/>
137
+ <line num="576" count="139" type="stmt"/>
138
+ <line num="583" count="63" type="stmt"/>
139
+ <line num="584" count="63" type="stmt"/>
140
+ <line num="587" count="270" type="cond" truecount="2" falsecount="0"/>
141
+ <line num="588" count="146" type="cond" truecount="2" falsecount="0"/>
142
+ <line num="589" count="270" type="cond" truecount="2" falsecount="0"/>
143
+ <line num="590" count="270" type="stmt"/>
144
+ <line num="591" count="270" type="stmt"/>
145
+ <line num="592" count="270" type="stmt"/>
146
+ <line num="596" count="147" type="cond" truecount="2" falsecount="0"/>
147
+ <line num="597" count="146" type="cond" truecount="2" falsecount="0"/>
148
+ <line num="598" count="147" type="stmt"/>
149
+ <line num="601" count="124" type="cond" truecount="3" falsecount="1"/>
150
+ <line num="602" count="124" type="stmt"/>
151
+ <line num="603" count="124" type="stmt"/>
152
+ <line num="606" count="5" type="stmt"/>
153
+ <line num="607" count="5" type="stmt"/>
154
+ <line num="631" count="63" type="stmt"/>
155
+ <line num="640" count="63" type="stmt"/>
156
+ <line num="643" count="174" type="cond" truecount="1" falsecount="1"/>
157
+ <line num="644" count="174" type="cond" truecount="2" falsecount="0"/>
158
+ <line num="645" count="174" type="cond" truecount="2" falsecount="0"/>
159
+ <line num="646" count="174" type="stmt"/>
160
+ <line num="649" count="5" type="stmt"/>
161
+ <line num="672" count="63" type="stmt"/>
162
+ <line num="682" count="62" type="stmt"/>
163
+ <line num="685" count="205" type="cond" truecount="1" falsecount="1"/>
164
+ <line num="686" count="205" type="cond" truecount="2" falsecount="0"/>
165
+ <line num="687" count="205" type="cond" truecount="2" falsecount="0"/>
166
+ <line num="690" count="3" type="stmt"/>
167
+ <line num="713" count="2" type="stmt"/>
168
+ <line num="736" count="62" type="stmt"/>
169
+ <line num="744" count="62" type="stmt"/>
170
+ <line num="747" count="122" type="cond" truecount="2" falsecount="0"/>
171
+ <line num="748" count="121" type="cond" truecount="2" falsecount="0"/>
172
+ <line num="750" count="118" type="cond" truecount="2" falsecount="0"/>
173
+ <line num="751" count="122" type="cond" truecount="2" falsecount="0"/>
174
+ <line num="754" count="13" type="stmt"/>
175
+ <line num="777" count="62" type="stmt"/>
176
+ <line num="785" count="63" type="stmt"/>
177
+ <line num="787" count="63" type="stmt"/>
178
+ <line num="789" count="133" type="cond" truecount="2" falsecount="0"/>
179
+ <line num="794" count="89" type="stmt"/>
180
+ <line num="799" count="63" type="stmt"/>
181
+ <line num="800" count="63" type="stmt"/>
182
+ <line num="802" count="127" type="stmt"/>
183
+ <line num="803" count="127" type="cond" truecount="1" falsecount="1"/>
184
+ <line num="804" count="127" type="stmt"/>
185
+ <line num="806" count="100" type="cond" truecount="4" falsecount="0"/>
186
+ <line num="811" count="133" type="cond" truecount="5" falsecount="0"/>
187
+ <line num="812" count="6" type="stmt"/>
188
+ <line num="834" count="63" type="stmt"/>
189
+ <line num="844" count="63" type="stmt"/>
190
+ <line num="846" count="63" type="stmt"/>
191
+ <line num="849" count="4" type="stmt"/>
192
+ <line num="850" count="4" type="cond" truecount="4" falsecount="0"/>
193
+ <line num="856" count="2" type="stmt"/>
194
+ <line num="881" count="2" type="stmt"/>
195
+ <line num="903" count="63" type="stmt"/>
196
+ <line num="911" count="63" type="stmt"/>
197
+ <line num="914" count="125" type="cond" truecount="1" falsecount="1"/>
198
+ <line num="916" count="125" type="stmt"/>
199
+ <line num="917" count="125" type="cond" truecount="2" falsecount="0"/>
200
+ <line num="918" count="8" type="stmt"/>
201
+ <line num="921" count="4" type="stmt"/>
202
+ <line num="922" count="4" type="cond" truecount="1" falsecount="1"/>
203
+ <line num="923" count="4" type="cond" truecount="2" falsecount="0"/>
204
+ <line num="925" count="3" type="stmt"/>
205
+ <line num="927" count="2" type="cond" truecount="2" falsecount="0"/>
206
+ <line num="928" count="2" type="stmt"/>
207
+ <line num="929" count="2" type="stmt"/>
208
+ <line num="953" count="63" type="stmt"/>
209
+ <line num="963" count="14" type="cond" truecount="2" falsecount="0"/>
210
+ <line num="964" count="13" type="stmt"/>
211
+ <line num="966" count="13" type="stmt"/>
212
+ <line num="967" count="13" type="cond" truecount="4" falsecount="0"/>
213
+ <line num="969" count="12" type="stmt"/>
214
+ <line num="971" count="47" type="stmt"/>
215
+ <line num="972" count="47" type="cond" truecount="1" falsecount="1"/>
216
+ <line num="973" count="47" type="stmt"/>
217
+ <line num="975" count="3" type="stmt"/>
218
+ <line num="979" count="12" type="stmt"/>
219
+ <line num="986" count="60" type="stmt"/>
220
+ <line num="989" count="7" type="cond" truecount="1" falsecount="1"/>
221
+ <line num="990" count="7" type="cond" truecount="1" falsecount="1"/>
222
+ <line num="993" count="1" type="stmt"/>
223
+ <line num="1015" count="7" type="stmt"/>
224
+ <line num="1017" count="0" type="stmt"/>
225
+ <line num="1039" count="60" type="stmt"/>
226
+ <line num="1050" count="61" type="stmt"/>
227
+ <line num="1053" count="62" type="cond" truecount="2" falsecount="0"/>
228
+ <line num="1054" count="104" type="stmt"/>
229
+ <line num="1055" count="60" type="cond" truecount="2" falsecount="0"/>
230
+ <line num="1056" count="62" type="stmt"/>
231
+ <line num="1057" count="62" type="cond" truecount="2" falsecount="0"/>
232
+ <line num="1058" count="60" type="cond" truecount="2" falsecount="0"/>
233
+ <line num="1059" count="60" type="cond" truecount="2" falsecount="0"/>
234
+ <line num="1061" count="2" type="stmt"/>
235
+ <line num="1093" count="61" type="stmt"/>
236
+ <line num="1101" count="60" type="stmt"/>
237
+ <line num="1102" count="71" type="stmt"/>
238
+ <line num="1103" count="60" type="cond" truecount="2" falsecount="0"/>
239
+ <line num="1105" count="30" type="stmt"/>
240
+ <line num="1107" count="69" type="stmt"/>
241
+ <line num="1108" count="69" type="cond" truecount="2" falsecount="0"/>
242
+ <line num="1109" count="69" type="stmt"/>
243
+ <line num="1112" count="30" type="stmt"/>
244
+ <line num="1113" count="32" type="stmt"/>
245
+ <line num="1114" count="32" type="cond" truecount="2" falsecount="0"/>
246
+ <line num="1115" count="0" type="stmt"/>
247
+ <line num="1118" count="2" type="stmt"/>
248
+ <line num="1119" count="2" type="cond" truecount="2" falsecount="2"/>
249
+ <line num="1120" count="2" type="stmt"/>
250
+ <line num="1121" count="36" type="stmt"/>
251
+ <line num="1124" count="2" type="cond" truecount="1" falsecount="1"/>
252
+ <line num="1126" count="2" type="stmt"/>
253
+ <line num="1164" count="30" type="stmt"/>
254
+ <line num="1171" count="60" type="stmt"/>
255
+ <line num="1174" count="61" type="cond" truecount="2" falsecount="0"/>
256
+ <line num="1177" count="1" type="stmt"/>
257
+ <line num="1211" count="60" type="stmt"/>
258
+ <line num="1217" count="133" type="stmt"/>
259
+ <line num="1220" count="1410" type="stmt"/>
260
+ <line num="1221" count="1410" type="stmt"/>
261
+ <line num="1233" count="21" type="stmt"/>
262
+ <line num="1234" count="21" type="stmt"/>
263
+ <line num="1235" count="21" type="stmt"/>
264
+ <line num="1237" count="1389" type="stmt"/>
265
+ <line num="1246" count="2" type="stmt"/>
266
+ <line num="1250" count="0" type="stmt"/>
267
+ <line num="1251" count="0" type="stmt"/>
268
+ <line num="1255" count="21" type="stmt"/>
269
+ <line num="1256" count="47" type="stmt"/>
270
+ <line num="1257" count="21" type="stmt"/>
271
+ <line num="1260" count="1389" type="stmt"/>
272
+ <line num="1261" count="1389" type="stmt"/>
273
+ <line num="1264" count="133" type="stmt"/>
274
+ <line num="1265" count="133" type="stmt"/>
275
+ <line num="1272" count="61" type="stmt"/>
276
+ <line num="1275" count="62" type="cond" truecount="2" falsecount="0"/>
277
+ <line num="1278" count="2" type="stmt"/>
278
+ <line num="1311" count="61" type="stmt"/>
279
+ <line num="1320" count="6" type="cond" truecount="2" falsecount="0"/>
280
+ <line num="1322" count="5" type="stmt"/>
281
+ <line num="1325" count="19" type="stmt"/>
282
+ <line num="1326" count="33" type="cond" truecount="2" falsecount="0"/>
283
+ <line num="1328" count="1" type="stmt"/>
284
+ <line num="1332" count="13" type="cond" truecount="1" falsecount="1"/>
285
+ <line num="1333" count="13" type="stmt"/>
286
+ <line num="1334" count="13" type="cond" truecount="2" falsecount="0"/>
287
+ <line num="1337" count="6" type="cond" truecount="3" falsecount="1"/>
288
+ <line num="1338" count="6" type="stmt"/>
289
+ <line num="1339" count="6" type="cond" truecount="1" falsecount="1"/>
290
+ <line num="1342" count="4" type="stmt"/>
291
+ <line num="1343" count="4" type="stmt"/>
292
+ <line num="1367" count="5" type="stmt"/>
293
+ <line num="1376" count="64" type="stmt"/>
294
+ <line num="1379" count="128" type="cond" truecount="4" falsecount="0"/>
295
+ <line num="1381" count="124" type="stmt"/>
296
+ <line num="1382" count="124" type="cond" truecount="4" falsecount="0"/>
297
+ <line num="1384" count="17" type="stmt"/>
298
+ <line num="1386" count="4" type="stmt"/>
299
+ <line num="1389" count="11" type="cond" truecount="1" falsecount="1"/>
300
+ <line num="1390" count="11" type="cond" truecount="1" falsecount="1"/>
301
+ <line num="1391" count="11" type="cond" truecount="2" falsecount="0"/>
302
+ <line num="1392" count="11" type="stmt"/>
303
+ <line num="1396" count="4" type="stmt"/>
304
+ <line num="1397" count="4" type="cond" truecount="2" falsecount="0"/>
305
+ <line num="1399" count="3" type="stmt"/>
306
+ <line num="1400" count="9" type="stmt"/>
307
+ <line num="1403" count="7" type="stmt"/>
308
+ <line num="1404" count="11" type="cond" truecount="2" falsecount="0"/>
309
+ <line num="1405" count="11" type="stmt"/>
310
+ <line num="1406" count="7" type="stmt"/>
311
+ <line num="1407" count="11" type="stmt"/>
312
+ <line num="1408" count="4" type="stmt"/>
313
+ <line num="1409" count="4" type="stmt"/>
314
+ <line num="1414" count="3" type="stmt"/>
315
+ <line num="1415" count="3" type="stmt"/>
316
+ <line num="1417" count="9" type="cond" truecount="2" falsecount="0"/>
317
+ <line num="1418" count="6" type="stmt"/>
318
+ <line num="1419" count="6" type="stmt"/>
319
+ <line num="1421" count="9" type="stmt"/>
320
+ <line num="1422" count="9" type="cond" truecount="1" falsecount="1"/>
321
+ <line num="1423" count="9" type="stmt"/>
322
+ <line num="1425" count="6" type="cond" truecount="2" falsecount="0"/>
323
+ <line num="1431" count="2" type="stmt"/>
324
+ <line num="1455" count="64" type="stmt"/>
325
+ <line num="1466" count="104" type="stmt"/>
326
+ <line num="1468" count="33" type="stmt"/>
327
+ <line num="1471" count="104" type="stmt"/>
328
+ <line num="1473" count="18" type="stmt"/>
329
+ <line num="1476" count="104" type="stmt"/>
330
+ <line num="1478" count="260" type="cond" truecount="2" falsecount="0"/>
331
+ <line num="1480" count="259" type="cond" truecount="2" falsecount="0"/>
332
+ <line num="1481" count="260" type="cond" truecount="2" falsecount="0"/>
333
+ <line num="1482" count="260" type="stmt"/>
334
+ <line num="1483" count="260" type="cond" truecount="2" falsecount="0"/>
335
+ <line num="1484" count="260" type="cond" truecount="2" falsecount="0"/>
336
+ <line num="1485" count="260" type="stmt"/>
337
+ <line num="1486" count="260" type="stmt"/>
338
+ <line num="1488" count="260" type="stmt"/>
339
+ <line num="1498" count="250" type="stmt"/>
340
+ <line num="1502" count="711" type="stmt"/>
341
+ <line num="1503" count="104" type="stmt"/>
342
+ <line num="1512" count="64" type="stmt"/>
343
+ <line num="1514" count="65" type="cond" truecount="2" falsecount="0"/>
344
+ <line num="1516" count="98" type="cond" truecount="4" falsecount="0"/>
345
+ <line num="1517" count="3" type="stmt"/>
346
+ <line num="1539" count="64" type="stmt"/>
347
+ <line num="1547" count="62" type="stmt"/>
348
+ <line num="1549" count="63" type="cond" truecount="2" falsecount="0"/>
349
+ <line num="1550" count="60" type="cond" truecount="4" falsecount="0"/>
350
+ <line num="1552" count="3" type="stmt"/>
351
+ <line num="1574" count="62" type="stmt"/>
352
+ <line num="1582" count="61" type="stmt"/>
353
+ <line num="1584" count="62" type="cond" truecount="2" falsecount="0"/>
354
+ <line num="1585" count="59" type="cond" truecount="4" falsecount="0"/>
355
+ <line num="1587" count="1" type="stmt"/>
356
+ <line num="1609" count="61" type="stmt"/>
357
+ <line num="1620" count="63" type="stmt"/>
358
+ <line num="1622" count="64" type="cond" truecount="2" falsecount="0"/>
359
+ <line num="1623" count="62" type="cond" truecount="4" falsecount="0"/>
360
+ <line num="1624" count="4" type="stmt"/>
361
+ <line num="1646" count="63" type="stmt"/>
362
+ <line num="1656" count="62" type="stmt"/>
363
+ <line num="1658" count="63" type="cond" truecount="2" falsecount="0"/>
364
+ <line num="1660" count="97" type="cond" truecount="2" falsecount="0"/>
365
+ <line num="1661" count="4" type="stmt"/>
366
+ <line num="1662" count="4" type="cond" truecount="4" falsecount="0"/>
367
+ <line num="1663" count="3" type="stmt"/>
368
+ <line num="1664" count="3" type="cond" truecount="2" falsecount="0"/>
369
+ <line num="1665" count="3" type="cond" truecount="2" falsecount="0"/>
370
+ <line num="1666" count="3" type="stmt"/>
371
+ <line num="1688" count="62" type="stmt"/>
372
+ <line num="1697" count="63" type="stmt"/>
373
+ <line num="1699" count="64" type="cond" truecount="2" falsecount="0"/>
374
+ <line num="1701" count="98" type="cond" truecount="4" falsecount="0"/>
375
+ <line num="1702" count="4" type="stmt"/>
376
+ <line num="1725" count="63" type="stmt"/>
377
+ <line num="1731" count="7" type="cond" truecount="2" falsecount="0"/>
378
+ <line num="1732" count="17" type="stmt"/>
379
+ <line num="1733" count="6" type="stmt"/>
380
+ <line num="1741" count="64" type="stmt"/>
381
+ <line num="1744" count="139" type="cond" truecount="2" falsecount="0"/>
382
+ <line num="1746" count="138" type="stmt"/>
383
+ <line num="1747" count="138" type="cond" truecount="4" falsecount="0"/>
384
+ <line num="1749" count="11" type="cond" truecount="2" falsecount="0"/>
385
+ <line num="1750" count="139" type="cond" truecount="2" falsecount="0"/>
386
+ <line num="1751" count="139" type="cond" truecount="2" falsecount="0"/>
387
+ <line num="1753" count="3" type="stmt"/>
388
+ <line num="1754" count="3" type="stmt"/>
389
+ <line num="1755" count="3" type="stmt"/>
390
+ <line num="1757" count="3" type="cond" truecount="1" falsecount="1"/>
391
+ <line num="1759" count="3" type="cond" truecount="2" falsecount="0"/>
392
+ <line num="1760" count="139" type="cond" truecount="2" falsecount="0"/>
393
+ <line num="1762" count="139" type="stmt"/>
394
+ <line num="1763" count="139" type="cond" truecount="2" falsecount="0"/>
395
+ <line num="1764" count="1" type="cond" truecount="1" falsecount="1"/>
396
+ <line num="1765" count="0" type="stmt"/>
397
+ <line num="1767" count="3" type="stmt"/>
398
+ <line num="1805" count="64" type="stmt"/>
399
+ <line num="1818" count="67" type="stmt"/>
400
+ <line num="1819" count="67" type="stmt"/>
401
+ <line num="1822" count="143" type="stmt"/>
402
+ <line num="1823" count="143" type="cond" truecount="2" falsecount="0"/>
403
+ <line num="1827" count="146" type="cond" truecount="2" falsecount="0"/>
404
+ <line num="1828" count="144" type="stmt"/>
405
+ <line num="1829" count="144" type="cond" truecount="2" falsecount="0"/>
406
+ <line num="1830" count="143" type="cond" truecount="2" falsecount="0"/>
407
+ <line num="1832" count="142" type="stmt"/>
408
+ <line num="1833" count="142" type="stmt"/>
409
+ <line num="1857" count="143" type="stmt"/>
410
+ <line num="1858" count="143" type="stmt"/>
411
+ <line num="1859" count="143" type="cond" truecount="2" falsecount="0"/>
412
+ <line num="1860" count="143" type="cond" truecount="2" falsecount="0"/>
413
+ <line num="1861" count="143" type="stmt"/>
414
+ <line num="1865" count="3" type="cond" truecount="1" falsecount="1"/>
415
+ <line num="1866" count="3" type="stmt"/>
416
+ <line num="1867" count="3" type="stmt"/>
417
+ <line num="1870" count="67" type="stmt"/>
418
+ <line num="1871" count="120" type="stmt"/>
419
+ <line num="1872" count="120" type="cond" truecount="2" falsecount="2"/>
420
+ <line num="1875" count="67" type="stmt"/>
421
+ <line num="1883" count="63" type="stmt"/>
422
+ <line num="1886" count="11" type="cond" truecount="2" falsecount="0"/>
423
+ <line num="1887" count="10" type="cond" truecount="2" falsecount="0"/>
424
+ <line num="1889" count="32" type="cond" truecount="2" falsecount="0"/>
425
+ <line num="1890" count="9" type="cond" truecount="2" falsecount="0"/>
426
+ <line num="1892" count="3" type="stmt"/>
427
+ <line num="1894" count="25" type="cond" truecount="1" falsecount="1"/>
428
+ <line num="1895" count="25" type="cond" truecount="2" falsecount="0"/>
429
+ <line num="1899" count="9" type="stmt"/>
430
+ <line num="1901" count="2" type="stmt"/>
431
+ <line num="1902" count="2" type="stmt"/>
432
+ <line num="1943" count="63" type="stmt"/>
433
+ <line num="1951" count="58" type="stmt"/>
434
+ <line num="1954" count="59" type="cond" truecount="2" falsecount="0"/>
435
+ <line num="1955" count="57" type="stmt"/>
436
+ <line num="1956" count="57" type="cond" truecount="2" falsecount="0"/>
437
+ <line num="1958" count="2" type="stmt"/>
438
+ <line num="1959" count="2" type="cond" truecount="1" falsecount="1"/>
439
+ <line num="1961" count="2" type="stmt"/>
440
+ <line num="1962" count="2" type="cond" truecount="1" falsecount="1"/>
441
+ <line num="1963" count="2" type="cond" truecount="2" falsecount="0"/>
442
+ <line num="1964" count="2" type="cond" truecount="2" falsecount="0"/>
443
+ <line num="1965" count="8" type="stmt"/>
444
+ <line num="1966" count="2" type="stmt"/>
445
+ <line num="1968" count="2" type="stmt"/>
446
+ <line num="1990" count="58" type="stmt"/>
447
+ <line num="1998" count="58" type="stmt"/>
448
+ <line num="2001" count="59" type="cond" truecount="2" falsecount="0"/>
449
+ <line num="2002" count="57" type="cond" truecount="2" falsecount="0"/>
450
+ <line num="2005" count="1" type="cond" truecount="1" falsecount="3"/>
451
+ <line num="2006" count="1" type="stmt"/>
452
+ <line num="2038" count="58" type="stmt"/>
453
+ <line num="2046" count="58" type="stmt"/>
454
+ <line num="2049" count="59" type="cond" truecount="2" falsecount="0"/>
455
+ <line num="2050" count="57" type="cond" truecount="2" falsecount="0"/>
456
+ <line num="2053" count="1" type="stmt"/>
457
+ <line num="2076" count="58" type="stmt"/>
458
+ <line num="2082" count="58" type="stmt"/>
459
+ <line num="2084" count="59" type="cond" truecount="2" falsecount="0"/>
460
+ <line num="2086" count="1" type="stmt"/>
461
+ <line num="2117" count="58" type="stmt"/>
462
+ <line num="2123" count="58" type="stmt"/>
463
+ <line num="2125" count="59" type="cond" truecount="2" falsecount="0"/>
464
+ <line num="2127" count="1" type="stmt"/>
465
+ <line num="2157" count="58" type="stmt"/>
466
+ <line num="2163" count="58" type="stmt"/>
467
+ <line num="2165" count="59" type="cond" truecount="2" falsecount="0"/>
468
+ <line num="2168" count="1" type="stmt"/>
469
+ <line num="2190" count="58" type="stmt"/>
470
+ <line num="2196" count="58" type="stmt"/>
471
+ <line num="2198" count="59" type="cond" truecount="2" falsecount="0"/>
472
+ <line num="2199" count="57" type="cond" truecount="2" falsecount="0"/>
473
+ <line num="2200" count="59" type="cond" truecount="2" falsecount="0"/>
474
+ <line num="2202" count="1" type="stmt"/>
475
+ <line num="2224" count="58" type="stmt"/>
476
+ <line num="2230" count="58" type="stmt"/>
477
+ <line num="2232" count="59" type="cond" truecount="2" falsecount="0"/>
478
+ <line num="2235" count="1" type="stmt"/>
479
+ <line num="2258" count="58" type="stmt"/>
480
+ <line num="2267" count="58" type="stmt"/>
481
+ <line num="2269" count="58" type="stmt"/>
482
+ <line num="2272" count="0" type="cond" truecount="0" falsecount="2"/>
483
+ <line num="2276" count="58" type="stmt"/>
484
+ <line num="2278" count="0" type="stmt"/>
485
+ <line num="2279" count="0" type="cond" truecount="0" falsecount="2"/>
486
+ <line num="2280" count="0" type="stmt"/>
487
+ <line num="2284" count="0" type="cond" truecount="0" falsecount="4"/>
488
+ <line num="2286" count="0" type="stmt"/>
489
+ <line num="2287" count="0" type="stmt"/>
490
+ <line num="2288" count="0" type="stmt"/>
491
+ <line num="2289" count="0" type="stmt"/>
492
+ <line num="2290" count="0" type="cond" truecount="0" falsecount="2"/>
493
+ <line num="2291" count="0" type="cond" truecount="0" falsecount="4"/>
494
+ <line num="2293" count="0" type="stmt"/>
495
+ <line num="2294" count="0" type="cond" truecount="0" falsecount="2"/>
496
+ <line num="2296" count="0" type="stmt"/>
497
+ <line num="2298" count="0" type="stmt"/>
498
+ <line num="2323" count="58" type="stmt"/>
499
+ <line num="2327" count="0" type="stmt"/>
500
+ <line num="2338" count="0" type="stmt"/>
501
+ <line num="2340" count="0" type="stmt"/>
502
+ <line num="2341" count="0" type="stmt"/>
503
+ <line num="2343" count="0" type="stmt"/>
504
+ <line num="2354" count="58" type="stmt"/>
505
+ <line num="2356" count="58" type="stmt"/>
506
+ <line num="2358" count="18" type="stmt"/>
507
+ <line num="2360" count="58" type="stmt"/>
508
+ <line num="2362" count="9" type="stmt"/>
509
+ <line num="2364" count="58" type="stmt"/>
510
+ <line num="2365" count="97" type="stmt"/>
511
+ <line num="2368" count="59" type="cond" truecount="2" falsecount="0"/>
512
+ <line num="2369" count="57" type="stmt"/>
513
+ <line num="2370" count="57" type="cond" truecount="4" falsecount="0"/>
514
+ <line num="2372" count="4" type="stmt"/>
515
+ <line num="2373" count="6" type="stmt"/>
516
+ <line num="2375" count="4" type="cond" truecount="2" falsecount="0"/>
517
+ <line num="2376" count="59" type="stmt"/>
518
+ <line num="2377" count="59" type="cond" truecount="2" falsecount="0"/>
519
+ <line num="2378" count="2" type="cond" truecount="2" falsecount="0"/>
520
+ <line num="2379" count="4" type="cond" truecount="2" falsecount="0"/>
521
+ <line num="2380" count="4" type="cond" truecount="1" falsecount="1"/>
522
+ <line num="2382" count="4" type="stmt"/>
523
+ <line num="2383" count="4" type="cond" truecount="2" falsecount="0"/>
524
+ <line num="2385" count="4" type="stmt"/>
525
+ <line num="2386" count="4" type="cond" truecount="2" falsecount="0"/>
526
+ <line num="2389" count="3" type="cond" truecount="2" falsecount="0"/>
527
+ <line num="2394" count="59" type="stmt"/>
528
+ <line num="2396" count="59" type="cond" truecount="2" falsecount="0"/>
529
+ <line num="2397" count="1" type="cond" truecount="1" falsecount="1"/>
530
+ <line num="2400" count="59" type="stmt"/>
531
+ <line num="2401" count="59" type="stmt"/>
532
+ <line num="2402" count="59" type="cond" truecount="2" falsecount="0"/>
533
+ <line num="2403" count="3" type="cond" truecount="2" falsecount="0"/>
534
+ <line num="2404" count="3" type="cond" truecount="1" falsecount="1"/>
535
+ <line num="2405" count="3" type="cond" truecount="1" falsecount="1"/>
536
+ <line num="2406" count="3" type="cond" truecount="1" falsecount="1"/>
537
+ <line num="2408" count="59" type="stmt"/>
538
+ <line num="2409" count="59" type="stmt"/>
539
+ <line num="2441" count="58" type="stmt"/>
540
+ <line num="2449" count="64" type="stmt"/>
541
+ <line num="2452" count="12" type="cond" truecount="2" falsecount="0"/>
542
+ <line num="2455" count="16" type="cond" truecount="2" falsecount="0"/>
543
+ <line num="2456" count="7" type="cond" truecount="2" falsecount="0"/>
544
+ <line num="2457" count="6" type="cond" truecount="2" falsecount="0"/>
545
+ <line num="2459" count="5" type="stmt"/>
546
+ <line num="2460" count="5" type="cond" truecount="2" falsecount="0"/>
547
+ <line num="2464" count="16" type="stmt"/>
548
+ <line num="2487" count="64" type="stmt"/>
549
+ <line num="2493" count="63" type="stmt"/>
550
+ <line num="2496" count="11" type="cond" truecount="2" falsecount="0"/>
551
+ <line num="2498" count="17" type="cond" truecount="2" falsecount="0"/>
552
+ <line num="2499" count="10" type="cond" truecount="2" falsecount="0"/>
553
+ <line num="2501" count="5" type="stmt"/>
554
+ <line num="2502" count="4" type="cond" truecount="2" falsecount="0"/>
555
+ <line num="2505" count="5" type="stmt"/>
556
+ <line num="2532" count="63" type="stmt"/>
557
+ <line num="2538" count="64" type="stmt"/>
558
+ <line num="2541" count="12" type="cond" truecount="2" falsecount="0"/>
559
+ <line num="2543" count="12" type="cond" truecount="2" falsecount="0"/>
560
+ <line num="2544" count="11" type="cond" truecount="2" falsecount="0"/>
561
+ <line num="2547" count="5" type="cond" truecount="1" falsecount="1"/>
562
+ <line num="2551" count="5" type="cond" truecount="1" falsecount="1"/>
563
+ <line num="2552" count="1" type="cond" truecount="2" falsecount="0"/>
564
+ <line num="2555" count="5" type="cond" truecount="4" falsecount="0"/>
565
+ <line num="2557" count="5" type="stmt"/>
566
+ <line num="2580" count="64" type="stmt"/>
567
+ </file>
568
+ <file name="ast-helpers.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/ast-helpers.ts">
569
+ <metrics statements="10" coveredstatements="7" conditionals="32" coveredconditionals="29" methods="0" coveredmethods="0"/>
570
+ <line num="4" count="3586" type="cond" truecount="7" falsecount="0"/>
571
+ <line num="14" count="157" type="cond" truecount="5" falsecount="0"/>
572
+ <line num="16" count="83" type="stmt"/>
573
+ <line num="18" count="4" type="stmt"/>
574
+ <line num="22" count="2" type="stmt"/>
575
+ <line num="26" count="1" type="stmt"/>
576
+ <line num="30" count="0" type="stmt"/>
577
+ <line num="34" count="0" type="stmt"/>
578
+ <line num="38" count="0" type="stmt"/>
579
+ <line num="41" count="76" type="stmt"/>
580
+ </file>
581
+ <file name="ast-search.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/ast-search.ts">
582
+ <metrics statements="153" coveredstatements="120" conditionals="66" coveredconditionals="49" methods="4" coveredmethods="2"/>
583
+ <line num="60" count="1" type="stmt"/>
584
+ <line num="191" count="7" type="stmt"/>
585
+ <line num="192" count="7" type="cond" truecount="3" falsecount="0"/>
586
+ <line num="198" count="5" type="stmt"/>
587
+ <line num="202" count="5" type="stmt"/>
588
+ <line num="204" count="0" type="stmt"/>
589
+ <line num="206" count="7" type="stmt"/>
590
+ <line num="208" count="12" type="cond" truecount="2" falsecount="0"/>
591
+ <line num="209" count="11" type="cond" truecount="1" falsecount="1"/>
592
+ <line num="210" count="11" type="stmt"/>
593
+ <line num="211" count="0" type="stmt"/>
594
+ <line num="212" count="11" type="cond" truecount="1" falsecount="1"/>
595
+ <line num="213" count="11" type="cond" truecount="2" falsecount="0"/>
596
+ <line num="214" count="10" type="stmt"/>
597
+ <line num="215" count="10" type="cond" truecount="2" falsecount="0"/>
598
+ <line num="216" count="9" type="cond" truecount="4" falsecount="0"/>
599
+ <line num="217" count="7" type="stmt"/>
600
+ <line num="220" count="5" type="stmt"/>
601
+ <line num="221" count="5" type="stmt"/>
602
+ <line num="231" count="1" type="stmt"/>
603
+ <line num="233" count="0" type="stmt"/>
604
+ <line num="237" count="0" type="stmt"/>
605
+ <line num="240" count="25" type="stmt"/>
606
+ <line num="247" count="19" type="stmt"/>
607
+ <line num="250" count="19" type="stmt"/>
608
+ <line num="251" count="19" type="stmt"/>
609
+ <line num="253" count="10" type="stmt"/>
610
+ <line num="254" count="10" type="stmt"/>
611
+ <line num="255" count="10" type="stmt"/>
612
+ <line num="257" count="20" type="stmt"/>
613
+ <line num="261" count="19" type="stmt"/>
614
+ <line num="263" count="11" type="stmt"/>
615
+ <line num="264" count="11" type="cond" truecount="1" falsecount="1"/>
616
+ <line num="265" count="11" type="stmt"/>
617
+ <line num="266" count="11" type="cond" truecount="1" falsecount="1"/>
618
+ <line num="269" count="19" type="stmt"/>
619
+ <line num="273" count="37" type="stmt"/>
620
+ <line num="274" count="37" type="stmt"/>
621
+ <line num="284" count="19" type="stmt"/>
622
+ <line num="285" count="19" type="cond" truecount="1" falsecount="1"/>
623
+ <line num="287" count="37" type="stmt"/>
624
+ <line num="297" count="26" type="stmt"/>
625
+ <line num="298" count="26" type="stmt"/>
626
+ <line num="301" count="26" type="stmt"/>
627
+ <line num="302" count="26" type="stmt"/>
628
+ <line num="304" count="0" type="stmt"/>
629
+ <line num="306" count="26" type="stmt"/>
630
+ <line num="308" count="38" type="cond" truecount="2" falsecount="0"/>
631
+ <line num="309" count="37" type="stmt"/>
632
+ <line num="311" count="26" type="stmt"/>
633
+ <line num="318" count="9" type="stmt"/>
634
+ <line num="321" count="2" type="stmt"/>
635
+ <line num="323" count="1" type="stmt"/>
636
+ <line num="324" count="1" type="stmt"/>
637
+ <line num="326" count="1" type="stmt"/>
638
+ <line num="327" count="1" type="stmt"/>
639
+ <line num="328" count="1" type="stmt"/>
640
+ <line num="330" count="0" type="stmt"/>
641
+ <line num="331" count="0" type="stmt"/>
642
+ <line num="332" count="0" type="stmt"/>
643
+ <line num="334" count="1" type="stmt"/>
644
+ <line num="335" count="1" type="stmt"/>
645
+ <line num="336" count="1" type="stmt"/>
646
+ <line num="338" count="5" type="stmt"/>
647
+ <line num="339" count="5" type="stmt"/>
648
+ <line num="340" count="5" type="stmt"/>
649
+ <line num="341" count="5" type="stmt"/>
650
+ <line num="343" count="1" type="stmt"/>
651
+ <line num="346" count="7" type="stmt"/>
652
+ <line num="347" count="7" type="stmt"/>
653
+ <line num="348" count="7" type="cond" truecount="2" falsecount="0"/>
654
+ <line num="351" count="10" type="cond" truecount="2" falsecount="0"/>
655
+ <line num="354" count="9" type="stmt"/>
656
+ <line num="356" count="0" type="stmt"/>
657
+ <line num="358" count="9" type="stmt"/>
658
+ <line num="359" count="9" type="stmt"/>
659
+ <line num="360" count="9" type="stmt"/>
660
+ <line num="362" count="8" type="stmt"/>
661
+ <line num="363" count="8" type="stmt"/>
662
+ <line num="364" count="8" type="cond" truecount="2" falsecount="0"/>
663
+ <line num="368" count="7" type="stmt"/>
664
+ <line num="375" count="7" type="cond" truecount="2" falsecount="0"/>
665
+ <line num="376" count="7" type="stmt"/>
666
+ <line num="387" count="23" type="stmt"/>
667
+ <line num="402" count="23" type="stmt"/>
668
+ <line num="404" count="23" type="stmt"/>
669
+ <line num="405" count="25" type="stmt"/>
670
+ <line num="406" count="3" type="cond" truecount="2" falsecount="0"/>
671
+ <line num="407" count="1" type="stmt"/>
672
+ <line num="408" count="2" type="cond" truecount="2" falsecount="0"/>
673
+ <line num="409" count="1" type="stmt"/>
674
+ <line num="410" count="1" type="stmt"/>
675
+ <line num="411" count="1" type="stmt"/>
676
+ <line num="413" count="4" type="stmt"/>
677
+ <line num="414" count="4" type="stmt"/>
678
+ <line num="415" count="3" type="cond" truecount="2" falsecount="0"/>
679
+ <line num="417" count="1" type="stmt"/>
680
+ <line num="419" count="1" type="stmt"/>
681
+ <line num="420" count="1" type="stmt"/>
682
+ <line num="421" count="2" type="stmt"/>
683
+ <line num="422" count="3" type="stmt"/>
684
+ <line num="423" count="2" type="stmt"/>
685
+ <line num="424" count="2" type="cond" truecount="2" falsecount="0"/>
686
+ <line num="425" count="1" type="stmt"/>
687
+ <line num="426" count="0" type="cond" truecount="0" falsecount="2"/>
688
+ <line num="429" count="20" type="cond" truecount="2" falsecount="0"/>
689
+ <line num="430" count="20" type="cond" truecount="1" falsecount="1"/>
690
+ <line num="432" count="20" type="stmt"/>
691
+ <line num="436" count="0" type="stmt"/>
692
+ <line num="470" count="0" type="stmt"/>
693
+ <line num="475" count="2" type="stmt"/>
694
+ <line num="476" count="2" type="stmt"/>
695
+ <line num="477" count="2" type="stmt"/>
696
+ <line num="479" count="2" type="stmt"/>
697
+ <line num="480" count="2" type="stmt"/>
698
+ <line num="482" count="2" type="stmt"/>
699
+ <line num="485" count="2" type="stmt"/>
700
+ <line num="486" count="2" type="stmt"/>
701
+ <line num="490" count="2" type="stmt"/>
702
+ <line num="492" count="2" type="stmt"/>
703
+ <line num="493" count="2" type="stmt"/>
704
+ <line num="494" count="2" type="stmt"/>
705
+ <line num="495" count="6" type="stmt"/>
706
+ <line num="496" count="6" type="cond" truecount="4" falsecount="0"/>
707
+ <line num="497" count="6" type="stmt"/>
708
+ <line num="499" count="2" type="stmt"/>
709
+ <line num="500" count="2" type="stmt"/>
710
+ <line num="504" count="0" type="cond" truecount="0" falsecount="2"/>
711
+ <line num="507" count="2" type="stmt"/>
712
+ <line num="508" count="2" type="stmt"/>
713
+ <line num="512" count="0" type="cond" truecount="0" falsecount="2"/>
714
+ <line num="513" count="0" type="stmt"/>
715
+ <line num="518" count="2" type="stmt"/>
716
+ <line num="519" count="2" type="stmt"/>
717
+ <line num="523" count="0" type="stmt"/>
718
+ <line num="527" count="0" type="stmt"/>
719
+ <line num="529" count="0" type="stmt"/>
720
+ <line num="531" count="0" type="stmt"/>
721
+ <line num="533" count="0" type="stmt"/>
722
+ <line num="535" count="0" type="stmt"/>
723
+ <line num="539" count="0" type="stmt"/>
724
+ <line num="540" count="0" type="stmt"/>
725
+ <line num="541" count="0" type="stmt"/>
726
+ <line num="544" count="0" type="stmt"/>
727
+ <line num="547" count="0" type="stmt"/>
728
+ <line num="548" count="0" type="stmt"/>
729
+ <line num="551" count="0" type="stmt"/>
730
+ <line num="554" count="0" type="stmt"/>
731
+ <line num="556" count="0" type="stmt"/>
732
+ <line num="560" count="1" type="cond" truecount="3" falsecount="0"/>
733
+ <line num="566" count="0" type="stmt"/>
734
+ <line num="567" count="0" type="stmt"/>
735
+ <line num="568" count="0" type="stmt"/>
736
+ </file>
737
+ <file name="cache.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/cache.ts">
738
+ <metrics statements="28" coveredstatements="28" conditionals="12" coveredconditionals="11" methods="0" coveredmethods="0"/>
739
+ <line num="4" count="2" type="stmt"/>
740
+ <line num="20" count="2" type="stmt"/>
741
+ <line num="21" count="2" type="stmt"/>
742
+ <line num="24" count="4" type="stmt"/>
743
+ <line num="26" count="4" type="stmt"/>
744
+ <line num="27" count="4" type="cond" truecount="5" falsecount="0"/>
745
+ <line num="28" count="1" type="stmt"/>
746
+ <line num="30" count="1" type="stmt"/>
747
+ <line num="35" count="5" type="stmt"/>
748
+ <line num="36" count="5" type="stmt"/>
749
+ <line num="37" count="5" type="stmt"/>
750
+ <line num="45" count="2" type="stmt"/>
751
+ <line num="46" count="2" type="stmt"/>
752
+ <line num="47" count="2" type="stmt"/>
753
+ <line num="58" count="3" type="cond" truecount="2" falsecount="0"/>
754
+ <line num="59" count="2" type="stmt"/>
755
+ <line num="60" count="2" type="cond" truecount="1" falsecount="1"/>
756
+ <line num="61" count="2" type="cond" truecount="2" falsecount="0"/>
757
+ <line num="65" count="2" type="stmt"/>
758
+ <line num="67" count="1" type="stmt"/>
759
+ <line num="69" count="2" type="stmt"/>
760
+ <line num="78" count="9" type="stmt"/>
761
+ <line num="82" count="13" type="stmt"/>
762
+ <line num="86" count="2" type="stmt"/>
763
+ <line num="87" count="2" type="stmt"/>
764
+ <line num="90" count="1" type="stmt"/>
765
+ <line num="94" count="1" type="stmt"/>
766
+ <line num="96" count="2" type="stmt"/>
767
+ </file>
768
+ <file name="cli.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/cli.ts">
769
+ <metrics statements="88" coveredstatements="81" conditionals="28" coveredconditionals="23" methods="5" coveredmethods="5"/>
770
+ <line num="10" count="37" type="cond" truecount="1" falsecount="1"/>
771
+ <line num="11" count="37" type="cond" truecount="2" falsecount="0"/>
772
+ <line num="15" count="4" type="cond" truecount="1" falsecount="1"/>
773
+ <line num="16" count="4" type="cond" truecount="1" falsecount="1"/>
774
+ <line num="20" count="20" type="stmt"/>
775
+ <line num="21" count="18" type="stmt"/>
776
+ <line num="24" count="226" type="stmt"/>
777
+ <line num="26" count="10" type="stmt"/>
778
+ <line num="28" count="0" type="stmt"/>
779
+ <line num="29" count="0" type="stmt"/>
780
+ <line num="32" count="18" type="stmt"/>
781
+ <line num="36" count="3" type="stmt"/>
782
+ <line num="37" count="3" type="stmt"/>
783
+ <line num="38" count="5" type="stmt"/>
784
+ <line num="39" count="5" type="stmt"/>
785
+ <line num="41" count="2" type="stmt"/>
786
+ <line num="42" count="2" type="stmt"/>
787
+ <line num="43" count="2" type="stmt"/>
788
+ <line num="44" count="2" type="stmt"/>
789
+ <line num="45" count="2" type="cond" truecount="1" falsecount="1"/>
790
+ <line num="46" count="2" type="stmt"/>
791
+ <line num="48" count="3" type="stmt"/>
792
+ <line num="51" count="3" type="stmt"/>
793
+ <line num="59" count="3" type="stmt"/>
794
+ <line num="60" count="4" type="stmt"/>
795
+ <line num="61" count="4" type="stmt"/>
796
+ <line num="62" count="3" type="stmt"/>
797
+ <line num="63" count="5" type="stmt"/>
798
+ <line num="64" count="3" type="stmt"/>
799
+ <line num="65" count="2" type="stmt"/>
800
+ <line num="66" count="2" type="stmt"/>
801
+ <line num="67" count="2" type="stmt"/>
802
+ <line num="68" count="2" type="stmt"/>
803
+ <line num="69" count="2" type="stmt"/>
804
+ <line num="70" count="2" type="stmt"/>
805
+ <line num="71" count="2" type="stmt"/>
806
+ <line num="75" count="3" type="stmt"/>
807
+ <line num="102" count="3" type="stmt"/>
808
+ <line num="108" count="3" type="stmt"/>
809
+ <line num="110" count="6" type="stmt"/>
810
+ <line num="112" count="0" type="stmt"/>
811
+ <line num="113" count="0" type="stmt"/>
812
+ <line num="115" count="6" type="stmt"/>
813
+ <line num="116" count="6" type="stmt"/>
814
+ <line num="119" count="2" type="stmt"/>
815
+ <line num="120" count="2" type="stmt"/>
816
+ <line num="123" count="2" type="stmt"/>
817
+ <line num="124" count="2" type="stmt"/>
818
+ <line num="127" count="12" type="stmt"/>
819
+ <line num="128" count="4" type="stmt"/>
820
+ <line num="130" count="0" type="stmt"/>
821
+ <line num="131" count="0" type="stmt"/>
822
+ <line num="137" count="71" type="stmt"/>
823
+ <line num="138" count="71" type="stmt"/>
824
+ <line num="140" count="71" type="stmt"/>
825
+ <line num="141" count="111" type="stmt"/>
826
+ <line num="145" count="33" type="stmt"/>
827
+ <line num="146" count="33" type="stmt"/>
828
+ <line num="151" count="37" type="stmt"/>
829
+ <line num="153" count="37" type="stmt"/>
830
+ <line num="154" count="37" type="stmt"/>
831
+ <line num="159" count="4" type="stmt"/>
832
+ <line num="161" count="4" type="stmt"/>
833
+ <line num="162" count="4" type="stmt"/>
834
+ <line num="167" count="14" type="stmt"/>
835
+ <line num="168" count="14" type="stmt"/>
836
+ <line num="173" count="2" type="stmt"/>
837
+ <line num="174" count="2" type="stmt"/>
838
+ <line num="179" count="3" type="cond" truecount="2" falsecount="0"/>
839
+ <line num="180" count="3" type="stmt"/>
840
+ <line num="181" count="3" type="stmt"/>
841
+ <line num="182" count="3" type="cond" truecount="2" falsecount="0"/>
842
+ <line num="183" count="3" type="stmt"/>
843
+ <line num="188" count="13" type="cond" truecount="2" falsecount="0"/>
844
+ <line num="189" count="13" type="stmt"/>
845
+ <line num="190" count="13" type="stmt"/>
846
+ <line num="195" count="5" type="cond" truecount="1" falsecount="1"/>
847
+ <line num="196" count="5" type="stmt"/>
848
+ <line num="197" count="5" type="stmt"/>
849
+ <line num="201" count="71" type="stmt"/>
850
+ <line num="204" count="1" type="stmt"/>
851
+ <line num="205" count="1" type="stmt"/>
852
+ <line num="208" count="410" type="stmt"/>
853
+ <line num="212" count="17" type="stmt"/>
854
+ <line num="213" count="436" type="stmt"/>
855
+ <line num="214" count="10" type="stmt"/>
856
+ <line num="218" count="71" type="stmt"/>
857
+ <line num="222" count="0" type="stmt"/>
858
+ </file>
859
+ <file name="collect-effects.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-effects.ts">
860
+ <metrics statements="64" coveredstatements="64" conditionals="62" coveredconditionals="59" methods="1" coveredmethods="1"/>
861
+ <line num="8" count="6" type="stmt"/>
862
+ <line num="14" count="6" type="stmt"/>
863
+ <line num="17" count="124" type="stmt"/>
864
+ <line num="22" count="2" type="stmt"/>
865
+ <line num="23" count="2" type="cond" truecount="1" falsecount="1"/>
866
+ <line num="24" count="2" type="stmt"/>
867
+ <line num="25" count="2" type="stmt"/>
868
+ <line num="34" count="5" type="stmt"/>
869
+ <line num="37" count="132" type="cond" truecount="4" falsecount="0"/>
870
+ <line num="38" count="131" type="cond" truecount="5" falsecount="0"/>
871
+ <line num="39" count="128" type="cond" truecount="2" falsecount="0"/>
872
+ <line num="41" count="127" type="cond" truecount="5" falsecount="0"/>
873
+ <line num="46" count="33" type="stmt"/>
874
+ <line num="49" count="34" type="stmt"/>
875
+ <line num="53" count="30" type="stmt"/>
876
+ <line num="54" count="30" type="stmt"/>
877
+ <line num="60" count="9" type="stmt"/>
878
+ <line num="64" count="124" type="stmt"/>
879
+ <line num="69" count="1" type="stmt"/>
880
+ <line num="70" count="1" type="stmt"/>
881
+ <line num="78" count="1" type="stmt"/>
882
+ <line num="82" count="37" type="stmt"/>
883
+ <line num="83" count="37" type="stmt"/>
884
+ <line num="87" count="3" type="stmt"/>
885
+ <line num="88" count="3" type="stmt"/>
886
+ <line num="96" count="3" type="stmt"/>
887
+ <line num="101" count="2" type="stmt"/>
888
+ <line num="107" count="46" type="stmt"/>
889
+ <line num="108" count="46" type="stmt"/>
890
+ <line num="111" count="5" type="stmt"/>
891
+ <line num="112" count="5" type="stmt"/>
892
+ <line num="116" count="7" type="stmt"/>
893
+ <line num="117" count="7" type="stmt"/>
894
+ <line num="121" count="24" type="stmt"/>
895
+ <line num="122" count="24" type="stmt"/>
896
+ <line num="125" count="4" type="stmt"/>
897
+ <line num="126" count="4" type="stmt"/>
898
+ <line num="130" count="5" type="stmt"/>
899
+ <line num="131" count="5" type="stmt"/>
900
+ <line num="135" count="8" type="stmt"/>
901
+ <line num="136" count="8" type="stmt"/>
902
+ <line num="140" count="3" type="stmt"/>
903
+ <line num="141" count="3" type="stmt"/>
904
+ <line num="147" count="1" type="stmt"/>
905
+ <line num="153" count="64" type="cond" truecount="3" falsecount="1"/>
906
+ <line num="155" count="7" type="stmt"/>
907
+ <line num="156" count="7" type="stmt"/>
908
+ <line num="159" count="1" type="stmt"/>
909
+ <line num="160" count="1" type="stmt"/>
910
+ <line num="161" count="1" type="stmt"/>
911
+ <line num="164" count="1" type="stmt"/>
912
+ <line num="165" count="1" type="stmt"/>
913
+ <line num="166" count="1" type="stmt"/>
914
+ <line num="168" count="55" type="stmt"/>
915
+ <line num="175" count="16" type="stmt"/>
916
+ <line num="177" count="32" type="cond" truecount="4" falsecount="0"/>
917
+ <line num="178" count="17" type="stmt"/>
918
+ <line num="180" count="1" type="stmt"/>
919
+ <line num="184" count="14" type="stmt"/>
920
+ <line num="186" count="113" type="cond" truecount="1" falsecount="1"/>
921
+ <line num="187" count="5" type="cond" truecount="2" falsecount="0"/>
922
+ <line num="188" count="108" type="stmt"/>
923
+ <line num="190" count="14" type="stmt"/>
924
+ <line num="191" count="14" type="stmt"/>
925
+ </file>
926
+ <file name="collect-input-sources.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-input-sources.ts">
927
+ <metrics statements="56" coveredstatements="51" conditionals="35" coveredconditionals="24" methods="0" coveredmethods="0"/>
928
+ <line num="8" count="4" type="stmt"/>
929
+ <line num="9" count="4" type="stmt"/>
930
+ <line num="10" count="4" type="stmt"/>
931
+ <line num="13" count="13" type="stmt"/>
932
+ <line num="15" count="13" type="cond" truecount="2" falsecount="0"/>
933
+ <line num="16" count="3" type="cond" truecount="1" falsecount="1"/>
934
+ <line num="18" count="3" type="cond" truecount="1" falsecount="1"/>
935
+ <line num="21" count="4" type="stmt"/>
936
+ <line num="45" count="4" type="stmt"/>
937
+ <line num="46" count="4" type="stmt"/>
938
+ <line num="49" count="90" type="stmt"/>
939
+ <line num="53" count="1136" type="stmt"/>
940
+ <line num="54" count="1136" type="stmt"/>
941
+ <line num="57" count="71" type="stmt"/>
942
+ <line num="58" count="71" type="stmt"/>
943
+ <line num="59" count="71" type="stmt"/>
944
+ <line num="61" count="53" type="stmt"/>
945
+ <line num="62" count="53" type="cond" truecount="2" falsecount="0"/>
946
+ <line num="65" count="58" type="stmt"/>
947
+ <line num="66" count="58" type="stmt"/>
948
+ <line num="69" count="13" type="stmt"/>
949
+ <line num="71" count="0" type="stmt"/>
950
+ <line num="72" count="0" type="stmt"/>
951
+ <line num="75" count="13" type="stmt"/>
952
+ <line num="76" count="13" type="stmt"/>
953
+ <line num="77" count="13" type="stmt"/>
954
+ <line num="78" count="13" type="stmt"/>
955
+ <line num="81" count="99" type="cond" truecount="2" falsecount="2"/>
956
+ <line num="84" count="9" type="stmt"/>
957
+ <line num="87" count="4" type="stmt"/>
958
+ <line num="88" count="4" type="stmt"/>
959
+ <line num="92" count="1" type="stmt"/>
960
+ <line num="95" count="8" type="stmt"/>
961
+ <line num="98" count="8" type="stmt"/>
962
+ <line num="99" count="8" type="stmt"/>
963
+ <line num="100" count="8" type="stmt"/>
964
+ <line num="107" count="2" type="stmt"/>
965
+ <line num="108" count="2" type="cond" truecount="1" falsecount="1"/>
966
+ <line num="112" count="0" type="stmt"/>
967
+ <line num="113" count="0" type="cond" truecount="0" falsecount="2"/>
968
+ <line num="117" count="3" type="cond" truecount="1" falsecount="1"/>
969
+ <line num="118" count="3" type="stmt"/>
970
+ <line num="120" count="3" type="stmt"/>
971
+ <line num="125" count="0" type="stmt"/>
972
+ <line num="129" count="1" type="stmt"/>
973
+ <line num="130" count="1" type="cond" truecount="1" falsecount="1"/>
974
+ <line num="133" count="99" type="stmt"/>
975
+ <line num="135" count="13" type="stmt"/>
976
+ <line num="138" count="13" type="stmt"/>
977
+ <line num="140" count="1" type="stmt"/>
978
+ <line num="144" count="13" type="stmt"/>
979
+ <line num="145" count="13" type="stmt"/>
980
+ <line num="146" count="13" type="stmt"/>
981
+ <line num="158" count="13" type="stmt"/>
982
+ <line num="160" count="90" type="stmt"/>
983
+ <line num="162" count="90" type="stmt"/>
984
+ </file>
985
+ <file name="collect-performance.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-performance.ts">
986
+ <metrics statements="34" coveredstatements="33" conditionals="25" coveredconditionals="24" methods="0" coveredmethods="0"/>
987
+ <line num="9" count="4" type="stmt"/>
988
+ <line num="17" count="122" type="stmt"/>
989
+ <line num="18" count="122" type="stmt"/>
990
+ <line num="19" count="122" type="stmt"/>
991
+ <line num="20" count="122" type="stmt"/>
992
+ <line num="21" count="122" type="stmt"/>
993
+ <line num="24" count="7" type="stmt"/>
994
+ <line num="26" count="23" type="cond" truecount="7" falsecount="0"/>
995
+ <line num="27" count="3" type="stmt"/>
996
+ <line num="28" count="20" type="cond" truecount="2" falsecount="0"/>
997
+ <line num="29" count="16" type="stmt"/>
998
+ <line num="31" count="0" type="stmt"/>
999
+ <line num="36" count="3" type="stmt"/>
1000
+ <line num="37" count="3" type="stmt"/>
1001
+ <line num="41" count="73" type="stmt"/>
1002
+ <line num="43" count="6" type="stmt"/>
1003
+ <line num="44" count="6" type="stmt"/>
1004
+ <line num="47" count="4" type="stmt"/>
1005
+ <line num="48" count="4" type="stmt"/>
1006
+ <line num="51" count="3" type="stmt"/>
1007
+ <line num="52" count="3" type="stmt"/>
1008
+ <line num="57" count="193" type="stmt"/>
1009
+ <line num="59" count="9" type="stmt"/>
1010
+ <line num="60" count="9" type="cond" truecount="2" falsecount="0"/>
1011
+ <line num="61" count="9" type="stmt"/>
1012
+ <line num="62" count="9" type="cond" truecount="1" falsecount="1"/>
1013
+ <line num="63" count="9" type="stmt"/>
1014
+ <line num="72" count="2015" type="stmt"/>
1015
+ <line num="74" count="122" type="stmt"/>
1016
+ <line num="76" count="122" type="stmt"/>
1017
+ <line num="77" count="122" type="stmt"/>
1018
+ <line num="78" count="122" type="stmt"/>
1019
+ <line num="79" count="122" type="stmt"/>
1020
+ <line num="80" count="122" type="stmt"/>
1021
+ </file>
1022
+ <file name="collect-prototype-pollution.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-prototype-pollution.ts">
1023
+ <metrics statements="38" coveredstatements="38" conditionals="41" coveredconditionals="32" methods="0" coveredmethods="0"/>
1024
+ <line num="7" count="4" type="stmt"/>
1025
+ <line num="14" count="5" type="stmt"/>
1026
+ <line num="15" count="5" type="cond" truecount="3" falsecount="1"/>
1027
+ <line num="16" count="5" type="stmt"/>
1028
+ <line num="19" count="5" type="stmt"/>
1029
+ <line num="22" count="2" type="stmt"/>
1030
+ <line num="24" count="2" type="stmt"/>
1031
+ <line num="27" count="2" type="stmt"/>
1032
+ <line num="31" count="2" type="stmt"/>
1033
+ <line num="36" count="18" type="cond" truecount="2" falsecount="0"/>
1034
+ <line num="37" count="15" type="stmt"/>
1035
+ <line num="39" count="3" type="stmt"/>
1036
+ <line num="44" count="3" type="stmt"/>
1037
+ <line num="45" count="3" type="cond" truecount="1" falsecount="1"/>
1038
+ <line num="46" count="3" type="stmt"/>
1039
+ <line num="47" count="3" type="cond" truecount="2" falsecount="3"/>
1040
+ <line num="54" count="2" type="stmt"/>
1041
+ <line num="56" count="2" type="stmt"/>
1042
+ <line num="60" count="2" type="stmt"/>
1043
+ <line num="61" count="2" type="stmt"/>
1044
+ <line num="62" count="2" type="stmt"/>
1045
+ <line num="63" count="2" type="cond" truecount="3" falsecount="1"/>
1046
+ <line num="64" count="2" type="stmt"/>
1047
+ <line num="66" count="4" type="stmt"/>
1048
+ <line num="68" count="2" type="stmt"/>
1049
+ <line num="74" count="85" type="stmt"/>
1050
+ <line num="78" count="52" type="stmt"/>
1051
+ <line num="80" count="2" type="stmt"/>
1052
+ <line num="81" count="2" type="stmt"/>
1053
+ <line num="83" count="52" type="cond" truecount="1" falsecount="1"/>
1054
+ <line num="85" count="4" type="stmt"/>
1055
+ <line num="86" count="4" type="stmt"/>
1056
+ <line num="99" count="5" type="cond" truecount="3" falsecount="0"/>
1057
+ <line num="102" count="5" type="stmt"/>
1058
+ <line num="103" count="5" type="stmt"/>
1059
+ <line num="106" count="1153" type="stmt"/>
1060
+ <line num="109" count="85" type="stmt"/>
1061
+ <line num="110" count="85" type="stmt"/>
1062
+ </file>
1063
+ <file name="collect-security.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-security.ts">
1064
+ <metrics statements="64" coveredstatements="61" conditionals="41" coveredconditionals="35" methods="0" coveredmethods="0"/>
1065
+ <line num="7" count="4" type="stmt"/>
1066
+ <line num="17" count="4" type="stmt"/>
1067
+ <line num="20" count="4" type="stmt"/>
1068
+ <line num="22" count="4" type="stmt"/>
1069
+ <line num="25" count="110" type="stmt"/>
1070
+ <line num="27" count="551" type="cond" truecount="1" falsecount="1"/>
1071
+ <line num="29" count="551" type="cond" truecount="3" falsecount="1"/>
1072
+ <line num="30" count="551" type="stmt"/>
1073
+ <line num="32" count="110" type="stmt"/>
1074
+ <line num="36" count="110" type="cond" truecount="2" falsecount="0"/>
1075
+ <line num="40" count="4" type="stmt"/>
1076
+ <line num="45" count="114" type="stmt"/>
1077
+ <line num="48" count="0" type="cond" truecount="0" falsecount="2"/>
1078
+ <line num="50" count="567" type="stmt"/>
1079
+ <line num="52" count="114" type="stmt"/>
1080
+ <line num="55" count="5" type="stmt"/>
1081
+ <line num="56" count="160" type="cond" truecount="2" falsecount="0"/>
1082
+ <line num="57" count="5" type="stmt"/>
1083
+ <line num="59" count="106" type="stmt"/>
1084
+ <line num="60" count="106" type="cond" truecount="1" falsecount="1"/>
1085
+ <line num="62" count="5" type="stmt"/>
1086
+ <line num="66" count="126" type="stmt"/>
1087
+ <line num="67" count="126" type="stmt"/>
1088
+ <line num="68" count="126" type="stmt"/>
1089
+ <line num="69" count="126" type="stmt"/>
1090
+ <line num="73" count="188" type="stmt"/>
1091
+ <line num="75" count="7" type="stmt"/>
1092
+ <line num="76" count="7" type="stmt"/>
1093
+ <line num="79" count="0" type="stmt"/>
1094
+ <line num="80" count="0" type="stmt"/>
1095
+ <line num="83" count="8" type="stmt"/>
1096
+ <line num="85" count="1" type="stmt"/>
1097
+ <line num="86" count="1" type="stmt"/>
1098
+ <line num="90" count="1" type="stmt"/>
1099
+ <line num="91" count="1" type="stmt"/>
1100
+ <line num="96" count="2" type="stmt"/>
1101
+ <line num="97" count="2" type="stmt"/>
1102
+ <line num="102" count="2" type="stmt"/>
1103
+ <line num="104" count="2" type="stmt"/>
1104
+ <line num="105" count="2" type="stmt"/>
1105
+ <line num="111" count="1" type="stmt"/>
1106
+ <line num="112" count="1" type="stmt"/>
1107
+ <line num="117" count="110" type="stmt"/>
1108
+ <line num="121" count="1" type="stmt"/>
1109
+ <line num="122" count="1" type="stmt"/>
1110
+ <line num="123" count="1" type="stmt"/>
1111
+ <line num="127" count="2" type="stmt"/>
1112
+ <line num="128" count="2" type="stmt"/>
1113
+ <line num="136" count="4" type="stmt"/>
1114
+ <line num="141" count="2" type="stmt"/>
1115
+ <line num="142" count="2" type="stmt"/>
1116
+ <line num="143" count="2" type="stmt"/>
1117
+ <line num="150" count="4" type="stmt"/>
1118
+ <line num="152" count="3" type="stmt"/>
1119
+ <line num="153" count="3" type="stmt"/>
1120
+ <line num="159" count="4" type="stmt"/>
1121
+ <line num="160" count="4" type="stmt"/>
1122
+ <line num="161" count="4" type="stmt"/>
1123
+ <line num="164" count="2007" type="stmt"/>
1124
+ <line num="166" count="126" type="stmt"/>
1125
+ <line num="168" count="126" type="stmt"/>
1126
+ <line num="169" count="126" type="stmt"/>
1127
+ <line num="170" count="126" type="stmt"/>
1128
+ <line num="171" count="126" type="stmt"/>
1129
+ </file>
1130
+ <file name="collect-test-profile.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/collect-test-profile.ts">
1131
+ <metrics statements="67" coveredstatements="66" conditionals="41" coveredconditionals="33" methods="5" coveredmethods="5"/>
1132
+ <line num="7" count="4" type="stmt"/>
1133
+ <line num="8" count="4" type="stmt"/>
1134
+ <line num="9" count="4" type="stmt"/>
1135
+ <line num="13" count="4" type="stmt"/>
1136
+ <line num="14" count="4" type="stmt"/>
1137
+ <line num="15" count="4" type="stmt"/>
1138
+ <line num="16" count="4" type="stmt"/>
1139
+ <line num="19" count="19" type="cond" truecount="1" falsecount="1"/>
1140
+ <line num="20" count="19" type="stmt"/>
1141
+ <line num="21" count="19" type="stmt"/>
1142
+ <line num="23" count="19" type="cond" truecount="5" falsecount="0"/>
1143
+ <line num="24" count="11" type="cond" truecount="2" falsecount="3"/>
1144
+ <line num="25" count="11" type="stmt"/>
1145
+ <line num="29" count="8" type="stmt"/>
1146
+ <line num="31" count="25" type="stmt"/>
1147
+ <line num="34" count="7" type="stmt"/>
1148
+ <line num="38" count="0" type="stmt"/>
1149
+ <line num="41" count="18" type="stmt"/>
1150
+ <line num="44" count="1" type="stmt"/>
1151
+ <line num="48" count="3" type="cond" truecount="1" falsecount="1"/>
1152
+ <line num="49" count="3" type="stmt"/>
1153
+ <line num="53" count="43" type="stmt"/>
1154
+ <line num="54" count="43" type="stmt"/>
1155
+ <line num="55" count="43" type="stmt"/>
1156
+ <line num="56" count="43" type="stmt"/>
1157
+ <line num="57" count="43" type="stmt"/>
1158
+ <line num="58" count="43" type="stmt"/>
1159
+ <line num="59" count="43" type="stmt"/>
1160
+ <line num="60" count="43" type="stmt"/>
1161
+ <line num="64" count="152" type="stmt"/>
1162
+ <line num="67" count="2" type="stmt"/>
1163
+ <line num="68" count="2" type="stmt"/>
1164
+ <line num="72" count="41" type="stmt"/>
1165
+ <line num="73" count="41" type="cond" truecount="1" falsecount="1"/>
1166
+ <line num="74" count="41" type="stmt"/>
1167
+ <line num="75" count="41" type="stmt"/>
1168
+ <line num="76" count="41" type="stmt"/>
1169
+ <line num="79" count="72" type="stmt"/>
1170
+ <line num="80" count="72" type="cond" truecount="5" falsecount="0"/>
1171
+ <line num="82" count="441" type="stmt"/>
1172
+ <line num="84" count="41" type="stmt"/>
1173
+ <line num="85" count="41" type="stmt"/>
1174
+ <line num="86" count="123" type="stmt"/>
1175
+ <line num="87" count="41" type="stmt"/>
1176
+ <line num="90" count="608" type="cond" truecount="2" falsecount="0"/>
1177
+ <line num="91" count="19" type="stmt"/>
1178
+ <line num="92" count="19" type="stmt"/>
1179
+ <line num="93" count="19" type="stmt"/>
1180
+ <line num="95" count="8" type="stmt"/>
1181
+ <line num="106" count="3" type="stmt"/>
1182
+ <line num="107" count="3" type="stmt"/>
1183
+ <line num="111" count="2" type="stmt"/>
1184
+ <line num="112" count="2" type="stmt"/>
1185
+ <line num="116" count="1" type="stmt"/>
1186
+ <line num="117" count="1" type="stmt"/>
1187
+ <line num="124" count="3" type="stmt"/>
1188
+ <line num="125" count="3" type="stmt"/>
1189
+ <line num="135" count="10" type="stmt"/>
1190
+ <line num="136" count="10" type="stmt"/>
1191
+ <line num="140" count="57" type="stmt"/>
1192
+ <line num="141" count="19" type="stmt"/>
1193
+ <line num="146" count="4" type="stmt"/>
1194
+ <line num="148" count="2" type="stmt"/>
1195
+ <line num="149" count="2" type="stmt"/>
1196
+ <line num="153" count="935" type="stmt"/>
1197
+ <line num="156" count="88" type="stmt"/>
1198
+ <line num="158" count="43" type="stmt"/>
1199
+ </file>
1200
+ <file name="dependencies.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/dependencies.ts">
1201
+ <metrics statements="72" coveredstatements="69" conditionals="72" coveredconditionals="65" methods="2" coveredmethods="2"/>
1202
+ <line num="18" count="28" type="stmt"/>
1203
+ <line num="19" count="28" type="stmt"/>
1204
+ <line num="20" count="28" type="stmt"/>
1205
+ <line num="21" count="28" type="stmt"/>
1206
+ <line num="22" count="28" type="stmt"/>
1207
+ <line num="23" count="28" type="stmt"/>
1208
+ <line num="24" count="28" type="stmt"/>
1209
+ <line num="27" count="14" type="cond" truecount="1" falsecount="1"/>
1210
+ <line num="28" count="14" type="stmt"/>
1211
+ <line num="32" count="15" type="cond" truecount="3" falsecount="1"/>
1212
+ <line num="33" count="15" type="stmt"/>
1213
+ <line num="38" count="0" type="stmt"/>
1214
+ <line num="42" count="7" type="stmt"/>
1215
+ <line num="43" count="7" type="stmt"/>
1216
+ <line num="46" count="14" type="stmt"/>
1217
+ <line num="48" count="13" type="stmt"/>
1218
+ <line num="49" count="13" type="stmt"/>
1219
+ <line num="53" count="0" type="stmt"/>
1220
+ <line num="54" count="0" type="stmt"/>
1221
+ <line num="57" count="1" type="stmt"/>
1222
+ <line num="58" count="1" type="stmt"/>
1223
+ <line num="59" count="1" type="stmt"/>
1224
+ <line num="63" count="17" type="stmt"/>
1225
+ <line num="64" count="17" type="stmt"/>
1226
+ <line num="65" count="17" type="stmt"/>
1227
+ <line num="70" count="16" type="stmt"/>
1228
+ <line num="71" count="16" type="cond" truecount="2" falsecount="0"/>
1229
+ <line num="72" count="16" type="stmt"/>
1230
+ <line num="73" count="16" type="stmt"/>
1231
+ <line num="76" count="6" type="stmt"/>
1232
+ <line num="87" count="1" type="stmt"/>
1233
+ <line num="97" count="12" type="stmt"/>
1234
+ <line num="112" count="4" type="stmt"/>
1235
+ <line num="113" count="4" type="cond" truecount="2" falsecount="0"/>
1236
+ <line num="116" count="4" type="stmt"/>
1237
+ <line num="128" count="1" type="stmt"/>
1238
+ <line num="142" count="1" type="stmt"/>
1239
+ <line num="152" count="5" type="stmt"/>
1240
+ <line num="162" count="1" type="stmt"/>
1241
+ <line num="172" count="1" type="stmt"/>
1242
+ <line num="181" count="2" type="stmt"/>
1243
+ <line num="192" count="1" type="stmt"/>
1244
+ <line num="204" count="4" type="stmt"/>
1245
+ <line num="220" count="1" type="stmt"/>
1246
+ <line num="221" count="1" type="cond" truecount="2" falsecount="0"/>
1247
+ <line num="222" count="1" type="stmt"/>
1248
+ <line num="232" count="247" type="stmt"/>
1249
+ <line num="235" count="28" type="stmt"/>
1250
+ <line num="236" count="28" type="stmt"/>
1251
+ <line num="247" count="82" type="stmt"/>
1252
+ <line num="248" count="82" type="stmt"/>
1253
+ <line num="250" count="7" type="stmt"/>
1254
+ <line num="252" count="75" type="stmt"/>
1255
+ <line num="257" count="2" type="stmt"/>
1256
+ <line num="258" count="2" type="stmt"/>
1257
+ <line num="260" count="2" type="stmt"/>
1258
+ <line num="261" count="2" type="stmt"/>
1259
+ <line num="264" count="1" type="stmt"/>
1260
+ <line num="265" count="1" type="stmt"/>
1261
+ <line num="269" count="1" type="stmt"/>
1262
+ <line num="273" count="1" type="stmt"/>
1263
+ <line num="276" count="2" type="stmt"/>
1264
+ <line num="277" count="2" type="stmt"/>
1265
+ <line num="278" count="2" type="stmt"/>
1266
+ <line num="280" count="2" type="stmt"/>
1267
+ <line num="288" count="103" type="cond" truecount="2" falsecount="0"/>
1268
+ <line num="289" count="103" type="cond" truecount="2" falsecount="0"/>
1269
+ <line num="290" count="103" type="cond" truecount="2" falsecount="0"/>
1270
+ <line num="291" count="103" type="cond" truecount="2" falsecount="0"/>
1271
+ <line num="292" count="103" type="cond" truecount="2" falsecount="0"/>
1272
+ <line num="293" count="103" type="cond" truecount="2" falsecount="0"/>
1273
+ <line num="295" count="103" type="stmt"/>
1274
+ </file>
1275
+ <file name="dependency-summary.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/dependency-summary.ts">
1276
+ <metrics statements="86" coveredstatements="86" conditionals="52" coveredconditionals="48" methods="15" coveredmethods="15"/>
1277
+ <line num="7" count="15" type="stmt"/>
1278
+ <line num="8" count="15" type="stmt"/>
1279
+ <line num="9" count="15" type="stmt"/>
1280
+ <line num="10" count="15" type="stmt"/>
1281
+ <line num="11" count="15" type="stmt"/>
1282
+ <line num="14" count="48" type="cond" truecount="2" falsecount="0"/>
1283
+ <line num="15" count="48" type="stmt"/>
1284
+ <line num="16" count="48" type="cond" truecount="2" falsecount="0"/>
1285
+ <line num="17" count="48" type="stmt"/>
1286
+ <line num="18" count="48" type="stmt"/>
1287
+ <line num="19" count="48" type="stmt"/>
1288
+ <line num="22" count="15" type="stmt"/>
1289
+ <line num="23" count="48" type="cond" truecount="2" falsecount="0"/>
1290
+ <line num="24" count="48" type="stmt"/>
1291
+ <line num="27" count="15" type="stmt"/>
1292
+ <line num="28" count="48" type="cond" truecount="2" falsecount="0"/>
1293
+ <line num="29" count="48" type="stmt"/>
1294
+ <line num="32" count="15" type="stmt"/>
1295
+ <line num="33" count="48" type="stmt"/>
1296
+ <line num="35" count="44" type="stmt"/>
1297
+ <line num="36" count="44" type="stmt"/>
1298
+ <line num="37" count="44" type="cond" truecount="4" falsecount="0"/>
1299
+ <line num="39" count="3" type="stmt"/>
1300
+ <line num="42" count="1" type="stmt"/>
1301
+ <line num="44" count="15" type="stmt"/>
1302
+ <line num="45" count="48" type="cond" truecount="2" falsecount="0"/>
1303
+ <line num="46" count="48" type="cond" truecount="3" falsecount="0"/>
1304
+ <line num="47" count="2" type="cond" truecount="2" falsecount="2"/>
1305
+ <line num="49" count="6" type="stmt"/>
1306
+ <line num="55" count="15" type="stmt"/>
1307
+ <line num="56" count="15" type="stmt"/>
1308
+ <line num="58" count="15" type="stmt"/>
1309
+ <line num="70" count="44" type="stmt"/>
1310
+ <line num="71" count="50" type="stmt"/>
1311
+ <line num="78" count="34" type="stmt"/>
1312
+ <line num="79" count="34" type="stmt"/>
1313
+ <line num="80" count="34" type="stmt"/>
1314
+ <line num="81" count="34" type="stmt"/>
1315
+ <line num="82" count="34" type="stmt"/>
1316
+ <line num="85" count="21" type="stmt"/>
1317
+ <line num="86" count="21" type="stmt"/>
1318
+ <line num="87" count="21" type="stmt"/>
1319
+ <line num="88" count="45" type="stmt"/>
1320
+ <line num="90" count="18" type="stmt"/>
1321
+ <line num="93" count="21" type="stmt"/>
1322
+ <line num="97" count="167" type="cond" truecount="2" falsecount="0"/>
1323
+ <line num="98" count="103" type="cond" truecount="1" falsecount="1"/>
1324
+ <line num="100" count="103" type="stmt"/>
1325
+ <line num="101" count="103" type="stmt"/>
1326
+ <line num="103" count="103" type="cond" truecount="2" falsecount="0"/>
1327
+ <line num="105" count="86" type="stmt"/>
1328
+ <line num="107" count="21" type="stmt"/>
1329
+ <line num="108" count="21" type="stmt"/>
1330
+ <line num="110" count="21" type="stmt"/>
1331
+ <line num="111" count="21" type="stmt"/>
1332
+ <line num="116" count="21" type="stmt"/>
1333
+ <line num="120" count="64" type="stmt"/>
1334
+ <line num="124" count="103" type="stmt"/>
1335
+ <line num="125" count="103" type="stmt"/>
1336
+ <line num="126" count="103" type="stmt"/>
1337
+ <line num="130" count="103" type="stmt"/>
1338
+ <line num="133" count="34" type="stmt"/>
1339
+ <line num="137" count="31" type="stmt"/>
1340
+ <line num="138" count="31" type="stmt"/>
1341
+ <line num="141" count="198" type="stmt"/>
1342
+ <line num="142" count="198" type="cond" truecount="2" falsecount="0"/>
1343
+ <line num="146" count="196" type="cond" truecount="2" falsecount="0"/>
1344
+ <line num="148" count="2" type="stmt"/>
1345
+ <line num="155" count="113" type="stmt"/>
1346
+ <line num="156" count="113" type="cond" truecount="2" falsecount="0"/>
1347
+ <line num="157" count="196" type="stmt"/>
1348
+ <line num="164" count="83" type="cond" truecount="1" falsecount="1"/>
1349
+ <line num="165" count="83" type="stmt"/>
1350
+ <line num="166" count="83" type="stmt"/>
1351
+ <line num="168" count="75" type="stmt"/>
1352
+ <line num="176" count="113" type="stmt"/>
1353
+ <line num="177" count="113" type="stmt"/>
1354
+ <line num="178" count="113" type="stmt"/>
1355
+ <line num="181" count="31" type="stmt"/>
1356
+ <line num="183" count="113" type="stmt"/>
1357
+ <line num="184" count="113" type="stmt"/>
1358
+ <line num="193" count="31" type="stmt"/>
1359
+ <line num="194" count="113" type="stmt"/>
1360
+ <line num="196" count="52" type="stmt"/>
1361
+ <line num="197" count="52" type="cond" truecount="2" falsecount="0"/>
1362
+ <line num="198" count="10" type="stmt"/>
1363
+ </file>
1364
+ <file name="discovery.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/discovery.ts">
1365
+ <metrics statements="31" coveredstatements="31" conditionals="22" coveredconditionals="21" methods="4" coveredmethods="4"/>
1366
+ <line num="10" count="10" type="stmt"/>
1367
+ <line num="12" count="15" type="stmt"/>
1368
+ <line num="13" count="22" type="stmt"/>
1369
+ <line num="16" count="36" type="cond" truecount="2" falsecount="0"/>
1370
+ <line num="17" count="35" type="cond" truecount="2" falsecount="0"/>
1371
+ <line num="19" count="34" type="stmt"/>
1372
+ <line num="21" count="5" type="stmt"/>
1373
+ <line num="22" count="5" type="stmt"/>
1374
+ <line num="25" count="29" type="cond" truecount="1" falsecount="1"/>
1375
+ <line num="26" count="29" type="cond" truecount="2" falsecount="0"/>
1376
+ <line num="28" count="28" type="stmt"/>
1377
+ <line num="29" count="28" type="cond" truecount="2" falsecount="0"/>
1378
+ <line num="30" count="25" type="cond" truecount="4" falsecount="0"/>
1379
+ <line num="32" count="22" type="stmt"/>
1380
+ <line num="36" count="10" type="stmt"/>
1381
+ <line num="37" count="10" type="stmt"/>
1382
+ <line num="42" count="3" type="stmt"/>
1383
+ <line num="44" count="2" type="stmt"/>
1384
+ <line num="49" count="6" type="cond" truecount="4" falsecount="0"/>
1385
+ <line num="51" count="5" type="stmt"/>
1386
+ <line num="52" count="10" type="stmt"/>
1387
+ <line num="53" count="5" type="stmt"/>
1388
+ <line num="55" count="5" type="stmt"/>
1389
+ <line num="57" count="10" type="stmt"/>
1390
+ <line num="58" count="10" type="stmt"/>
1391
+ <line num="59" count="10" type="cond" truecount="2" falsecount="0"/>
1392
+ <line num="61" count="9" type="stmt"/>
1393
+ <line num="62" count="9" type="stmt"/>
1394
+ <line num="64" count="7" type="stmt"/>
1395
+ <line num="71" count="5" type="stmt"/>
1396
+ <line num="75" count="5" type="stmt"/>
1397
+ </file>
1398
+ <file name="graph-analytics.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/graph-analytics.ts">
1399
+ <metrics statements="151" coveredstatements="150" conditionals="143" coveredconditionals="114" methods="12" coveredmethods="12"/>
1400
+ <line num="25" count="155" type="stmt"/>
1401
+ <line num="26" count="155" type="stmt"/>
1402
+ <line num="27" count="155" type="cond" truecount="2" falsecount="0"/>
1403
+ <line num="28" count="109" type="stmt"/>
1404
+ <line num="29" count="109" type="cond" truecount="1" falsecount="1"/>
1405
+ <line num="33" count="50" type="stmt"/>
1406
+ <line num="34" count="50" type="stmt"/>
1407
+ <line num="35" count="50" type="stmt"/>
1408
+ <line num="36" count="50" type="stmt"/>
1409
+ <line num="37" count="50" type="stmt"/>
1410
+ <line num="38" count="50" type="stmt"/>
1411
+ <line num="39" count="50" type="stmt"/>
1412
+ <line num="42" count="64" type="stmt"/>
1413
+ <line num="43" count="64" type="stmt"/>
1414
+ <line num="44" count="64" type="stmt"/>
1415
+ <line num="45" count="64" type="stmt"/>
1416
+ <line num="46" count="64" type="stmt"/>
1417
+ <line num="48" count="64" type="cond" truecount="2" falsecount="0"/>
1418
+ <line num="50" count="56" type="cond" truecount="2" falsecount="0"/>
1419
+ <line num="52" count="31" type="stmt"/>
1420
+ <line num="53" count="31" type="stmt"/>
1421
+ <line num="55" count="10" type="stmt"/>
1422
+ <line num="59" count="64" type="cond" truecount="2" falsecount="0"/>
1423
+ <line num="61" count="48" type="stmt"/>
1424
+ <line num="63" count="64" type="stmt"/>
1425
+ <line num="64" count="64" type="stmt"/>
1426
+ <line num="65" count="64" type="stmt"/>
1427
+ <line num="66" count="64" type="cond" truecount="2" falsecount="0"/>
1428
+ <line num="69" count="48" type="cond" truecount="2" falsecount="0"/>
1429
+ <line num="70" count="64" type="cond" truecount="4" falsecount="0"/>
1430
+ <line num="72" count="10" type="stmt"/>
1431
+ <line num="73" count="10" type="stmt"/>
1432
+ <line num="74" count="10" type="stmt"/>
1433
+ <line num="75" count="10" type="stmt"/>
1434
+ <line num="78" count="27" type="cond" truecount="2" falsecount="0"/>
1435
+ <line num="79" count="26" type="cond" truecount="1" falsecount="1"/>
1436
+ <line num="80" count="0" type="stmt"/>
1437
+ <line num="83" count="36" type="cond" truecount="2" falsecount="0"/>
1438
+ <line num="87" count="10" type="stmt"/>
1439
+ <line num="89" count="22" type="cond" truecount="2" falsecount="2"/>
1440
+ <line num="90" count="22" type="cond" truecount="2" falsecount="2"/>
1441
+ <line num="91" count="22" type="stmt"/>
1442
+ <line num="95" count="10" type="stmt"/>
1443
+ <line num="107" count="64" type="cond" truecount="2" falsecount="0"/>
1444
+ <line num="110" count="50" type="cond" truecount="2" falsecount="0"/>
1445
+ <line num="114" count="48" type="stmt"/>
1446
+ <line num="115" count="48" type="stmt"/>
1447
+ <line num="118" count="59" type="stmt"/>
1448
+ <line num="119" count="59" type="cond" truecount="2" falsecount="0"/>
1449
+ <line num="120" count="59" type="stmt"/>
1450
+ <line num="124" count="46" type="stmt"/>
1451
+ <line num="126" count="48" type="cond" truecount="1" falsecount="1"/>
1452
+ <line num="127" count="48" type="stmt"/>
1453
+ <line num="128" count="48" type="cond" truecount="2" falsecount="0"/>
1454
+ <line num="129" count="11" type="stmt"/>
1455
+ <line num="130" count="11" type="cond" truecount="2" falsecount="0"/>
1456
+ <line num="131" count="48" type="stmt"/>
1457
+ <line num="132" count="48" type="stmt"/>
1458
+ <line num="136" count="48" type="stmt"/>
1459
+ <line num="138" count="5" type="stmt"/>
1460
+ <line num="139" count="5" type="stmt"/>
1461
+ <line num="141" count="2" type="stmt"/>
1462
+ <line num="144" count="48" type="stmt"/>
1463
+ <line num="146" count="5" type="stmt"/>
1464
+ <line num="147" count="7" type="stmt"/>
1465
+ <line num="156" count="94" type="stmt"/>
1466
+ <line num="157" count="94" type="stmt"/>
1467
+ <line num="158" count="110" type="stmt"/>
1468
+ <line num="161" count="92" type="cond" truecount="1" falsecount="1"/>
1469
+ <line num="162" count="92" type="stmt"/>
1470
+ <line num="163" count="92" type="stmt"/>
1471
+ <line num="167" count="94" type="stmt"/>
1472
+ <line num="168" count="94" type="stmt"/>
1473
+ <line num="169" count="94" type="stmt"/>
1474
+ <line num="170" count="94" type="stmt"/>
1475
+ <line num="171" count="94" type="stmt"/>
1476
+ <line num="172" count="94" type="stmt"/>
1477
+ <line num="173" count="94" type="stmt"/>
1478
+ <line num="176" count="110" type="stmt"/>
1479
+ <line num="177" count="110" type="stmt"/>
1480
+ <line num="178" count="110" type="stmt"/>
1481
+ <line num="179" count="110" type="stmt"/>
1482
+ <line num="180" count="110" type="stmt"/>
1483
+ <line num="184" count="80" type="stmt"/>
1484
+ <line num="185" count="80" type="stmt"/>
1485
+ <line num="186" count="80" type="stmt"/>
1486
+ <line num="187" count="80" type="stmt"/>
1487
+ <line num="189" count="80" type="cond" truecount="4" falsecount="0"/>
1488
+ <line num="190" count="80" type="cond" truecount="4" falsecount="0"/>
1489
+ <line num="192" count="56" type="cond" truecount="2" falsecount="0"/>
1490
+ <line num="195" count="24" type="stmt"/>
1491
+ <line num="202" count="30" type="stmt"/>
1492
+ <line num="203" count="30" type="stmt"/>
1493
+ <line num="207" count="94" type="stmt"/>
1494
+ <line num="216" count="48" type="stmt"/>
1495
+ <line num="217" count="48" type="stmt"/>
1496
+ <line num="219" count="11" type="stmt"/>
1497
+ <line num="222" count="48" type="stmt"/>
1498
+ <line num="225" count="18" type="cond" truecount="2" falsecount="0"/>
1499
+ <line num="229" count="48" type="stmt"/>
1500
+ <line num="231" count="29" type="cond" truecount="2" falsecount="0"/>
1501
+ <line num="232" count="29" type="cond" truecount="2" falsecount="0"/>
1502
+ <line num="235" count="48" type="stmt"/>
1503
+ <line num="237" count="57" type="cond" truecount="2" falsecount="0"/>
1504
+ <line num="238" count="57" type="cond" truecount="2" falsecount="0"/>
1505
+ <line num="239" count="57" type="stmt"/>
1506
+ <line num="240" count="57" type="cond" truecount="2" falsecount="0"/>
1507
+ <line num="241" count="57" type="cond" truecount="2" falsecount="0"/>
1508
+ <line num="242" count="57" type="stmt"/>
1509
+ <line num="243" count="57" type="cond" truecount="2" falsecount="0"/>
1510
+ <line num="244" count="57" type="stmt"/>
1511
+ <line num="253" count="57" type="stmt"/>
1512
+ <line num="254" count="57" type="cond" truecount="2" falsecount="0"/>
1513
+ <line num="255" count="57" type="cond" truecount="1" falsecount="1"/>
1514
+ <line num="256" count="57" type="cond" truecount="2" falsecount="0"/>
1515
+ <line num="257" count="57" type="cond" truecount="2" falsecount="0"/>
1516
+ <line num="258" count="57" type="cond" truecount="2" falsecount="0"/>
1517
+ <line num="259" count="57" type="cond" truecount="2" falsecount="0"/>
1518
+ <line num="260" count="57" type="cond" truecount="2" falsecount="0"/>
1519
+ <line num="261" count="57" type="stmt"/>
1520
+ <line num="273" count="57" type="cond" truecount="2" falsecount="0"/>
1521
+ <line num="274" count="70" type="stmt"/>
1522
+ <line num="283" count="46" type="stmt"/>
1523
+ <line num="284" count="46" type="stmt"/>
1524
+ <line num="285" count="46" type="stmt"/>
1525
+ <line num="286" count="46" type="stmt"/>
1526
+ <line num="296" count="7" type="cond" truecount="2" falsecount="0"/>
1527
+ <line num="299" count="2" type="cond" truecount="2" falsecount="3"/>
1528
+ <line num="302" count="5" type="stmt"/>
1529
+ <line num="310" count="5" type="stmt"/>
1530
+ <line num="313" count="2" type="cond" truecount="1" falsecount="1"/>
1531
+ <line num="314" count="2" type="cond" truecount="1" falsecount="1"/>
1532
+ <line num="315" count="2" type="stmt"/>
1533
+ <line num="316" count="2" type="stmt"/>
1534
+ <line num="348" count="31" type="cond" truecount="5" falsecount="0"/>
1535
+ <line num="349" count="1" type="stmt"/>
1536
+ <line num="350" count="1" type="stmt"/>
1537
+ <line num="380" count="36" type="stmt"/>
1538
+ <line num="381" count="4" type="stmt"/>
1539
+ <line num="382" count="4" type="stmt"/>
1540
+ <line num="412" count="1" type="cond" truecount="1" falsecount="1"/>
1541
+ <line num="413" count="1" type="stmt"/>
1542
+ <line num="438" count="36" type="stmt"/>
1543
+ <line num="440" count="3" type="cond" truecount="1" falsecount="1"/>
1544
+ <line num="441" count="3" type="cond" truecount="2" falsecount="0"/>
1545
+ <line num="442" count="1" type="stmt"/>
1546
+ <line num="443" count="1" type="cond" truecount="4" falsecount="1"/>
1547
+ <line num="444" count="1" type="stmt"/>
1548
+ <line num="445" count="1" type="stmt"/>
1549
+ <line num="469" count="1" type="stmt"/>
1550
+ <line num="474" count="5" type="stmt"/>
1551
+ </file>
1552
+ <file name="index.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/index.ts">
1553
+ <metrics statements="92" coveredstatements="89" conditionals="23" coveredconditionals="23" methods="6" coveredmethods="4"/>
1554
+ <line num="107" count="58" type="stmt"/>
1555
+ <line num="110" count="267" type="cond" truecount="4" falsecount="0"/>
1556
+ <line num="111" count="263" type="stmt"/>
1557
+ <line num="115" count="58" type="stmt"/>
1558
+ <line num="118" count="58" type="stmt"/>
1559
+ <line num="119" count="58" type="stmt"/>
1560
+ <line num="120" count="89" type="stmt"/>
1561
+ <line num="121" count="58" type="stmt"/>
1562
+ <line num="122" count="58" type="stmt"/>
1563
+ <line num="123" count="58" type="stmt"/>
1564
+ <line num="124" count="58" type="stmt"/>
1565
+ <line num="125" count="58" type="stmt"/>
1566
+ <line num="126" count="58" type="stmt"/>
1567
+ <line num="127" count="58" type="stmt"/>
1568
+ <line num="128" count="58" type="stmt"/>
1569
+ <line num="129" count="58" type="stmt"/>
1570
+ <line num="130" count="58" type="stmt"/>
1571
+ <line num="133" count="58" type="stmt"/>
1572
+ <line num="134" count="58" type="stmt"/>
1573
+ <line num="135" count="58" type="stmt"/>
1574
+ <line num="136" count="58" type="stmt"/>
1575
+ <line num="137" count="58" type="stmt"/>
1576
+ <line num="138" count="58" type="stmt"/>
1577
+ <line num="139" count="58" type="stmt"/>
1578
+ <line num="141" count="1" type="stmt"/>
1579
+ <line num="143" count="58" type="stmt"/>
1580
+ <line num="144" count="58" type="stmt"/>
1581
+ <line num="145" count="58" type="stmt"/>
1582
+ <line num="148" count="58" type="stmt"/>
1583
+ <line num="149" count="97" type="stmt"/>
1584
+ <line num="152" count="58" type="stmt"/>
1585
+ <line num="155" count="58" type="stmt"/>
1586
+ <line num="156" count="58" type="stmt"/>
1587
+ <line num="157" count="58" type="stmt"/>
1588
+ <line num="160" count="58" type="stmt"/>
1589
+ <line num="161" count="58" type="stmt"/>
1590
+ <line num="162" count="58" type="stmt"/>
1591
+ <line num="163" count="58" type="stmt"/>
1592
+ <line num="164" count="58" type="stmt"/>
1593
+ <line num="165" count="58" type="stmt"/>
1594
+ <line num="166" count="58" type="stmt"/>
1595
+ <line num="167" count="58" type="stmt"/>
1596
+ <line num="168" count="58" type="stmt"/>
1597
+ <line num="171" count="58" type="stmt"/>
1598
+ <line num="172" count="58" type="stmt"/>
1599
+ <line num="173" count="58" type="stmt"/>
1600
+ <line num="174" count="58" type="stmt"/>
1601
+ <line num="175" count="58" type="stmt"/>
1602
+ <line num="176" count="58" type="stmt"/>
1603
+ <line num="179" count="58" type="stmt"/>
1604
+ <line num="180" count="58" type="stmt"/>
1605
+ <line num="181" count="58" type="stmt"/>
1606
+ <line num="182" count="58" type="stmt"/>
1607
+ <line num="183" count="58" type="stmt"/>
1608
+ <line num="184" count="58" type="stmt"/>
1609
+ <line num="185" count="58" type="stmt"/>
1610
+ <line num="186" count="58" type="stmt"/>
1611
+ <line num="187" count="58" type="stmt"/>
1612
+ <line num="188" count="58" type="stmt"/>
1613
+ <line num="191" count="58" type="stmt"/>
1614
+ <line num="192" count="58" type="stmt"/>
1615
+ <line num="193" count="58" type="stmt"/>
1616
+ <line num="194" count="58" type="stmt"/>
1617
+ <line num="195" count="58" type="stmt"/>
1618
+ <line num="196" count="58" type="stmt"/>
1619
+ <line num="197" count="58" type="stmt"/>
1620
+ <line num="198" count="58" type="stmt"/>
1621
+ <line num="201" count="58" type="stmt"/>
1622
+ <line num="202" count="58" type="stmt"/>
1623
+ <line num="204" count="58" type="stmt"/>
1624
+ <line num="205" count="373" type="stmt"/>
1625
+ <line num="206" count="373" type="cond" truecount="2" falsecount="0"/>
1626
+ <line num="207" count="276" type="cond" truecount="2" falsecount="0"/>
1627
+ <line num="208" count="250" type="cond" truecount="2" falsecount="0"/>
1628
+ <line num="209" count="223" type="stmt"/>
1629
+ <line num="212" count="58" type="stmt"/>
1630
+ <line num="213" count="263" type="stmt"/>
1631
+ <line num="214" count="58" type="cond" truecount="2" falsecount="0"/>
1632
+ <line num="217" count="192" type="stmt"/>
1633
+ <line num="218" count="96" type="stmt"/>
1634
+ <line num="220" count="58" type="stmt"/>
1635
+ <line num="221" count="58" type="stmt"/>
1636
+ <line num="223" count="192" type="stmt"/>
1637
+ <line num="224" count="192" type="stmt"/>
1638
+ <line num="225" count="192" type="stmt"/>
1639
+ <line num="227" count="192" type="cond" truecount="2" falsecount="0"/>
1640
+ <line num="228" count="192" type="stmt"/>
1641
+ <line num="232" count="58" type="stmt"/>
1642
+ <line num="237" count="3" type="cond" truecount="3" falsecount="0"/>
1643
+ <line num="243" count="0" type="stmt"/>
1644
+ <line num="244" count="0" type="stmt"/>
1645
+ <line num="245" count="0" type="stmt"/>
1646
+ </file>
1647
+ <file name="metrics.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/metrics.ts">
1648
+ <metrics statements="53" coveredstatements="53" conditionals="23" coveredconditionals="23" methods="2" coveredmethods="2"/>
1649
+ <line num="8" count="154" type="stmt"/>
1650
+ <line num="28" count="35" type="stmt"/>
1651
+ <line num="29" count="35" type="stmt"/>
1652
+ <line num="30" count="35" type="stmt"/>
1653
+ <line num="31" count="35" type="stmt"/>
1654
+ <line num="33" count="1" type="stmt"/>
1655
+ <line num="34" count="1" type="stmt"/>
1656
+ <line num="37" count="24" type="stmt"/>
1657
+ <line num="38" count="24" type="stmt"/>
1658
+ <line num="40" count="9" type="stmt"/>
1659
+ <line num="41" count="9" type="stmt"/>
1660
+ <line num="43" count="184" type="stmt"/>
1661
+ <line num="44" count="184" type="stmt"/>
1662
+ <line num="51" count="5" type="stmt"/>
1663
+ <line num="60" count="9" type="stmt"/>
1664
+ <line num="61" count="9" type="stmt"/>
1665
+ <line num="62" count="9" type="stmt"/>
1666
+ <line num="63" count="32" type="stmt"/>
1667
+ <line num="64" count="9" type="stmt"/>
1668
+ <line num="67" count="1555" type="stmt"/>
1669
+ <line num="70" count="154" type="stmt"/>
1670
+ <line num="71" count="154" type="stmt"/>
1671
+ <line num="74" count="4" type="stmt"/>
1672
+ <line num="97" count="138" type="stmt"/>
1673
+ <line num="98" count="138" type="stmt"/>
1674
+ <line num="102" count="390" type="stmt"/>
1675
+ <line num="103" count="390" type="cond" truecount="2" falsecount="0"/>
1676
+ <line num="105" count="152" type="stmt"/>
1677
+ <line num="106" count="152" type="cond" truecount="2" falsecount="0"/>
1678
+ <line num="108" count="80" type="stmt"/>
1679
+ <line num="109" count="80" type="cond" truecount="2" falsecount="0"/>
1680
+ <line num="111" count="1481" type="stmt"/>
1681
+ <line num="113" count="138" type="stmt"/>
1682
+ <line num="115" count="138" type="stmt"/>
1683
+ <line num="116" count="138" type="stmt"/>
1684
+ <line num="117" count="138" type="stmt"/>
1685
+ <line num="118" count="138" type="stmt"/>
1686
+ <line num="119" count="138" type="stmt"/>
1687
+ <line num="120" count="443" type="stmt"/>
1688
+ <line num="122" count="138" type="stmt"/>
1689
+ <line num="123" count="138" type="stmt"/>
1690
+ <line num="124" count="138" type="cond" truecount="2" falsecount="0"/>
1691
+ <line num="125" count="138" type="cond" truecount="2" falsecount="0"/>
1692
+ <line num="128" count="138" type="stmt"/>
1693
+ <line num="129" count="138" type="stmt"/>
1694
+ <line num="130" count="138" type="stmt"/>
1695
+ <line num="132" count="138" type="stmt"/>
1696
+ <line num="143" count="141" type="stmt"/>
1697
+ <line num="144" count="141" type="stmt"/>
1698
+ <line num="145" count="141" type="stmt"/>
1699
+ <line num="149" count="141" type="stmt"/>
1700
+ <line num="153" count="132" type="stmt"/>
1701
+ <line num="154" count="132" type="stmt"/>
1702
+ </file>
1703
+ <file name="pipeline.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/pipeline.ts">
1704
+ <metrics statements="231" coveredstatements="27" conditionals="106" coveredconditionals="10" methods="33" coveredmethods="0"/>
1705
+ <line num="43" count="3" type="stmt"/>
1706
+ <line num="46" count="1" type="stmt"/>
1707
+ <line num="47" count="1" type="stmt"/>
1708
+ <line num="48" count="1" type="stmt"/>
1709
+ <line num="51" count="2" type="stmt"/>
1710
+ <line num="52" count="2" type="stmt"/>
1711
+ <line num="53" count="3" type="cond" truecount="3" falsecount="1"/>
1712
+ <line num="54" count="3" type="cond" truecount="1" falsecount="1"/>
1713
+ <line num="56" count="3" type="stmt"/>
1714
+ <line num="59" count="2" type="stmt"/>
1715
+ <line num="62" count="1" type="stmt"/>
1716
+ <line num="63" count="1" type="cond" truecount="0" falsecount="2"/>
1717
+ <line num="64" count="1" type="stmt"/>
1718
+ <line num="66" count="1" type="stmt"/>
1719
+ <line num="67" count="1" type="stmt"/>
1720
+ <line num="70" count="1" type="stmt"/>
1721
+ <line num="71" count="1" type="stmt"/>
1722
+ <line num="75" count="0" type="stmt"/>
1723
+ <line num="76" count="0" type="cond" truecount="0" falsecount="4"/>
1724
+ <line num="77" count="3" type="cond" truecount="1" falsecount="2"/>
1725
+ <line num="80" count="0" type="cond" truecount="0" falsecount="2"/>
1726
+ <line num="81" count="0" type="stmt"/>
1727
+ <line num="82" count="0" type="stmt"/>
1728
+ <line num="86" count="0" type="stmt"/>
1729
+ <line num="90" count="0" type="stmt"/>
1730
+ <line num="93" count="0" type="stmt"/>
1731
+ <line num="103" count="0" type="stmt"/>
1732
+ <line num="104" count="0" type="stmt"/>
1733
+ <line num="105" count="0" type="stmt"/>
1734
+ <line num="106" count="0" type="stmt"/>
1735
+ <line num="108" count="0" type="cond" truecount="0" falsecount="2"/>
1736
+ <line num="109" count="3" type="stmt"/>
1737
+ <line num="110" count="3" type="stmt"/>
1738
+ <line num="111" count="3" type="stmt"/>
1739
+ <line num="112" count="3" type="stmt"/>
1740
+ <line num="125" count="3" type="stmt"/>
1741
+ <line num="126" count="0" type="stmt"/>
1742
+ <line num="137" count="3" type="stmt"/>
1743
+ <line num="138" count="3" type="stmt"/>
1744
+ <line num="140" count="0" type="stmt"/>
1745
+ <line num="141" count="0" type="stmt"/>
1746
+ <line num="142" count="0" type="cond" truecount="0" falsecount="2"/>
1747
+ <line num="143" count="0" type="cond" truecount="0" falsecount="2"/>
1748
+ <line num="148" count="0" type="stmt"/>
1749
+ <line num="150" count="0" type="stmt"/>
1750
+ <line num="159" count="0" type="stmt"/>
1751
+ <line num="161" count="0" type="stmt"/>
1752
+ <line num="162" count="0" type="stmt"/>
1753
+ <line num="163" count="0" type="stmt"/>
1754
+ <line num="164" count="0" type="cond" truecount="0" falsecount="2"/>
1755
+ <line num="165" count="0" type="stmt"/>
1756
+ <line num="166" count="0" type="stmt"/>
1757
+ <line num="167" count="0" type="cond" truecount="0" falsecount="2"/>
1758
+ <line num="169" count="0" type="cond" truecount="0" falsecount="2"/>
1759
+ <line num="170" count="0" type="stmt"/>
1760
+ <line num="172" count="0" type="stmt"/>
1761
+ <line num="175" count="0" type="stmt"/>
1762
+ <line num="177" count="0" type="stmt"/>
1763
+ <line num="181" count="0" type="stmt"/>
1764
+ <line num="184" count="0" type="stmt"/>
1765
+ <line num="185" count="0" type="stmt"/>
1766
+ <line num="188" count="0" type="stmt"/>
1767
+ <line num="189" count="0" type="cond" truecount="0" falsecount="2"/>
1768
+ <line num="191" count="0" type="stmt"/>
1769
+ <line num="192" count="0" type="stmt"/>
1770
+ <line num="193" count="0" type="stmt"/>
1771
+ <line num="203" count="0" type="stmt"/>
1772
+ <line num="206" count="0" type="stmt"/>
1773
+ <line num="209" count="0" type="stmt"/>
1774
+ <line num="211" count="0" type="stmt"/>
1775
+ <line num="212" count="0" type="stmt"/>
1776
+ <line num="213" count="0" type="stmt"/>
1777
+ <line num="214" count="0" type="stmt"/>
1778
+ <line num="215" count="0" type="stmt"/>
1779
+ <line num="217" count="0" type="cond" truecount="0" falsecount="2"/>
1780
+ <line num="219" count="0" type="stmt"/>
1781
+ <line num="220" count="0" type="cond" truecount="0" falsecount="2"/>
1782
+ <line num="222" count="0" type="stmt"/>
1783
+ <line num="223" count="0" type="stmt"/>
1784
+ <line num="224" count="0" type="stmt"/>
1785
+ <line num="225" count="0" type="stmt"/>
1786
+ <line num="226" count="0" type="stmt"/>
1787
+ <line num="228" count="0" type="stmt"/>
1788
+ <line num="229" count="0" type="stmt"/>
1789
+ <line num="230" count="0" type="stmt"/>
1790
+ <line num="234" count="0" type="stmt"/>
1791
+ <line num="235" count="0" type="stmt"/>
1792
+ <line num="237" count="0" type="cond" truecount="0" falsecount="2"/>
1793
+ <line num="242" count="0" type="stmt"/>
1794
+ <line num="244" count="0" type="stmt"/>
1795
+ <line num="245" count="0" type="stmt"/>
1796
+ <line num="246" count="0" type="stmt"/>
1797
+ <line num="248" count="0" type="stmt"/>
1798
+ <line num="249" count="0" type="stmt"/>
1799
+ <line num="260" count="0" type="stmt"/>
1800
+ <line num="262" count="0" type="stmt"/>
1801
+ <line num="263" count="0" type="stmt"/>
1802
+ <line num="264" count="0" type="stmt"/>
1803
+ <line num="265" count="0" type="stmt"/>
1804
+ <line num="267" count="0" type="stmt"/>
1805
+ <line num="271" count="0" type="stmt"/>
1806
+ <line num="283" count="0" type="stmt"/>
1807
+ <line num="285" count="0" type="stmt"/>
1808
+ <line num="288" count="0" type="cond" truecount="0" falsecount="2"/>
1809
+ <line num="294" count="0" type="stmt"/>
1810
+ <line num="297" count="0" type="stmt"/>
1811
+ <line num="300" count="0" type="cond" truecount="0" falsecount="2"/>
1812
+ <line num="301" count="0" type="stmt"/>
1813
+ <line num="307" count="0" type="stmt"/>
1814
+ <line num="309" count="0" type="stmt"/>
1815
+ <line num="310" count="0" type="stmt"/>
1816
+ <line num="311" count="0" type="stmt"/>
1817
+ <line num="312" count="0" type="stmt"/>
1818
+ <line num="313" count="0" type="stmt"/>
1819
+ <line num="315" count="0" type="stmt"/>
1820
+ <line num="322" count="0" type="stmt"/>
1821
+ <line num="328" count="0" type="stmt"/>
1822
+ <line num="335" count="0" type="stmt"/>
1823
+ <line num="336" count="0" type="stmt"/>
1824
+ <line num="339" count="0" type="stmt"/>
1825
+ <line num="342" count="0" type="stmt"/>
1826
+ <line num="344" count="0" type="stmt"/>
1827
+ <line num="346" count="0" type="cond" truecount="0" falsecount="2"/>
1828
+ <line num="347" count="0" type="stmt"/>
1829
+ <line num="348" count="0" type="stmt"/>
1830
+ <line num="349" count="0" type="cond" truecount="0" falsecount="3"/>
1831
+ <line num="350" count="0" type="stmt"/>
1832
+ <line num="351" count="0" type="stmt"/>
1833
+ <line num="360" count="0" type="stmt"/>
1834
+ <line num="361" count="0" type="stmt"/>
1835
+ <line num="363" count="0" type="stmt"/>
1836
+ <line num="365" count="0" type="cond" truecount="0" falsecount="2"/>
1837
+ <line num="366" count="0" type="stmt"/>
1838
+ <line num="367" count="0" type="stmt"/>
1839
+ <line num="368" count="0" type="stmt"/>
1840
+ <line num="375" count="0" type="stmt"/>
1841
+ <line num="376" count="0" type="stmt"/>
1842
+ <line num="378" count="0" type="stmt"/>
1843
+ <line num="381" count="0" type="stmt"/>
1844
+ <line num="394" count="0" type="stmt"/>
1845
+ <line num="403" count="0" type="cond" truecount="0" falsecount="2"/>
1846
+ <line num="406" count="0" type="stmt"/>
1847
+ <line num="407" count="0" type="stmt"/>
1848
+ <line num="409" count="0" type="stmt"/>
1849
+ <line num="410" count="0" type="stmt"/>
1850
+ <line num="411" count="0" type="cond" truecount="0" falsecount="2"/>
1851
+ <line num="416" count="3" type="stmt"/>
1852
+ <line num="418" count="0" type="cond" truecount="0" falsecount="2"/>
1853
+ <line num="421" count="0" type="stmt"/>
1854
+ <line num="422" count="0" type="stmt"/>
1855
+ <line num="423" count="0" type="stmt"/>
1856
+ <line num="425" count="0" type="stmt"/>
1857
+ <line num="426" count="0" type="stmt"/>
1858
+ <line num="427" count="0" type="stmt"/>
1859
+ <line num="430" count="0" type="stmt"/>
1860
+ <line num="434" count="0" type="cond" truecount="0" falsecount="2"/>
1861
+ <line num="439" count="0" type="stmt"/>
1862
+ <line num="453" count="0" type="stmt"/>
1863
+ <line num="454" count="0" type="stmt"/>
1864
+ <line num="455" count="0" type="stmt"/>
1865
+ <line num="459" count="0" type="stmt"/>
1866
+ <line num="460" count="0" type="stmt"/>
1867
+ <line num="461" count="0" type="stmt"/>
1868
+ <line num="462" count="0" type="stmt"/>
1869
+ <line num="463" count="0" type="cond" truecount="0" falsecount="2"/>
1870
+ <line num="466" count="0" type="stmt"/>
1871
+ <line num="467" count="0" type="cond" truecount="0" falsecount="3"/>
1872
+ <line num="469" count="0" type="stmt"/>
1873
+ <line num="472" count="0" type="stmt"/>
1874
+ <line num="474" count="0" type="stmt"/>
1875
+ <line num="475" count="0" type="stmt"/>
1876
+ <line num="476" count="0" type="cond" truecount="0" falsecount="2"/>
1877
+ <line num="478" count="0" type="stmt"/>
1878
+ <line num="480" count="0" type="stmt"/>
1879
+ <line num="481" count="0" type="stmt"/>
1880
+ <line num="483" count="0" type="stmt"/>
1881
+ <line num="484" count="0" type="cond" truecount="0" falsecount="3"/>
1882
+ <line num="487" count="0" type="stmt"/>
1883
+ <line num="492" count="0" type="stmt"/>
1884
+ <line num="493" count="0" type="cond" truecount="0" falsecount="2"/>
1885
+ <line num="494" count="0" type="stmt"/>
1886
+ <line num="495" count="0" type="stmt"/>
1887
+ <line num="496" count="0" type="cond" truecount="0" falsecount="2"/>
1888
+ <line num="503" count="0" type="stmt"/>
1889
+ <line num="504" count="0" type="stmt"/>
1890
+ <line num="505" count="0" type="stmt"/>
1891
+ <line num="506" count="0" type="stmt"/>
1892
+ <line num="507" count="0" type="stmt"/>
1893
+ <line num="509" count="0" type="stmt"/>
1894
+ <line num="531" count="0" type="stmt"/>
1895
+ <line num="542" count="0" type="cond" truecount="0" falsecount="2"/>
1896
+ <line num="543" count="0" type="stmt"/>
1897
+ <line num="544" count="0" type="cond" truecount="0" falsecount="2"/>
1898
+ <line num="545" count="0" type="stmt"/>
1899
+ <line num="554" count="0" type="stmt"/>
1900
+ <line num="569" count="0" type="stmt"/>
1901
+ <line num="573" count="0" type="stmt"/>
1902
+ <line num="575" count="0" type="stmt"/>
1903
+ <line num="577" count="0" type="stmt"/>
1904
+ <line num="579" count="0" type="stmt"/>
1905
+ <line num="581" count="0" type="stmt"/>
1906
+ <line num="584" count="0" type="stmt"/>
1907
+ <line num="586" count="0" type="stmt"/>
1908
+ <line num="589" count="0" type="stmt"/>
1909
+ <line num="591" count="0" type="stmt"/>
1910
+ <line num="592" count="0" type="stmt"/>
1911
+ <line num="593" count="0" type="stmt"/>
1912
+ <line num="594" count="0" type="stmt"/>
1913
+ <line num="597" count="0" type="stmt"/>
1914
+ <line num="599" count="0" type="stmt"/>
1915
+ <line num="600" count="0" type="stmt"/>
1916
+ <line num="601" count="0" type="stmt"/>
1917
+ <line num="605" count="0" type="stmt"/>
1918
+ <line num="606" count="0" type="stmt"/>
1919
+ <line num="607" count="0" type="stmt"/>
1920
+ <line num="611" count="0" type="stmt"/>
1921
+ <line num="615" count="0" type="stmt"/>
1922
+ <line num="616" count="0" type="stmt"/>
1923
+ <line num="618" count="0" type="stmt"/>
1924
+ <line num="621" count="0" type="stmt"/>
1925
+ <line num="622" count="0" type="stmt"/>
1926
+ <line num="623" count="0" type="stmt"/>
1927
+ <line num="625" count="0" type="stmt"/>
1928
+ <line num="629" count="0" type="stmt"/>
1929
+ <line num="631" count="0" type="stmt"/>
1930
+ <line num="632" count="0" type="stmt"/>
1931
+ <line num="634" count="0" type="stmt"/>
1932
+ <line num="642" count="1" type="cond" truecount="4" falsecount="0"/>
1933
+ <line num="649" count="0" type="stmt"/>
1934
+ <line num="650" count="0" type="stmt"/>
1935
+ <line num="651" count="0" type="stmt"/>
1936
+ </file>
1937
+ <file name="report-analysis.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/report-analysis.ts">
1938
+ <metrics statements="142" coveredstatements="129" conditionals="170" coveredconditionals="142" methods="22" coveredmethods="14"/>
1939
+ <line num="28" count="32" type="cond" truecount="2" falsecount="0"/>
1940
+ <line num="29" count="32" type="cond" truecount="2" falsecount="0"/>
1941
+ <line num="30" count="2" type="stmt"/>
1942
+ <line num="31" count="2" type="stmt"/>
1943
+ <line num="32" count="2" type="stmt"/>
1944
+ <line num="33" count="2" type="stmt"/>
1945
+ <line num="35" count="2" type="cond" truecount="2" falsecount="0"/>
1946
+ <line num="36" count="2" type="stmt"/>
1947
+ <line num="38" count="2" type="stmt"/>
1948
+ <line num="39" count="2" type="stmt"/>
1949
+ <line num="42" count="2" type="stmt"/>
1950
+ <line num="51" count="33" type="stmt"/>
1951
+ <line num="52" count="33" type="cond" truecount="2" falsecount="0"/>
1952
+ <line num="55" count="1" type="cond" truecount="1" falsecount="1"/>
1953
+ <line num="56" count="1" type="cond" truecount="2" falsecount="0"/>
1954
+ <line num="57" count="1" type="stmt"/>
1955
+ <line num="59" count="0" type="stmt"/>
1956
+ <line num="60" count="33" type="stmt"/>
1957
+ <line num="71" count="33" type="stmt"/>
1958
+ <line num="72" count="33" type="stmt"/>
1959
+ <line num="74" count="13" type="stmt"/>
1960
+ <line num="78" count="9" type="stmt"/>
1961
+ <line num="81" count="0" type="stmt"/>
1962
+ <line num="84" count="0" type="stmt"/>
1963
+ <line num="87" count="0" type="stmt"/>
1964
+ <line num="90" count="0" type="stmt"/>
1965
+ <line num="93" count="3" type="stmt"/>
1966
+ <line num="96" count="1" type="stmt"/>
1967
+ <line num="99" count="33" type="cond" truecount="2" falsecount="0"/>
1968
+ <line num="100" count="13" type="stmt"/>
1969
+ <line num="104" count="3" type="cond" truecount="2" falsecount="0"/>
1970
+ <line num="105" count="3" type="cond" truecount="0" falsecount="2"/>
1971
+ <line num="106" count="3" type="stmt"/>
1972
+ <line num="107" count="3" type="stmt"/>
1973
+ <line num="108" count="3" type="cond" truecount="2" falsecount="0"/>
1974
+ <line num="109" count="3" type="stmt"/>
1975
+ <line num="122" count="49" type="cond" truecount="1" falsecount="0"/>
1976
+ <line num="123" count="49" type="stmt"/>
1977
+ <line num="133" count="116" type="cond" truecount="2" falsecount="0"/>
1978
+ <line num="137" count="24" type="stmt"/>
1979
+ <line num="139" count="92" type="cond" truecount="2" falsecount="0"/>
1980
+ <line num="144" count="9" type="stmt"/>
1981
+ <line num="146" count="83" type="cond" truecount="1" falsecount="1"/>
1982
+ <line num="147" count="83" type="cond" truecount="4" falsecount="0"/>
1983
+ <line num="149" count="14" type="stmt"/>
1984
+ <line num="151" count="58" type="stmt"/>
1985
+ <line num="155" count="116" type="cond" truecount="1" falsecount="1"/>
1986
+ <line num="156" count="116" type="cond" truecount="2" falsecount="0"/>
1987
+ <line num="157" count="115" type="cond" truecount="2" falsecount="0"/>
1988
+ <line num="158" count="91" type="cond" truecount="2" falsecount="0"/>
1989
+ <line num="159" count="57" type="stmt"/>
1990
+ <line num="163" count="116" type="cond" truecount="2" falsecount="0"/>
1991
+ <line num="164" count="6" type="cond" truecount="2" falsecount="2"/>
1992
+ <line num="165" count="6" type="stmt"/>
1993
+ <line num="166" count="116" type="cond" truecount="2" falsecount="0"/>
1994
+ <line num="167" count="1" type="stmt"/>
1995
+ <line num="169" count="2" type="cond" truecount="1" falsecount="1"/>
1996
+ <line num="170" count="2" type="stmt"/>
1997
+ <line num="171" count="2" type="cond" truecount="1" falsecount="1"/>
1998
+ <line num="172" count="2" type="stmt"/>
1999
+ <line num="179" count="2" type="stmt"/>
2000
+ <line num="180" count="1" type="cond" truecount="1" falsecount="1"/>
2001
+ <line num="184" count="116" type="stmt"/>
2002
+ <line num="186" count="0" type="stmt"/>
2003
+ <line num="192" count="24" type="stmt"/>
2004
+ <line num="198" count="34" type="stmt"/>
2005
+ <line num="203" count="58" type="stmt"/>
2006
+ <line num="216" count="58" type="cond" truecount="1" falsecount="0"/>
2007
+ <line num="217" count="58" type="stmt"/>
2008
+ <line num="218" count="58" type="stmt"/>
2009
+ <line num="219" count="58" type="stmt"/>
2010
+ <line num="220" count="58" type="stmt"/>
2011
+ <line num="223" count="12" type="stmt"/>
2012
+ <line num="226" count="13" type="cond" truecount="1" falsecount="1"/>
2013
+ <line num="229" count="58" type="stmt"/>
2014
+ <line num="231" count="116" type="cond" truecount="2" falsecount="0"/>
2015
+ <line num="232" count="116" type="stmt"/>
2016
+ <line num="235" count="58" type="stmt"/>
2017
+ <line num="236" count="116" type="cond" truecount="2" falsecount="0"/>
2018
+ <line num="237" count="116" type="stmt"/>
2019
+ <line num="238" count="116" type="cond" truecount="2" falsecount="0"/>
2020
+ <line num="239" count="116" type="cond" truecount="2" falsecount="0"/>
2021
+ <line num="240" count="116" type="cond" truecount="2" falsecount="0"/>
2022
+ <line num="241" count="116" type="cond" truecount="2" falsecount="0"/>
2023
+ <line num="242" count="116" type="cond" truecount="2" falsecount="0"/>
2024
+ <line num="244" count="377" type="cond" truecount="2" falsecount="0"/>
2025
+ <line num="247" count="116" type="stmt"/>
2026
+ <line num="253" count="116" type="stmt"/>
2027
+ <line num="277" count="40" type="stmt"/>
2028
+ <line num="286" count="53" type="stmt"/>
2029
+ <line num="288" count="100" type="cond" truecount="2" falsecount="0"/>
2030
+ <line num="289" count="100" type="stmt"/>
2031
+ <line num="292" count="53" type="stmt"/>
2032
+ <line num="293" count="53" type="stmt"/>
2033
+ <line num="296" count="9" type="stmt"/>
2034
+ <line num="297" count="9" type="stmt"/>
2035
+ <line num="311" count="6" type="stmt"/>
2036
+ <line num="312" count="6" type="stmt"/>
2037
+ <line num="326" count="1" type="stmt"/>
2038
+ <line num="327" count="1" type="stmt"/>
2039
+ <line num="340" count="53" type="stmt"/>
2040
+ <line num="341" count="100" type="stmt"/>
2041
+ <line num="343" count="0" type="cond" truecount="0" falsecount="2"/>
2042
+ <line num="344" count="0" type="cond" truecount="0" falsecount="2"/>
2043
+ <line num="345" count="0" type="stmt"/>
2044
+ <line num="348" count="1" type="stmt"/>
2045
+ <line num="349" count="1" type="cond" truecount="1" falsecount="1"/>
2046
+ <line num="350" count="1" type="cond" truecount="1" falsecount="1"/>
2047
+ <line num="351" count="1" type="cond" truecount="1" falsecount="2"/>
2048
+ <line num="352" count="1" type="cond" truecount="1" falsecount="1"/>
2049
+ <line num="353" count="1" type="stmt"/>
2050
+ <line num="371" count="32" type="cond" truecount="2" falsecount="0"/>
2051
+ <line num="373" count="4" type="stmt"/>
2052
+ <line num="386" count="1" type="stmt"/>
2053
+ <line num="399" count="1" type="stmt"/>
2054
+ <line num="413" count="53" type="cond" truecount="2" falsecount="0"/>
2055
+ <line num="414" count="53" type="cond" truecount="2" falsecount="0"/>
2056
+ <line num="416" count="53" type="stmt"/>
2057
+ <line num="418" count="3" type="stmt"/>
2058
+ <line num="419" count="3" type="cond" truecount="2" falsecount="0"/>
2059
+ <line num="420" count="3" type="stmt"/>
2060
+ <line num="438" count="14" type="cond" truecount="2" falsecount="0"/>
2061
+ <line num="439" count="14" type="stmt"/>
2062
+ <line num="452" count="53" type="cond" truecount="2" falsecount="0"/>
2063
+ <line num="453" count="53" type="cond" truecount="2" falsecount="0"/>
2064
+ <line num="454" count="53" type="cond" truecount="2" falsecount="0"/>
2065
+ <line num="455" count="95" type="cond" truecount="2" falsecount="0"/>
2066
+ <line num="457" count="53" type="cond" truecount="2" falsecount="0"/>
2067
+ <line num="459" count="53" type="stmt"/>
2068
+ <line num="461" count="14" type="stmt"/>
2069
+ <line num="464" count="6" type="stmt"/>
2070
+ <line num="467" count="7" type="stmt"/>
2071
+ <line num="469" count="10" type="stmt"/>
2072
+ <line num="472" count="4" type="stmt"/>
2073
+ <line num="474" count="53" type="stmt"/>
2074
+ <line num="476" count="1" type="stmt"/>
2075
+ <line num="479" count="53" type="stmt"/>
2076
+ <line num="480" count="3" type="stmt"/>
2077
+ <line num="481" count="0" type="stmt"/>
2078
+ <line num="492" count="0" type="stmt"/>
2079
+ <line num="493" count="0" type="stmt"/>
2080
+ <line num="494" count="0" type="cond" truecount="0" falsecount="2"/>
2081
+ </file>
2082
+ <file name="report-writer.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/report-writer.ts">
2083
+ <metrics statements="110" coveredstatements="103" conditionals="48" coveredconditionals="34" methods="8" coveredmethods="8"/>
2084
+ <line num="14" count="4" type="stmt"/>
2085
+ <line num="16" count="4" type="stmt"/>
2086
+ <line num="17" count="4" type="stmt"/>
2087
+ <line num="18" count="4" type="stmt"/>
2088
+ <line num="19" count="4" type="stmt"/>
2089
+ <line num="20" count="4" type="stmt"/>
2090
+ <line num="49" count="40" type="stmt"/>
2091
+ <line num="52" count="305" type="stmt"/>
2092
+ <line num="55" count="40" type="stmt"/>
2093
+ <line num="64" count="40" type="stmt"/>
2094
+ <line num="65" count="40" type="cond" truecount="2" falsecount="0"/>
2095
+ <line num="66" count="40" type="cond" truecount="1" falsecount="1"/>
2096
+ <line num="67" count="40" type="stmt"/>
2097
+ <line num="74" count="88" type="stmt"/>
2098
+ <line num="75" count="88" type="stmt"/>
2099
+ <line num="76" count="88" type="stmt"/>
2100
+ <line num="77" count="88" type="stmt"/>
2101
+ <line num="78" count="88" type="stmt"/>
2102
+ <line num="79" count="40" type="cond" truecount="2" falsecount="0"/>
2103
+ <line num="81" count="40" type="stmt"/>
2104
+ <line num="99" count="40" type="stmt"/>
2105
+ <line num="110" count="40" type="stmt"/>
2106
+ <line num="120" count="13" type="stmt"/>
2107
+ <line num="128" count="13" type="stmt"/>
2108
+ <line num="132" count="12" type="stmt"/>
2109
+ <line num="140" count="12" type="stmt"/>
2110
+ <line num="143" count="40" type="stmt"/>
2111
+ <line num="150" count="40" type="stmt"/>
2112
+ <line num="158" count="5" type="stmt"/>
2113
+ <line num="159" count="5" type="stmt"/>
2114
+ <line num="160" count="5" type="stmt"/>
2115
+ <line num="164" count="2" type="stmt"/>
2116
+ <line num="165" count="2" type="stmt"/>
2117
+ <line num="168" count="40" type="stmt"/>
2118
+ <line num="192" count="40" type="stmt"/>
2119
+ <line num="194" count="40" type="stmt"/>
2120
+ <line num="202" count="40" type="stmt"/>
2121
+ <line num="203" count="40" type="stmt"/>
2122
+ <line num="205" count="40" type="stmt"/>
2123
+ <line num="207" count="40" type="stmt"/>
2124
+ <line num="211" count="5" type="stmt"/>
2125
+ <line num="212" count="5" type="stmt"/>
2126
+ <line num="213" count="5" type="stmt"/>
2127
+ <line num="214" count="5" type="stmt"/>
2128
+ <line num="215" count="5" type="stmt"/>
2129
+ <line num="217" count="5" type="stmt"/>
2130
+ <line num="218" count="3" type="cond" truecount="1" falsecount="1"/>
2131
+ <line num="220" count="5" type="stmt"/>
2132
+ <line num="222" count="12" type="stmt"/>
2133
+ <line num="226" count="39" type="stmt"/>
2134
+ <line num="227" count="39" type="cond" truecount="1" falsecount="1"/>
2135
+ <line num="228" count="0" type="stmt"/>
2136
+ <line num="231" count="75" type="stmt"/>
2137
+ <line num="233" count="5" type="stmt"/>
2138
+ <line num="234" count="5" type="stmt"/>
2139
+ <line num="236" count="5" type="stmt"/>
2140
+ <line num="241" count="9" type="stmt"/>
2141
+ <line num="243" count="12" type="stmt"/>
2142
+ <line num="247" count="9" type="stmt"/>
2143
+ <line num="248" count="9" type="cond" truecount="1" falsecount="1"/>
2144
+ <line num="249" count="9" type="stmt"/>
2145
+ <line num="251" count="9" type="stmt"/>
2146
+ <line num="253" count="9" type="stmt"/>
2147
+ <line num="255" count="0" type="stmt"/>
2148
+ <line num="257" count="0" type="stmt"/>
2149
+ <line num="262" count="9" type="cond" truecount="1" falsecount="1"/>
2150
+ <line num="264" count="9" type="cond" truecount="1" falsecount="1"/>
2151
+ <line num="265" count="9" type="stmt"/>
2152
+ <line num="266" count="9" type="cond" truecount="1" falsecount="1"/>
2153
+ <line num="267" count="9" type="stmt"/>
2154
+ <line num="270" count="9" type="stmt"/>
2155
+ <line num="272" count="0" type="stmt"/>
2156
+ <line num="277" count="5" type="stmt"/>
2157
+ <line num="280" count="3" type="stmt"/>
2158
+ <line num="281" count="3" type="stmt"/>
2159
+ <line num="282" count="3" type="stmt"/>
2160
+ <line num="284" count="3" type="stmt"/>
2161
+ <line num="285" count="9" type="stmt"/>
2162
+ <line num="286" count="9" type="stmt"/>
2163
+ <line num="287" count="9" type="stmt"/>
2164
+ <line num="290" count="3" type="stmt"/>
2165
+ <line num="294" count="3" type="stmt"/>
2166
+ <line num="295" count="3" type="stmt"/>
2167
+ <line num="296" count="3" type="stmt"/>
2168
+ <line num="298" count="3" type="stmt"/>
2169
+ <line num="299" count="6" type="stmt"/>
2170
+ <line num="300" count="6" type="stmt"/>
2171
+ <line num="301" count="6" type="stmt"/>
2172
+ <line num="304" count="3" type="stmt"/>
2173
+ <line num="307" count="5" type="stmt"/>
2174
+ <line num="308" count="5" type="stmt"/>
2175
+ <line num="309" count="5" type="stmt"/>
2176
+ <line num="310" count="5" type="stmt"/>
2177
+ <line num="311" count="5" type="stmt"/>
2178
+ <line num="312" count="5" type="stmt"/>
2179
+ <line num="313" count="5" type="stmt"/>
2180
+ <line num="314" count="5" type="cond" truecount="2" falsecount="0"/>
2181
+ <line num="315" count="5" type="cond" truecount="2" falsecount="0"/>
2182
+ <line num="316" count="5" type="cond" truecount="2" falsecount="0"/>
2183
+ <line num="317" count="5" type="cond" truecount="2" falsecount="0"/>
2184
+ <line num="318" count="5" type="stmt"/>
2185
+ <line num="321" count="3" type="stmt"/>
2186
+ <line num="322" count="3" type="stmt"/>
2187
+ <line num="323" count="3" type="stmt"/>
2188
+ <line num="325" count="3" type="cond" truecount="1" falsecount="1"/>
2189
+ <line num="327" count="3" type="stmt"/>
2190
+ <line num="331" count="0" type="stmt"/>
2191
+ <line num="333" count="0" type="stmt"/>
2192
+ <line num="335" count="0" type="stmt"/>
2193
+ <line num="338" count="5" type="stmt"/>
2194
+ </file>
2195
+ <file name="security-detectors.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/security-detectors.ts">
2196
+ <metrics statements="83" coveredstatements="83" conditionals="133" coveredconditionals="112" methods="13" coveredmethods="13"/>
2197
+ <line num="7" count="4" type="stmt"/>
2198
+ <line num="9" count="4" type="stmt"/>
2199
+ <line num="14" count="20" type="stmt"/>
2200
+ <line num="22" count="65" type="stmt"/>
2201
+ <line num="24" count="66" type="cond" truecount="2" falsecount="0"/>
2202
+ <line num="25" count="63" type="cond" truecount="2" falsecount="0"/>
2203
+ <line num="26" count="5" type="cond" truecount="3" falsecount="0"/>
2204
+ <line num="28" count="66" type="cond" truecount="2" falsecount="0"/>
2205
+ <line num="30" count="3" type="stmt"/>
2206
+ <line num="67" count="65" type="stmt"/>
2207
+ <line num="71" count="61" type="stmt"/>
2208
+ <line num="73" count="62" type="cond" truecount="2" falsecount="0"/>
2209
+ <line num="75" count="1" type="stmt"/>
2210
+ <line num="109" count="61" type="stmt"/>
2211
+ <line num="113" count="61" type="stmt"/>
2212
+ <line num="115" count="62" type="cond" truecount="2" falsecount="0"/>
2213
+ <line num="117" count="1" type="stmt"/>
2214
+ <line num="143" count="61" type="stmt"/>
2215
+ <line num="147" count="61" type="stmt"/>
2216
+ <line num="149" count="62" type="cond" truecount="2" falsecount="0"/>
2217
+ <line num="150" count="59" type="cond" truecount="2" falsecount="0"/>
2218
+ <line num="152" count="1" type="stmt"/>
2219
+ <line num="178" count="61" type="stmt"/>
2220
+ <line num="182" count="62" type="stmt"/>
2221
+ <line num="184" count="63" type="cond" truecount="2" falsecount="0"/>
2222
+ <line num="187" count="2" type="stmt"/>
2223
+ <line num="224" count="62" type="stmt"/>
2224
+ <line num="228" count="63" type="stmt"/>
2225
+ <line num="230" count="64" type="cond" truecount="2" falsecount="0"/>
2226
+ <line num="231" count="61" type="cond" truecount="4" falsecount="0"/>
2227
+ <line num="238" count="1" type="stmt"/>
2228
+ <line num="239" count="1" type="stmt"/>
2229
+ <line num="241" count="1" type="stmt"/>
2230
+ <line num="242" count="1" type="stmt"/>
2231
+ <line num="245" count="1" type="stmt"/>
2232
+ <line num="246" count="1" type="stmt"/>
2233
+ <line num="248" count="3" type="stmt"/>
2234
+ <line num="286" count="63" type="stmt"/>
2235
+ <line num="290" count="64" type="stmt"/>
2236
+ <line num="292" count="65" type="cond" truecount="2" falsecount="0"/>
2237
+ <line num="294" count="4" type="cond" truecount="4" falsecount="0"/>
2238
+ <line num="295" count="2" type="stmt"/>
2239
+ <line num="296" count="2" type="cond" truecount="2" falsecount="0"/>
2240
+ <line num="297" count="4" type="stmt"/>
2241
+ <line num="336" count="2" type="stmt"/>
2242
+ <line num="340" count="64" type="stmt"/>
2243
+ <line num="344" count="64" type="stmt"/>
2244
+ <line num="346" count="65" type="cond" truecount="2" falsecount="0"/>
2245
+ <line num="348" count="5" type="cond" truecount="4" falsecount="0"/>
2246
+ <line num="349" count="4" type="cond" truecount="2" falsecount="0"/>
2247
+ <line num="350" count="3" type="cond" truecount="2" falsecount="0"/>
2248
+ <line num="351" count="2" type="stmt"/>
2249
+ <line num="352" count="2" type="stmt"/>
2250
+ <line num="353" count="2" type="cond" truecount="2" falsecount="0"/>
2251
+ <line num="354" count="5" type="stmt"/>
2252
+ <line num="393" count="2" type="stmt"/>
2253
+ <line num="397" count="64" type="stmt"/>
2254
+ <line num="403" count="63" type="stmt"/>
2255
+ <line num="405" count="64" type="cond" truecount="2" falsecount="0"/>
2256
+ <line num="407" count="4" type="cond" truecount="2" falsecount="0"/>
2257
+ <line num="408" count="4" type="cond" truecount="2" falsecount="0"/>
2258
+ <line num="409" count="3" type="cond" truecount="2" falsecount="0"/>
2259
+ <line num="411" count="2" type="stmt"/>
2260
+ <line num="412" count="2" type="cond" truecount="2" falsecount="0"/>
2261
+ <line num="413" count="4" type="stmt"/>
2262
+ <line num="415" count="4" type="stmt"/>
2263
+ <line num="448" count="2" type="stmt"/>
2264
+ <line num="452" count="63" type="stmt"/>
2265
+ <line num="458" count="64" type="stmt"/>
2266
+ <line num="460" count="65" type="cond" truecount="2" falsecount="0"/>
2267
+ <line num="462" count="5" type="stmt"/>
2268
+ <line num="463" count="5" type="cond" truecount="2" falsecount="0"/>
2269
+ <line num="464" count="4" type="cond" truecount="2" falsecount="0"/>
2270
+ <line num="467" count="3" type="stmt"/>
2271
+ <line num="468" count="4" type="stmt"/>
2272
+ <line num="470" count="3" type="stmt"/>
2273
+ <line num="471" count="4" type="stmt"/>
2274
+ <line num="476" count="2" type="cond" truecount="1" falsecount="1"/>
2275
+ <line num="477" count="2" type="stmt"/>
2276
+ <line num="510" count="2" type="stmt"/>
2277
+ <line num="516" count="1" type="stmt"/>
2278
+ <line num="548" count="1" type="stmt"/>
2279
+ <line num="553" count="64" type="stmt"/>
2280
+ </file>
2281
+ <file name="semantic-detectors.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/semantic-detectors.ts">
2282
+ <metrics statements="126" coveredstatements="124" conditionals="46" coveredconditionals="40" methods="4" coveredmethods="4"/>
2283
+ <line num="15" count="6" type="stmt"/>
2284
+ <line num="20" count="4" type="stmt"/>
2285
+ <line num="51" count="6" type="stmt"/>
2286
+ <line num="58" count="3" type="stmt"/>
2287
+ <line num="59" count="3" type="stmt"/>
2288
+ <line num="62" count="4" type="stmt"/>
2289
+ <line num="63" count="4" type="cond" truecount="1" falsecount="1"/>
2290
+ <line num="67" count="3" type="stmt"/>
2291
+ <line num="68" count="3" type="stmt"/>
2292
+ <line num="70" count="3" type="stmt"/>
2293
+ <line num="75" count="3" type="stmt"/>
2294
+ <line num="78" count="1" type="stmt"/>
2295
+ <line num="80" count="1" type="stmt"/>
2296
+ <line num="86" count="3" type="stmt"/>
2297
+ <line num="88" count="3" type="stmt"/>
2298
+ <line num="89" count="3" type="stmt"/>
2299
+ <line num="91" count="57" type="stmt"/>
2300
+ <line num="93" count="4" type="stmt"/>
2301
+ <line num="98" count="1" type="stmt"/>
2302
+ <line num="99" count="1" type="stmt"/>
2303
+ <line num="100" count="1" type="stmt"/>
2304
+ <line num="130" count="3" type="stmt"/>
2305
+ <line num="136" count="5" type="stmt"/>
2306
+ <line num="140" count="2" type="stmt"/>
2307
+ <line num="170" count="5" type="stmt"/>
2308
+ <line num="177" count="5" type="stmt"/>
2309
+ <line num="178" count="5" type="stmt"/>
2310
+ <line num="181" count="7" type="stmt"/>
2311
+ <line num="182" count="7" type="cond" truecount="1" falsecount="1"/>
2312
+ <line num="184" count="7" type="stmt"/>
2313
+ <line num="185" count="7" type="stmt"/>
2314
+ <line num="189" count="8" type="stmt"/>
2315
+ <line num="190" count="8" type="stmt"/>
2316
+ <line num="191" count="8" type="stmt"/>
2317
+ <line num="195" count="5" type="stmt"/>
2318
+ <line num="196" count="5" type="stmt"/>
2319
+ <line num="198" count="5" type="stmt"/>
2320
+ <line num="200" count="5" type="stmt"/>
2321
+ <line num="201" count="5" type="stmt"/>
2322
+ <line num="202" count="5" type="stmt"/>
2323
+ <line num="206" count="45" type="stmt"/>
2324
+ <line num="208" count="8" type="stmt"/>
2325
+ <line num="209" count="8" type="stmt"/>
2326
+ <line num="211" count="90" type="stmt"/>
2327
+ <line num="213" count="7" type="stmt"/>
2328
+ <line num="216" count="8" type="cond" truecount="1" falsecount="1"/>
2329
+ <line num="217" count="8" type="stmt"/>
2330
+ <line num="221" count="5" type="stmt"/>
2331
+ <line num="222" count="5" type="stmt"/>
2332
+ <line num="223" count="5" type="stmt"/>
2333
+ <line num="227" count="2" type="stmt"/>
2334
+ <line num="229" count="2" type="stmt"/>
2335
+ <line num="230" count="2" type="stmt"/>
2336
+ <line num="232" count="2" type="stmt"/>
2337
+ <line num="233" count="2" type="stmt"/>
2338
+ <line num="234" count="2" type="stmt"/>
2339
+ <line num="235" count="2" type="stmt"/>
2340
+ <line num="241" count="4" type="stmt"/>
2341
+ <line num="242" count="4" type="stmt"/>
2342
+ <line num="243" count="4" type="stmt"/>
2343
+ <line num="257" count="2" type="stmt"/>
2344
+ <line num="259" count="11" type="cond" truecount="2" falsecount="0"/>
2345
+ <line num="261" count="9" type="stmt"/>
2346
+ <line num="262" count="9" type="stmt"/>
2347
+ <line num="265" count="5" type="stmt"/>
2348
+ <line num="268" count="9" type="stmt"/>
2349
+ <line num="269" count="9" type="stmt"/>
2350
+ <line num="270" count="9" type="stmt"/>
2351
+ <line num="274" count="8" type="stmt"/>
2352
+ <line num="277" count="5" type="stmt"/>
2353
+ <line num="285" count="5" type="stmt"/>
2354
+ <line num="289" count="3" type="stmt"/>
2355
+ <line num="319" count="5" type="stmt"/>
2356
+ <line num="326" count="6" type="stmt"/>
2357
+ <line num="331" count="3" type="stmt"/>
2358
+ <line num="355" count="6" type="stmt"/>
2359
+ <line num="361" count="6" type="stmt"/>
2360
+ <line num="365" count="3" type="stmt"/>
2361
+ <line num="367" count="1" type="stmt"/>
2362
+ <line num="370" count="2" type="stmt"/>
2363
+ <line num="374" count="3" type="stmt"/>
2364
+ <line num="405" count="6" type="stmt"/>
2365
+ <line num="413" count="5" type="stmt"/>
2366
+ <line num="417" count="3" type="stmt"/>
2367
+ <line num="447" count="5" type="stmt"/>
2368
+ <line num="454" count="5" type="stmt"/>
2369
+ <line num="457" count="6" type="stmt"/>
2370
+ <line num="458" count="6" type="cond" truecount="1" falsecount="1"/>
2371
+ <line num="462" count="4" type="cond" truecount="2" falsecount="0"/>
2372
+ <line num="464" count="1" type="stmt"/>
2373
+ <line num="465" count="1" type="stmt"/>
2374
+ <line num="468" count="3" type="stmt"/>
2375
+ <line num="469" count="3" type="stmt"/>
2376
+ <line num="472" count="0" type="stmt"/>
2377
+ <line num="473" count="0" type="stmt"/>
2378
+ <line num="476" count="3" type="stmt"/>
2379
+ <line num="481" count="3" type="stmt"/>
2380
+ <line num="486" count="2" type="stmt"/>
2381
+ <line num="488" count="2" type="stmt"/>
2382
+ <line num="496" count="2" type="stmt"/>
2383
+ <line num="497" count="2" type="stmt"/>
2384
+ <line num="526" count="71" type="stmt"/>
2385
+ <line num="528" count="6" type="stmt"/>
2386
+ <line num="531" count="5" type="stmt"/>
2387
+ <line num="540" count="4" type="stmt"/>
2388
+ <line num="545" count="1" type="stmt"/>
2389
+ <line num="577" count="4" type="stmt"/>
2390
+ <line num="585" count="4" type="stmt"/>
2391
+ <line num="590" count="2" type="stmt"/>
2392
+ <line num="622" count="4" type="stmt"/>
2393
+ <line num="630" count="4" type="stmt"/>
2394
+ <line num="634" count="1" type="stmt"/>
2395
+ <line num="664" count="4" type="stmt"/>
2396
+ <line num="674" count="2" type="stmt"/>
2397
+ <line num="676" count="2" type="stmt"/>
2398
+ <line num="677" count="2" type="stmt"/>
2399
+ <line num="678" count="2" type="stmt"/>
2400
+ <line num="679" count="2" type="stmt"/>
2401
+ <line num="680" count="2" type="cond" truecount="2" falsecount="0"/>
2402
+ <line num="681" count="2" type="stmt"/>
2403
+ <line num="682" count="2" type="stmt"/>
2404
+ <line num="683" count="2" type="stmt"/>
2405
+ <line num="684" count="2" type="cond" truecount="2" falsecount="0"/>
2406
+ <line num="685" count="2" type="stmt"/>
2407
+ <line num="686" count="2" type="stmt"/>
2408
+ <line num="688" count="2" type="stmt"/>
2409
+ </file>
2410
+ <file name="semantic.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/semantic.ts">
2411
+ <metrics statements="201" coveredstatements="195" conditionals="174" coveredconditionals="135" methods="12" coveredmethods="11"/>
2412
+ <line num="88" count="31" type="stmt"/>
2413
+ <line num="89" count="31" type="cond" truecount="2" falsecount="0"/>
2414
+ <line num="90" count="1" type="stmt"/>
2415
+ <line num="91" count="1" type="cond" truecount="1" falsecount="1"/>
2416
+ <line num="92" count="1" type="stmt"/>
2417
+ <line num="96" count="31" type="stmt"/>
2418
+ <line num="97" count="31" type="cond" truecount="2" falsecount="0"/>
2419
+ <line num="107" count="31" type="stmt"/>
2420
+ <line num="108" count="31" type="stmt"/>
2421
+ <line num="110" count="47" type="stmt"/>
2422
+ <line num="111" count="47" type="stmt"/>
2423
+ <line num="115" count="31" type="stmt"/>
2424
+ <line num="116" count="68" type="stmt"/>
2425
+ <line num="117" count="4398" type="stmt"/>
2426
+ <line num="119" count="2000" type="stmt"/>
2427
+ <line num="120" count="2000" type="cond" truecount="2" falsecount="0"/>
2428
+ <line num="122" count="1953" type="stmt"/>
2429
+ <line num="123" count="1953" type="stmt"/>
2430
+ <line num="125" count="0" type="stmt"/>
2431
+ <line num="128" count="31" type="stmt"/>
2432
+ <line num="129" count="2068" type="stmt"/>
2433
+ <line num="138" count="31" type="stmt"/>
2434
+ <line num="139" count="31" type="stmt"/>
2435
+ <line num="140" count="31" type="stmt"/>
2436
+ <line num="142" count="31" type="stmt"/>
2437
+ <line num="152" count="19" type="stmt"/>
2438
+ <line num="153" count="19" type="cond" truecount="1" falsecount="1"/>
2439
+ <line num="155" count="19" type="stmt"/>
2440
+ <line num="156" count="19" type="cond" truecount="1" falsecount="1"/>
2441
+ <line num="158" count="19" type="stmt"/>
2442
+ <line num="159" count="19" type="cond" truecount="1" falsecount="1"/>
2443
+ <line num="161" count="19" type="stmt"/>
2444
+ <line num="162" count="19" type="stmt"/>
2445
+ <line num="165" count="35" type="cond" truecount="2" falsecount="0"/>
2446
+ <line num="166" count="16" type="cond" truecount="4" falsecount="0"/>
2447
+ <line num="167" count="14" type="stmt"/>
2448
+ <line num="168" count="14" type="stmt"/>
2449
+ <line num="171" count="19" type="stmt"/>
2450
+ <line num="179" count="24" type="stmt"/>
2451
+ <line num="180" count="24" type="cond" truecount="2" falsecount="0"/>
2452
+ <line num="186" count="226" type="cond" truecount="2" falsecount="0"/>
2453
+ <line num="189" count="24" type="stmt"/>
2454
+ <line num="190" count="24" type="stmt"/>
2455
+ <line num="193" count="133" type="stmt"/>
2456
+ <line num="195" count="24" type="stmt"/>
2457
+ <line num="196" count="24" type="stmt"/>
2458
+ <line num="200" count="9" type="stmt"/>
2459
+ <line num="201" count="9" type="stmt"/>
2460
+ <line num="202" count="9" type="stmt"/>
2461
+ <line num="203" count="9" type="stmt"/>
2462
+ <line num="206" count="21" type="cond" truecount="1" falsecount="1"/>
2463
+ <line num="207" count="21" type="cond" truecount="2" falsecount="0"/>
2464
+ <line num="208" count="12" type="stmt"/>
2465
+ <line num="209" count="12" type="stmt"/>
2466
+ <line num="210" count="12" type="cond" truecount="1" falsecount="1"/>
2467
+ <line num="211" count="12" type="stmt"/>
2468
+ <line num="212" count="12" type="stmt"/>
2469
+ <line num="213" count="12" type="stmt"/>
2470
+ <line num="214" count="12" type="stmt"/>
2471
+ <line num="215" count="12" type="cond" truecount="1" falsecount="1"/>
2472
+ <line num="218" count="9" type="stmt"/>
2473
+ <line num="227" count="21" type="stmt"/>
2474
+ <line num="242" count="21" type="stmt"/>
2475
+ <line num="243" count="21" type="cond" truecount="1" falsecount="1"/>
2476
+ <line num="245" count="21" type="cond" truecount="1" falsecount="1"/>
2477
+ <line num="247" count="19" type="cond" truecount="1" falsecount="1"/>
2478
+ <line num="248" count="19" type="stmt"/>
2479
+ <line num="249" count="19" type="stmt"/>
2480
+ <line num="258" count="5" type="cond" truecount="4" falsecount="0"/>
2481
+ <line num="259" count="4" type="cond" truecount="3" falsecount="1"/>
2482
+ <line num="261" count="4" type="stmt"/>
2483
+ <line num="262" count="4" type="cond" truecount="1" falsecount="1"/>
2484
+ <line num="264" count="4" type="stmt"/>
2485
+ <line num="267" count="8" type="cond" truecount="2" falsecount="0"/>
2486
+ <line num="270" count="4" type="cond" truecount="3" falsecount="1"/>
2487
+ <line num="272" count="4" type="stmt"/>
2488
+ <line num="273" count="4" type="stmt"/>
2489
+ <line num="277" count="0" type="stmt"/>
2490
+ <line num="279" count="4" type="stmt"/>
2491
+ <line num="283" count="7" type="cond" truecount="1" falsecount="1"/>
2492
+ <line num="284" count="7" type="stmt"/>
2493
+ <line num="285" count="7" type="cond" truecount="2" falsecount="0"/>
2494
+ <line num="287" count="6" type="stmt"/>
2495
+ <line num="288" count="6" type="stmt"/>
2496
+ <line num="292" count="11" type="cond" truecount="2" falsecount="0"/>
2497
+ <line num="297" count="1" type="stmt"/>
2498
+ <line num="308" count="21" type="stmt"/>
2499
+ <line num="309" count="21" type="stmt"/>
2500
+ <line num="312" count="9" type="stmt"/>
2501
+ <line num="313" count="9" type="stmt"/>
2502
+ <line num="315" count="5" type="stmt"/>
2503
+ <line num="322" count="5" type="stmt"/>
2504
+ <line num="330" count="3" type="stmt"/>
2505
+ <line num="331" count="3" type="stmt"/>
2506
+ <line num="332" count="3" type="stmt"/>
2507
+ <line num="333" count="3" type="cond" truecount="1" falsecount="1"/>
2508
+ <line num="334" count="6" type="cond" truecount="1" falsecount="1"/>
2509
+ <line num="335" count="4" type="stmt"/>
2510
+ <line num="337" count="3" type="stmt"/>
2511
+ <line num="340" count="4" type="stmt"/>
2512
+ <line num="342" count="4" type="stmt"/>
2513
+ <line num="343" count="4" type="stmt"/>
2514
+ <line num="344" count="4" type="cond" truecount="2" falsecount="0"/>
2515
+ <line num="350" count="1" type="stmt"/>
2516
+ <line num="364" count="5" type="stmt"/>
2517
+ <line num="365" count="0" type="stmt"/>
2518
+ <line num="368" count="9" type="stmt"/>
2519
+ <line num="369" count="9" type="stmt"/>
2520
+ <line num="370" count="9" type="stmt"/>
2521
+ <line num="371" count="9" type="stmt"/>
2522
+ <line num="373" count="21" type="cond" truecount="1" falsecount="1"/>
2523
+ <line num="374" count="21" type="cond" truecount="2" falsecount="0"/>
2524
+ <line num="375" count="12" type="stmt"/>
2525
+ <line num="376" count="12" type="stmt"/>
2526
+ <line num="378" count="12" type="stmt"/>
2527
+ <line num="380" count="12" type="cond" truecount="2" falsecount="0"/>
2528
+ <line num="383" count="12" type="stmt"/>
2529
+ <line num="384" count="12" type="cond" truecount="1" falsecount="1"/>
2530
+ <line num="389" count="9" type="stmt"/>
2531
+ <line num="390" count="9" type="stmt"/>
2532
+ <line num="392" count="5" type="stmt"/>
2533
+ <line num="405" count="6" type="stmt"/>
2534
+ <line num="406" count="6" type="stmt"/>
2535
+ <line num="410" count="1" type="stmt"/>
2536
+ <line num="413" count="378" type="stmt"/>
2537
+ <line num="415" count="21" type="stmt"/>
2538
+ <line num="417" count="21" type="stmt"/>
2539
+ <line num="418" count="21" type="cond" truecount="2" falsecount="0"/>
2540
+ <line num="420" count="21" type="cond" truecount="1" falsecount="1"/>
2541
+ <line num="422" count="5" type="cond" truecount="1" falsecount="1"/>
2542
+ <line num="423" count="5" type="stmt"/>
2543
+ <line num="424" count="5" type="cond" truecount="1" falsecount="1"/>
2544
+ <line num="426" count="5" type="stmt"/>
2545
+ <line num="427" count="5" type="stmt"/>
2546
+ <line num="431" count="14" type="cond" truecount="2" falsecount="0"/>
2547
+ <line num="432" count="9" type="cond" truecount="2" falsecount="0"/>
2548
+ <line num="433" count="4" type="stmt"/>
2549
+ <line num="439" count="1" type="stmt"/>
2550
+ <line num="443" count="3" type="stmt"/>
2551
+ <line num="445" count="3" type="stmt"/>
2552
+ <line num="447" count="3" type="cond" truecount="1" falsecount="1"/>
2553
+ <line num="448" count="3" type="stmt"/>
2554
+ <line num="450" count="3" type="stmt"/>
2555
+ <line num="452" count="1" type="stmt"/>
2556
+ <line num="465" count="21" type="stmt"/>
2557
+ <line num="466" count="5" type="stmt"/>
2558
+ <line num="469" count="2" type="stmt"/>
2559
+ <line num="472" count="10" type="cond" truecount="2" falsecount="0"/>
2560
+ <line num="476" count="2" type="stmt"/>
2561
+ <line num="477" count="2" type="stmt"/>
2562
+ <line num="479" count="6" type="stmt"/>
2563
+ <line num="481" count="2" type="stmt"/>
2564
+ <line num="484" count="2" type="stmt"/>
2565
+ <line num="486" count="2" type="stmt"/>
2566
+ <line num="487" count="2" type="cond" truecount="2" falsecount="0"/>
2567
+ <line num="489" count="1" type="stmt"/>
2568
+ <line num="490" count="1" type="stmt"/>
2569
+ <line num="492" count="1" type="stmt"/>
2570
+ <line num="506" count="2" type="cond" truecount="4" falsecount="0"/>
2571
+ <line num="507" count="1" type="stmt"/>
2572
+ <line num="510" count="2" type="cond" truecount="2" falsecount="0"/>
2573
+ <line num="513" count="1" type="stmt"/>
2574
+ <line num="514" count="1" type="stmt"/>
2575
+ <line num="516" count="0" type="stmt"/>
2576
+ <line num="518" count="1" type="stmt"/>
2577
+ <line num="519" count="1" type="cond" truecount="1" falsecount="1"/>
2578
+ <line num="522" count="1" type="cond" truecount="1" falsecount="1"/>
2579
+ <line num="523" count="1" type="stmt"/>
2580
+ <line num="524" count="1" type="cond" truecount="2" falsecount="2"/>
2581
+ <line num="526" count="1" type="stmt"/>
2582
+ <line num="527" count="1" type="stmt"/>
2583
+ <line num="528" count="1" type="cond" truecount="1" falsecount="1"/>
2584
+ <line num="530" count="1" type="stmt"/>
2585
+ <line num="531" count="1" type="stmt"/>
2586
+ <line num="532" count="1" type="stmt"/>
2587
+ <line num="536" count="5" type="cond" truecount="2" falsecount="0"/>
2588
+ <line num="537" count="4" type="stmt"/>
2589
+ <line num="538" count="4" type="cond" truecount="1" falsecount="1"/>
2590
+ <line num="539" count="4" type="stmt"/>
2591
+ <line num="542" count="16" type="stmt"/>
2592
+ <line num="543" count="16" type="stmt"/>
2593
+ <line num="546" count="4" type="stmt"/>
2594
+ <line num="548" count="4" type="stmt"/>
2595
+ <line num="550" count="2" type="stmt"/>
2596
+ <line num="551" count="14" type="stmt"/>
2597
+ <line num="553" count="4" type="cond" truecount="2" falsecount="0"/>
2598
+ <line num="555" count="2" type="stmt"/>
2599
+ <line num="556" count="0" type="cond" truecount="2" falsecount="0"/>
2600
+ <line num="558" count="2" type="stmt"/>
2601
+ <line num="559" count="2" type="stmt"/>
2602
+ <line num="560" count="2" type="stmt"/>
2603
+ <line num="561" count="2" type="stmt"/>
2604
+ <line num="564" count="0" type="stmt"/>
2605
+ <line num="570" count="1" type="stmt"/>
2606
+ <line num="572" count="1" type="stmt"/>
2607
+ <line num="586" count="21" type="stmt"/>
2608
+ <line num="594" count="3" type="stmt"/>
2609
+ <line num="596" count="5" type="stmt"/>
2610
+ <line num="599" count="3" type="stmt"/>
2611
+ <line num="601" count="3" type="stmt"/>
2612
+ <line num="602" count="7" type="stmt"/>
2613
+ </file>
2614
+ <file name="summary-md.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/summary-md.ts">
2615
+ <metrics statements="207" coveredstatements="207" conditionals="113" coveredconditionals="94" methods="9" coveredmethods="9"/>
2616
+ <line num="10" count="217" type="stmt"/>
2617
+ <line num="11" count="217" type="cond" truecount="2" falsecount="0"/>
2618
+ <line num="12" count="217" type="stmt"/>
2619
+ <line num="16" count="374" type="stmt"/>
2620
+ <line num="17" count="374" type="cond" truecount="2" falsecount="0"/>
2621
+ <line num="18" count="374" type="stmt"/>
2622
+ <line num="22" count="408" type="cond" truecount="2" falsecount="0"/>
2623
+ <line num="23" count="405" type="stmt"/>
2624
+ <line num="24" count="405" type="stmt"/>
2625
+ <line num="25" count="405" type="cond" truecount="2" falsecount="0"/>
2626
+ <line num="26" count="405" type="stmt"/>
2627
+ <line num="27" count="405" type="stmt"/>
2628
+ <line num="31" count="74" type="stmt"/>
2629
+ <line num="33" count="106" type="cond" truecount="2" falsecount="0"/>
2630
+ <line num="35" count="22" type="cond" truecount="2" falsecount="0"/>
2631
+ <line num="38" count="74" type="stmt"/>
2632
+ <line num="39" count="16" type="stmt"/>
2633
+ <line num="40" count="10" type="stmt"/>
2634
+ <line num="44" count="286" type="cond" truecount="2" falsecount="0"/>
2635
+ <line num="45" count="162" type="cond" truecount="2" falsecount="0"/>
2636
+ <line num="46" count="3" type="stmt"/>
2637
+ <line num="52" count="82" type="cond" truecount="4" falsecount="0"/>
2638
+ <line num="54" count="17" type="stmt"/>
2639
+ <line num="56" count="167" type="stmt"/>
2640
+ <line num="57" count="167" type="cond" truecount="2" falsecount="0"/>
2641
+ <line num="58" count="167" type="stmt"/>
2642
+ <line num="61" count="17" type="stmt"/>
2643
+ <line num="62" count="17" type="cond" truecount="1" falsecount="1"/>
2644
+ <line num="63" count="17" type="cond" truecount="1" falsecount="1"/>
2645
+ <line num="64" count="17" type="stmt"/>
2646
+ <line num="67" count="17" type="stmt"/>
2647
+ <line num="68" count="17" type="stmt"/>
2648
+ <line num="69" count="34" type="stmt"/>
2649
+ <line num="72" count="39" type="stmt"/>
2650
+ <line num="74" count="66" type="cond" truecount="2" falsecount="0"/>
2651
+ <line num="75" count="59" type="stmt"/>
2652
+ <line num="77" count="53" type="stmt"/>
2653
+ <line num="78" count="53" type="stmt"/>
2654
+ <line num="79" count="53" type="stmt"/>
2655
+ <line num="82" count="39" type="cond" truecount="1" falsecount="1"/>
2656
+ <line num="84" count="17" type="stmt"/>
2657
+ <line num="88" count="14" type="stmt"/>
2658
+ <line num="89" count="14" type="stmt"/>
2659
+ <line num="91" count="74" type="cond" truecount="2" falsecount="0"/>
2660
+ <line num="92" count="74" type="cond" truecount="2" falsecount="0"/>
2661
+ <line num="93" count="40" type="stmt"/>
2662
+ <line num="94" count="40" type="stmt"/>
2663
+ <line num="95" count="40" type="cond" truecount="2" falsecount="0"/>
2664
+ <line num="97" count="14" type="stmt"/>
2665
+ <line num="126" count="65" type="stmt"/>
2666
+ <line num="127" count="65" type="cond" truecount="1" falsecount="1"/>
2667
+ <line num="128" count="65" type="stmt"/>
2668
+ <line num="129" count="65" type="stmt"/>
2669
+ <line num="130" count="65" type="stmt"/>
2670
+ <line num="131" count="65" type="stmt"/>
2671
+ <line num="133" count="65" type="stmt"/>
2672
+ <line num="134" count="65" type="stmt"/>
2673
+ <line num="135" count="65" type="stmt"/>
2674
+ <line num="136" count="65" type="stmt"/>
2675
+ <line num="138" count="65" type="stmt"/>
2676
+ <line num="139" count="65" type="stmt"/>
2677
+ <line num="140" count="65" type="stmt"/>
2678
+ <line num="141" count="65" type="cond" truecount="1" falsecount="1"/>
2679
+ <line num="142" count="65" type="cond" truecount="1" falsecount="1"/>
2680
+ <line num="143" count="65" type="cond" truecount="1" falsecount="1"/>
2681
+ <line num="144" count="65" type="cond" truecount="1" falsecount="1"/>
2682
+ <line num="145" count="65" type="cond" truecount="1" falsecount="1"/>
2683
+ <line num="146" count="65" type="stmt"/>
2684
+ <line num="148" count="65" type="stmt"/>
2685
+ <line num="149" count="65" type="stmt"/>
2686
+ <line num="150" count="65" type="stmt"/>
2687
+ <line num="151" count="65" type="stmt"/>
2688
+ <line num="152" count="65" type="stmt"/>
2689
+ <line num="153" count="65" type="stmt"/>
2690
+ <line num="154" count="65" type="stmt"/>
2691
+ <line num="155" count="65" type="stmt"/>
2692
+ <line num="156" count="65" type="stmt"/>
2693
+ <line num="158" count="65" type="stmt"/>
2694
+ <line num="159" count="65" type="stmt"/>
2695
+ <line num="161" count="1" type="stmt"/>
2696
+ <line num="163" count="2" type="stmt"/>
2697
+ <line num="165" count="1" type="stmt"/>
2698
+ <line num="169" count="1" type="stmt"/>
2699
+ <line num="170" count="1" type="stmt"/>
2700
+ <line num="174" count="3" type="stmt"/>
2701
+ <line num="176" count="3" type="stmt"/>
2702
+ <line num="178" count="1" type="stmt"/>
2703
+ <line num="180" count="1" type="stmt"/>
2704
+ <line num="181" count="2" type="stmt"/>
2705
+ <line num="183" count="1" type="stmt"/>
2706
+ <line num="185" count="2" type="stmt"/>
2707
+ <line num="186" count="2" type="stmt"/>
2708
+ <line num="191" count="1" type="stmt"/>
2709
+ <line num="192" count="1" type="stmt"/>
2710
+ <line num="199" count="222" type="stmt"/>
2711
+ <line num="200" count="222" type="cond" truecount="1" falsecount="1"/>
2712
+ <line num="201" count="222" type="stmt"/>
2713
+ <line num="203" count="4404" type="cond" truecount="2" falsecount="0"/>
2714
+ <line num="204" count="4404" type="cond" truecount="2" falsecount="0"/>
2715
+ <line num="206" count="63" type="stmt"/>
2716
+ <line num="208" count="4341" type="stmt"/>
2717
+ <line num="211" count="222" type="stmt"/>
2718
+ <line num="214" count="65" type="cond" truecount="1" falsecount="1"/>
2719
+ <line num="215" count="65" type="stmt"/>
2720
+ <line num="216" count="65" type="stmt"/>
2721
+ <line num="217" count="65" type="stmt"/>
2722
+ <line num="218" count="65" type="stmt"/>
2723
+ <line num="219" count="65" type="stmt"/>
2724
+ <line num="220" count="65" type="stmt"/>
2725
+ <line num="222" count="65" type="stmt"/>
2726
+ <line num="223" count="65" type="stmt"/>
2727
+ <line num="224" count="65" type="stmt"/>
2728
+ <line num="225" count="287" type="cond" truecount="6" falsecount="2"/>
2729
+ <line num="226" count="65" type="stmt"/>
2730
+ <line num="227" count="65" type="stmt"/>
2731
+ <line num="228" count="65" type="stmt"/>
2732
+ <line num="229" count="65" type="stmt"/>
2733
+ <line num="230" count="65" type="cond" truecount="2" falsecount="0"/>
2734
+ <line num="231" count="65" type="cond" truecount="2" falsecount="0"/>
2735
+ <line num="232" count="65" type="stmt"/>
2736
+ <line num="234" count="65" type="stmt"/>
2737
+ <line num="236" count="1" type="stmt"/>
2738
+ <line num="237" count="1" type="stmt"/>
2739
+ <line num="239" count="2" type="stmt"/>
2740
+ <line num="241" count="1" type="stmt"/>
2741
+ <line num="245" count="42" type="stmt"/>
2742
+ <line num="246" count="42" type="cond" truecount="2" falsecount="0"/>
2743
+ <line num="247" count="42" type="cond" truecount="2" falsecount="0"/>
2744
+ <line num="248" count="42" type="cond" truecount="2" falsecount="0"/>
2745
+ <line num="249" count="42" type="cond" truecount="4" falsecount="0"/>
2746
+ <line num="250" count="42" type="cond" truecount="2" falsecount="0"/>
2747
+ <line num="253" count="42" type="stmt"/>
2748
+ <line num="254" count="42" type="stmt"/>
2749
+ <line num="256" count="1" type="stmt"/>
2750
+ <line num="259" count="7" type="stmt"/>
2751
+ <line num="260" count="7" type="stmt"/>
2752
+ <line num="262" count="15" type="stmt"/>
2753
+ <line num="265" count="42" type="stmt"/>
2754
+ <line num="268" count="65" type="stmt"/>
2755
+ <line num="269" count="65" type="stmt"/>
2756
+ <line num="271" count="64" type="stmt"/>
2757
+ <line num="272" count="64" type="stmt"/>
2758
+ <line num="273" count="64" type="stmt"/>
2759
+ <line num="274" count="64" type="stmt"/>
2760
+ <line num="275" count="64" type="cond" truecount="1" falsecount="1"/>
2761
+ <line num="276" count="64" type="cond" truecount="1" falsecount="1"/>
2762
+ <line num="277" count="64" type="stmt"/>
2763
+ <line num="278" count="64" type="stmt"/>
2764
+ <line num="279" count="64" type="cond" truecount="1" falsecount="1"/>
2765
+ <line num="280" count="64" type="stmt"/>
2766
+ <line num="281" count="64" type="stmt"/>
2767
+ <line num="283" count="65" type="stmt"/>
2768
+ <line num="286" count="4" type="stmt"/>
2769
+ <line num="287" count="4" type="stmt"/>
2770
+ <line num="288" count="4" type="stmt"/>
2771
+ <line num="289" count="4" type="stmt"/>
2772
+ <line num="291" count="10" type="cond" truecount="2" falsecount="2"/>
2773
+ <line num="293" count="4" type="stmt"/>
2774
+ <line num="296" count="65" type="stmt"/>
2775
+ <line num="297" count="65" type="stmt"/>
2776
+ <line num="298" count="65" type="stmt"/>
2777
+ <line num="300" count="65" type="stmt"/>
2778
+ <line num="301" count="65" type="stmt"/>
2779
+ <line num="302" count="65" type="stmt"/>
2780
+ <line num="305" count="14" type="stmt"/>
2781
+ <line num="306" count="14" type="stmt"/>
2782
+ <line num="307" count="14" type="stmt"/>
2783
+ <line num="311" count="13" type="stmt"/>
2784
+ <line num="312" count="13" type="stmt"/>
2785
+ <line num="313" count="13" type="stmt"/>
2786
+ <line num="316" count="65" type="cond" truecount="1" falsecount="1"/>
2787
+ <line num="318" count="24" type="stmt"/>
2788
+ <line num="320" count="24" type="stmt"/>
2789
+ <line num="322" count="24" type="stmt"/>
2790
+ <line num="326" count="3" type="stmt"/>
2791
+ <line num="327" count="3" type="stmt"/>
2792
+ <line num="328" count="3" type="stmt"/>
2793
+ <line num="329" count="3" type="stmt"/>
2794
+ <line num="330" count="3" type="stmt"/>
2795
+ <line num="331" count="3" type="stmt"/>
2796
+ <line num="332" count="3" type="stmt"/>
2797
+ <line num="333" count="3" type="stmt"/>
2798
+ <line num="334" count="3" type="stmt"/>
2799
+ <line num="335" count="3" type="stmt"/>
2800
+ <line num="336" count="3" type="stmt"/>
2801
+ <line num="337" count="3" type="stmt"/>
2802
+ <line num="338" count="3" type="stmt"/>
2803
+ <line num="339" count="3" type="stmt"/>
2804
+ <line num="340" count="3" type="stmt"/>
2805
+ <line num="341" count="3" type="stmt"/>
2806
+ <line num="342" count="3" type="stmt"/>
2807
+ <line num="343" count="3" type="stmt"/>
2808
+ <line num="344" count="3" type="stmt"/>
2809
+ <line num="345" count="3" type="stmt"/>
2810
+ <line num="348" count="65" type="stmt"/>
2811
+ <line num="349" count="65" type="stmt"/>
2812
+ <line num="350" count="65" type="stmt"/>
2813
+ <line num="351" count="65" type="stmt"/>
2814
+ <line num="363" count="284" type="stmt"/>
2815
+ <line num="364" count="284" type="stmt"/>
2816
+ <line num="365" count="284" type="cond" truecount="2" falsecount="0"/>
2817
+ <line num="367" count="65" type="stmt"/>
2818
+ <line num="370" count="10" type="stmt"/>
2819
+ <line num="371" count="10" type="stmt"/>
2820
+ <line num="373" count="10" type="stmt"/>
2821
+ <line num="375" count="10" type="stmt"/>
2822
+ <line num="378" count="65" type="stmt"/>
2823
+ </file>
2824
+ <file name="test-quality-detectors.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/test-quality-detectors.ts">
2825
+ <metrics statements="63" coveredstatements="63" conditionals="57" coveredconditionals="55" methods="15" coveredmethods="15"/>
2826
+ <line num="8" count="62" type="stmt"/>
2827
+ <line num="10" count="63" type="cond" truecount="4" falsecount="0"/>
2828
+ <line num="11" count="3" type="stmt"/>
2829
+ <line num="12" count="3" type="cond" truecount="2" falsecount="0"/>
2830
+ <line num="13" count="5" type="stmt"/>
2831
+ <line num="14" count="2" type="stmt"/>
2832
+ <line num="16" count="1" type="stmt"/>
2833
+ <line num="38" count="62" type="stmt"/>
2834
+ <line num="42" count="62" type="stmt"/>
2835
+ <line num="44" count="63" type="cond" truecount="4" falsecount="0"/>
2836
+ <line num="47" count="3" type="stmt"/>
2837
+ <line num="70" count="62" type="stmt"/>
2838
+ <line num="74" count="61" type="stmt"/>
2839
+ <line num="76" count="62" type="cond" truecount="4" falsecount="0"/>
2840
+ <line num="77" count="2" type="stmt"/>
2841
+ <line num="79" count="1" type="stmt"/>
2842
+ <line num="101" count="61" type="stmt"/>
2843
+ <line num="105" count="61" type="stmt"/>
2844
+ <line num="107" count="62" type="cond" truecount="4" falsecount="0"/>
2845
+ <line num="109" count="1" type="stmt"/>
2846
+ <line num="131" count="61" type="stmt"/>
2847
+ <line num="135" count="63" type="stmt"/>
2848
+ <line num="137" count="64" type="cond" truecount="4" falsecount="0"/>
2849
+ <line num="138" count="4" type="stmt"/>
2850
+ <line num="139" count="5" type="stmt"/>
2851
+ <line num="140" count="6" type="stmt"/>
2852
+ <line num="141" count="5" type="stmt"/>
2853
+ <line num="142" count="6" type="stmt"/>
2854
+ <line num="145" count="1" type="stmt"/>
2855
+ <line num="146" count="1" type="stmt"/>
2856
+ <line num="168" count="1" type="stmt"/>
2857
+ <line num="169" count="1" type="stmt"/>
2858
+ <line num="190" count="63" type="stmt"/>
2859
+ <line num="194" count="60" type="stmt"/>
2860
+ <line num="196" count="61" type="cond" truecount="4" falsecount="0"/>
2861
+ <line num="198" count="1" type="stmt"/>
2862
+ <line num="228" count="60" type="stmt"/>
2863
+ <line num="232" count="60" type="stmt"/>
2864
+ <line num="234" count="61" type="cond" truecount="4" falsecount="0"/>
2865
+ <line num="235" count="2" type="stmt"/>
2866
+ <line num="236" count="3" type="cond" truecount="2" falsecount="0"/>
2867
+ <line num="238" count="2" type="cond" truecount="1" falsecount="1"/>
2868
+ <line num="240" count="2" type="stmt"/>
2869
+ <line num="241" count="3" type="cond" truecount="2" falsecount="0"/>
2870
+ <line num="243" count="2" type="cond" truecount="2" falsecount="0"/>
2871
+ <line num="245" count="1" type="stmt"/>
2872
+ <line num="246" count="1" type="stmt"/>
2873
+ <line num="267" count="1" type="stmt"/>
2874
+ <line num="271" count="60" type="stmt"/>
2875
+ <line num="275" count="63" type="stmt"/>
2876
+ <line num="277" count="64" type="cond" truecount="4" falsecount="0"/>
2877
+ <line num="278" count="5" type="cond" truecount="2" falsecount="0"/>
2878
+ <line num="280" count="4" type="stmt"/>
2879
+ <line num="281" count="4" type="cond" truecount="1" falsecount="1"/>
2880
+ <line num="283" count="4" type="stmt"/>
2881
+ <line num="285" count="2" type="cond" truecount="2" falsecount="0"/>
2882
+ <line num="286" count="2" type="stmt"/>
2883
+ <line num="288" count="5" type="cond" truecount="2" falsecount="0"/>
2884
+ <line num="289" count="4" type="cond" truecount="2" falsecount="0"/>
2885
+ <line num="291" count="3" type="stmt"/>
2886
+ <line num="292" count="3" type="stmt"/>
2887
+ <line num="313" count="4" type="stmt"/>
2888
+ <line num="317" count="63" type="stmt"/>
2889
+ </file>
2890
+ <file name="tree-sitter-analyzer.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/tree-sitter-analyzer.ts">
2891
+ <metrics statements="93" coveredstatements="18" conditionals="57" coveredconditionals="11" methods="7" coveredmethods="0"/>
2892
+ <line num="12" count="4" type="stmt"/>
2893
+ <line num="15" count="2" type="stmt"/>
2894
+ <line num="20" count="0" type="cond" truecount="0" falsecount="5"/>
2895
+ <line num="22" count="0" type="stmt"/>
2896
+ <line num="26" count="0" type="stmt"/>
2897
+ <line num="38" count="0" type="stmt"/>
2898
+ <line num="44" count="0" type="stmt"/>
2899
+ <line num="45" count="0" type="stmt"/>
2900
+ <line num="46" count="0" type="stmt"/>
2901
+ <line num="50" count="0" type="stmt"/>
2902
+ <line num="54" count="0" type="stmt"/>
2903
+ <line num="58" count="0" type="stmt"/>
2904
+ <line num="62" count="0" type="stmt"/>
2905
+ <line num="66" count="0" type="stmt"/>
2906
+ <line num="70" count="0" type="stmt"/>
2907
+ <line num="71" count="0" type="stmt"/>
2908
+ <line num="72" count="0" type="stmt"/>
2909
+ <line num="74" count="0" type="stmt"/>
2910
+ <line num="76" count="0" type="stmt"/>
2911
+ <line num="80" count="0" type="stmt"/>
2912
+ <line num="84" count="0" type="stmt"/>
2913
+ <line num="85" count="0" type="stmt"/>
2914
+ <line num="89" count="0" type="stmt"/>
2915
+ <line num="90" count="0" type="stmt"/>
2916
+ <line num="92" count="0" type="cond" truecount="0" falsecount="2"/>
2917
+ <line num="94" count="0" type="stmt"/>
2918
+ <line num="97" count="0" type="stmt"/>
2919
+ <line num="98" count="0" type="stmt"/>
2920
+ <line num="101" count="0" type="stmt"/>
2921
+ <line num="103" count="0" type="stmt"/>
2922
+ <line num="107" count="0" type="stmt"/>
2923
+ <line num="108" count="0" type="stmt"/>
2924
+ <line num="110" count="0" type="cond" truecount="0" falsecount="2"/>
2925
+ <line num="111" count="0" type="stmt"/>
2926
+ <line num="115" count="0" type="stmt"/>
2927
+ <line num="116" count="0" type="cond" truecount="0" falsecount="2"/>
2928
+ <line num="119" count="0" type="cond" truecount="0" falsecount="4"/>
2929
+ <line num="120" count="0" type="stmt"/>
2930
+ <line num="123" count="0" type="stmt"/>
2931
+ <line num="127" count="0" type="stmt"/>
2932
+ <line num="128" count="0" type="cond" truecount="0" falsecount="2"/>
2933
+ <line num="129" count="0" type="stmt"/>
2934
+ <line num="133" count="0" type="stmt"/>
2935
+ <line num="134" count="0" type="cond" truecount="0" falsecount="2"/>
2936
+ <line num="136" count="0" type="cond" truecount="0" falsecount="2"/>
2937
+ <line num="137" count="0" type="stmt"/>
2938
+ <line num="141" count="0" type="stmt"/>
2939
+ <line num="151" count="1" type="cond" truecount="1" falsecount="1"/>
2940
+ <line num="153" count="0" type="stmt"/>
2941
+ <line num="154" count="0" type="cond" truecount="0" falsecount="4"/>
2942
+ <line num="155" count="1" type="cond" truecount="1" falsecount="1"/>
2943
+ <line num="157" count="0" type="stmt"/>
2944
+ <line num="158" count="0" type="stmt"/>
2945
+ <line num="159" count="0" type="stmt"/>
2946
+ <line num="167" count="0" type="stmt"/>
2947
+ <line num="168" count="0" type="stmt"/>
2948
+ <line num="170" count="0" type="stmt"/>
2949
+ <line num="175" count="0" type="stmt"/>
2950
+ <line num="178" count="0" type="stmt"/>
2951
+ <line num="179" count="0" type="stmt"/>
2952
+ <line num="180" count="0" type="stmt"/>
2953
+ <line num="181" count="0" type="stmt"/>
2954
+ <line num="182" count="0" type="stmt"/>
2955
+ <line num="183" count="0" type="cond" truecount="0" falsecount="2"/>
2956
+ <line num="185" count="0" type="stmt"/>
2957
+ <line num="208" count="0" type="stmt"/>
2958
+ <line num="211" count="0" type="stmt"/>
2959
+ <line num="212" count="0" type="cond" truecount="0" falsecount="2"/>
2960
+ <line num="213" count="0" type="stmt"/>
2961
+ <line num="222" count="0" type="stmt"/>
2962
+ <line num="223" count="0" type="stmt"/>
2963
+ <line num="224" count="0" type="stmt"/>
2964
+ <line num="233" count="0" type="stmt"/>
2965
+ <line num="236" count="0" type="stmt"/>
2966
+ <line num="237" count="0" type="stmt"/>
2967
+ <line num="245" count="0" type="stmt"/>
2968
+ <line num="249" count="0" type="stmt"/>
2969
+ <line num="250" count="0" type="stmt"/>
2970
+ <line num="254" count="8" type="cond" truecount="2" falsecount="0"/>
2971
+ <line num="257" count="2" type="stmt"/>
2972
+ <line num="258" count="1" type="stmt"/>
2973
+ <line num="260" count="1" type="cond" truecount="1" falsecount="1"/>
2974
+ <line num="262" count="8" type="cond" truecount="1" falsecount="1"/>
2975
+ <line num="263" count="8" type="cond" truecount="1" falsecount="1"/>
2976
+ <line num="266" count="0" type="stmt"/>
2977
+ <line num="269" count="1" type="stmt"/>
2978
+ <line num="270" count="1" type="stmt"/>
2979
+ <line num="272" count="1" type="stmt"/>
2980
+ <line num="273" count="1" type="cond" truecount="1" falsecount="1"/>
2981
+ <line num="275" count="8" type="stmt"/>
2982
+ <line num="280" count="8" type="stmt"/>
2983
+ <line num="282" count="1" type="stmt"/>
2984
+ <line num="288" count="1" type="stmt"/>
2985
+ </file>
2986
+ <file name="ts-analyzer.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/ts-analyzer.ts">
2987
+ <metrics statements="125" coveredstatements="120" conditionals="71" coveredconditionals="59" methods="2" coveredmethods="2"/>
2988
+ <line num="30" count="1" type="stmt"/>
2989
+ <line num="40" count="2" type="stmt"/>
2990
+ <line num="41" count="2" type="stmt"/>
2991
+ <line num="43" count="2" type="cond" truecount="1" falsecount="1"/>
2992
+ <line num="44" count="2" type="stmt"/>
2993
+ <line num="46" count="1" type="stmt"/>
2994
+ <line num="50" count="2" type="cond" truecount="1" falsecount="1"/>
2995
+ <line num="51" count="3" type="stmt"/>
2996
+ <line num="56" count="3" type="stmt"/>
2997
+ <line num="69" count="5" type="stmt"/>
2998
+ <line num="70" count="5" type="cond" truecount="2" falsecount="0"/>
2999
+ <line num="73" count="2" type="stmt"/>
3000
+ <line num="76" count="3" type="stmt"/>
3001
+ <line num="80" count="3" type="stmt"/>
3002
+ <line num="81" count="3" type="cond" truecount="1" falsecount="1"/>
3003
+ <line num="83" count="0" type="stmt"/>
3004
+ <line num="87" count="140" type="stmt"/>
3005
+ <line num="88" count="140" type="stmt"/>
3006
+ <line num="106" count="118" type="stmt"/>
3007
+ <line num="107" count="118" type="stmt"/>
3008
+ <line num="108" count="118" type="stmt"/>
3009
+ <line num="109" count="118" type="stmt"/>
3010
+ <line num="110" count="118" type="cond" truecount="2" falsecount="0"/>
3011
+ <line num="112" count="118" type="stmt"/>
3012
+ <line num="124" count="28" type="stmt"/>
3013
+ <line num="125" count="28" type="stmt"/>
3014
+ <line num="127" count="28" type="stmt"/>
3015
+ <line num="135" count="118" type="stmt"/>
3016
+ <line num="136" count="118" type="stmt"/>
3017
+ <line num="137" count="118" type="stmt"/>
3018
+ <line num="138" count="118" type="stmt"/>
3019
+ <line num="139" count="118" type="stmt"/>
3020
+ <line num="140" count="118" type="stmt"/>
3021
+ <line num="141" count="118" type="stmt"/>
3022
+ <line num="142" count="118" type="stmt"/>
3023
+ <line num="143" count="118" type="stmt"/>
3024
+ <line num="146" count="1938" type="stmt"/>
3025
+ <line num="147" count="1938" type="stmt"/>
3026
+ <line num="148" count="1938" type="cond" truecount="1" falsecount="1"/>
3027
+ <line num="149" count="1938" type="cond" truecount="2" falsecount="0"/>
3028
+ <line num="150" count="1938" type="cond" truecount="2" falsecount="0"/>
3029
+ <line num="153" count="3" type="stmt"/>
3030
+ <line num="155" count="1" type="stmt"/>
3031
+ <line num="156" count="1" type="stmt"/>
3032
+ <line num="161" count="4" type="stmt"/>
3033
+ <line num="163" count="1" type="stmt"/>
3034
+ <line num="164" count="1" type="stmt"/>
3035
+ <line num="169" count="24" type="stmt"/>
3036
+ <line num="172" count="1" type="stmt"/>
3037
+ <line num="177" count="1" type="stmt"/>
3038
+ <line num="178" count="1" type="stmt"/>
3039
+ <line num="181" count="1" type="stmt"/>
3040
+ <line num="182" count="1" type="stmt"/>
3041
+ <line num="186" count="1" type="stmt"/>
3042
+ <line num="187" count="1" type="stmt"/>
3043
+ <line num="191" count="78" type="stmt"/>
3044
+ <line num="193" count="21" type="stmt"/>
3045
+ <line num="194" count="21" type="cond" truecount="5" falsecount="0"/>
3046
+ <line num="197" count="21" type="cond" truecount="2" falsecount="0"/>
3047
+ <line num="199" count="14" type="stmt"/>
3048
+ <line num="200" count="14" type="stmt"/>
3049
+ <line num="206" count="127" type="stmt"/>
3050
+ <line num="207" count="127" type="stmt"/>
3051
+ <line num="208" count="127" type="cond" truecount="4" falsecount="0"/>
3052
+ <line num="209" count="127" type="stmt"/>
3053
+ <line num="210" count="127" type="stmt"/>
3054
+ <line num="211" count="127" type="cond" truecount="1" falsecount="1"/>
3055
+ <line num="221" count="127" type="stmt"/>
3056
+ <line num="243" count="127" type="stmt"/>
3057
+ <line num="244" count="127" type="stmt"/>
3058
+ <line num="252" count="55" type="stmt"/>
3059
+ <line num="256" count="1" type="cond" truecount="1" falsecount="1"/>
3060
+ <line num="257" count="1" type="stmt"/>
3061
+ <line num="265" count="127" type="stmt"/>
3062
+ <line num="268" count="127" type="stmt"/>
3063
+ <line num="269" count="127" type="stmt"/>
3064
+ <line num="270" count="127" type="stmt"/>
3065
+ <line num="274" count="13" type="stmt"/>
3066
+ <line num="275" count="13" type="stmt"/>
3067
+ <line num="276" count="13" type="stmt"/>
3068
+ <line num="285" count="13" type="stmt"/>
3069
+ <line num="286" count="13" type="stmt"/>
3070
+ <line num="289" count="0" type="stmt"/>
3071
+ <line num="290" count="0" type="stmt"/>
3072
+ <line num="297" count="1938" type="stmt"/>
3073
+ <line num="300" count="118" type="stmt"/>
3074
+ <line num="302" count="118" type="stmt"/>
3075
+ <line num="303" count="118" type="stmt"/>
3076
+ <line num="304" count="118" type="stmt"/>
3077
+ <line num="305" count="118" type="stmt"/>
3078
+ <line num="306" count="118" type="stmt"/>
3079
+ <line num="308" count="118" type="stmt"/>
3080
+ <line num="309" count="118" type="stmt"/>
3081
+ <line num="311" count="127" type="cond" truecount="2" falsecount="0"/>
3082
+ <line num="312" count="6" type="stmt"/>
3083
+ <line num="315" count="12" type="cond" truecount="2" falsecount="0"/>
3084
+ <line num="317" count="6" type="stmt"/>
3085
+ <line num="318" count="6" type="stmt"/>
3086
+ <line num="320" count="0" type="stmt"/>
3087
+ <line num="322" count="6" type="stmt"/>
3088
+ <line num="323" count="6" type="cond" truecount="1" falsecount="1"/>
3089
+ <line num="324" count="6" type="stmt"/>
3090
+ <line num="325" count="127" type="cond" truecount="1" falsecount="1"/>
3091
+ <line num="327" count="6" type="stmt"/>
3092
+ <line num="328" count="6" type="stmt"/>
3093
+ <line num="329" count="6" type="stmt"/>
3094
+ <line num="331" count="90" type="cond" truecount="2" falsecount="0"/>
3095
+ <line num="332" count="90" type="cond" truecount="2" falsecount="0"/>
3096
+ <line num="338" count="1" type="stmt"/>
3097
+ <line num="340" count="90" type="cond" truecount="2" falsecount="2"/>
3098
+ <line num="341" count="90" type="stmt"/>
3099
+ <line num="343" count="6" type="stmt"/>
3100
+ <line num="346" count="0" type="stmt"/>
3101
+ <line num="348" count="4" type="stmt"/>
3102
+ <line num="351" count="118" type="stmt"/>
3103
+ <line num="352" count="118" type="stmt"/>
3104
+ <line num="354" count="118" type="stmt"/>
3105
+ <line num="356" count="81" type="stmt"/>
3106
+ <line num="358" count="118" type="stmt"/>
3107
+ <line num="360" count="37" type="stmt"/>
3108
+ <line num="364" count="81" type="stmt"/>
3109
+ <line num="366" count="9" type="stmt"/>
3110
+ <line num="368" count="81" type="stmt"/>
3111
+ <line num="370" count="5" type="stmt"/>
3112
+ <line num="374" count="118" type="stmt"/>
3113
+ </file>
3114
+ <file name="types.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/types.ts">
3115
+ <metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
3116
+ <line num="635" count="26" type="stmt"/>
3117
+ <line num="692" count="26" type="stmt"/>
3118
+ <line num="740" count="26" type="stmt"/>
3119
+ <line num="742" count="26" type="stmt"/>
3120
+ <line num="750" count="26" type="stmt"/>
3121
+ <line num="751" count="26" type="stmt"/>
3122
+ <line num="753" count="26" type="stmt"/>
3123
+ <line num="765" count="26" type="stmt"/>
3124
+ <line num="780" count="26" type="stmt"/>
3125
+ <line num="790" count="26" type="stmt"/>
3126
+ </file>
3127
+ <file name="utils.ts" path="/Users/guybary/Documents/octocode-mcp/skills/octocode-local-code-quality/src/utils.ts">
3128
+ <metrics statements="86" coveredstatements="69" conditionals="34" coveredconditionals="25" methods="1" coveredmethods="1"/>
3129
+ <line num="14" count="2" type="stmt"/>
3130
+ <line num="16" count="1" type="stmt"/>
3131
+ <line num="20" count="4" type="stmt"/>
3132
+ <line num="23" count="3" type="stmt"/>
3133
+ <line num="28" count="13" type="stmt"/>
3134
+ <line num="34" count="18" type="stmt"/>
3135
+ <line num="39" count="4" type="stmt"/>
3136
+ <line num="41" count="11" type="stmt"/>
3137
+ <line num="43" count="1" type="stmt"/>
3138
+ <line num="46" count="2" type="stmt"/>
3139
+ <line num="48" count="1" type="stmt"/>
3140
+ <line num="50" count="56" type="cond" truecount="2" falsecount="0"/>
3141
+ <line num="55" count="7" type="cond" truecount="2" falsecount="0"/>
3142
+ <line num="57" count="6" type="stmt"/>
3143
+ <line num="59" count="81" type="stmt"/>
3144
+ <line num="60" count="81" type="stmt"/>
3145
+ <line num="63" count="6" type="stmt"/>
3146
+ <line num="64" count="6" type="stmt"/>
3147
+ <line num="65" count="6" type="stmt"/>
3148
+ <line num="66" count="6" type="stmt"/>
3149
+ <line num="70" count="0" type="stmt"/>
3150
+ <line num="72" count="0" type="stmt"/>
3151
+ <line num="73" count="0" type="stmt"/>
3152
+ <line num="75" count="0" type="stmt"/>
3153
+ <line num="76" count="0" type="stmt"/>
3154
+ <line num="80" count="795" type="stmt"/>
3155
+ <line num="81" count="795" type="stmt"/>
3156
+ <line num="82" count="795" type="stmt"/>
3157
+ <line num="91" count="276" type="cond" truecount="3" falsecount="1"/>
3158
+ <line num="92" count="276" type="stmt"/>
3159
+ <line num="94" count="276" type="stmt"/>
3160
+ <line num="95" count="276" type="stmt"/>
3161
+ <line num="103" count="64" type="stmt"/>
3162
+ <line num="104" count="64" type="stmt"/>
3163
+ <line num="108" count="1" type="stmt"/>
3164
+ <line num="109" count="1" type="stmt"/>
3165
+ <line num="111" count="211" type="stmt"/>
3166
+ <line num="113" count="211" type="stmt"/>
3167
+ <line num="114" count="247" type="cond" truecount="2" falsecount="0"/>
3168
+ <line num="115" count="243" type="stmt"/>
3169
+ <line num="117" count="243" type="stmt"/>
3170
+ <line num="121" count="211" type="stmt"/>
3171
+ <line num="125" count="0" type="cond" truecount="0" falsecount="4"/>
3172
+ <line num="126" count="0" type="stmt"/>
3173
+ <line num="128" count="0" type="stmt"/>
3174
+ <line num="136" count="0" type="stmt"/>
3175
+ <line num="137" count="0" type="stmt"/>
3176
+ <line num="141" count="0" type="stmt"/>
3177
+ <line num="142" count="0" type="stmt"/>
3178
+ <line num="144" count="0" type="stmt"/>
3179
+ <line num="147" count="0" type="cond" truecount="0" falsecount="2"/>
3180
+ <line num="148" count="0" type="stmt"/>
3181
+ <line num="150" count="0" type="stmt"/>
3182
+ <line num="154" count="0" type="stmt"/>
3183
+ <line num="158" count="11" type="stmt"/>
3184
+ <line num="159" count="11" type="cond" truecount="2" falsecount="0"/>
3185
+ <line num="160" count="11" type="cond" truecount="2" falsecount="0"/>
3186
+ <line num="161" count="11" type="stmt"/>
3187
+ <line num="163" count="5" type="stmt"/>
3188
+ <line num="165" count="11" type="stmt"/>
3189
+ <line num="169" count="3" type="stmt"/>
3190
+ <line num="171" count="3" type="stmt"/>
3191
+ <line num="172" count="3" type="stmt"/>
3192
+ <line num="174" count="3" type="stmt"/>
3193
+ <line num="178" count="4560" type="stmt"/>
3194
+ <line num="185" count="4" type="stmt"/>
3195
+ <line num="189" count="3" type="stmt"/>
3196
+ <line num="194" count="217" type="stmt"/>
3197
+ <line num="196" count="251" type="stmt"/>
3198
+ <line num="200" count="26" type="cond" truecount="4" falsecount="0"/>
3199
+ <line num="204" count="19" type="stmt"/>
3200
+ <line num="205" count="19" type="stmt"/>
3201
+ <line num="206" count="19" type="stmt"/>
3202
+ <line num="207" count="19" type="stmt"/>
3203
+ <line num="208" count="19" type="stmt"/>
3204
+ <line num="216" count="2" type="stmt"/>
3205
+ <line num="217" count="2" type="stmt"/>
3206
+ <line num="219" count="1" type="stmt"/>
3207
+ <line num="221" count="2" type="stmt"/>
3208
+ <line num="222" count="2" type="stmt"/>
3209
+ <line num="227" count="119" type="stmt"/>
3210
+ <line num="230" count="119" type="stmt"/>
3211
+ <line num="236" count="5" type="stmt"/>
3212
+ <line num="239" count="14" type="stmt"/>
3213
+ <line num="243" count="6" type="cond" truecount="2" falsecount="0"/>
3214
+ <line num="244" count="6" type="stmt"/>
3215
+ </file>
3216
+ </project>
3217
+ </coverage>