spectra-cli 4.1.1 → 4.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (682) hide show
  1. package/README.md +12 -5
  2. package/dist/.spectra-build-meta.json +9 -0
  3. package/dist/adapters/go-adapter.d.ts.map +1 -1
  4. package/dist/adapters/go-adapter.js +2 -0
  5. package/dist/adapters/go-adapter.js.map +1 -1
  6. package/dist/adapters/index.d.ts +1 -1
  7. package/dist/adapters/index.d.ts.map +1 -1
  8. package/dist/adapters/java-adapter.d.ts.map +1 -1
  9. package/dist/adapters/java-adapter.js +2 -0
  10. package/dist/adapters/java-adapter.js.map +1 -1
  11. package/dist/adapters/language-adapter.d.ts +42 -9
  12. package/dist/adapters/language-adapter.d.ts.map +1 -1
  13. package/dist/adapters/python-adapter.d.ts +34 -6
  14. package/dist/adapters/python-adapter.d.ts.map +1 -1
  15. package/dist/adapters/python-adapter.js +168 -61
  16. package/dist/adapters/python-adapter.js.map +1 -1
  17. package/dist/adapters/ts-js-adapter.d.ts +13 -5
  18. package/dist/adapters/ts-js-adapter.d.ts.map +1 -1
  19. package/dist/adapters/ts-js-adapter.js +55 -14
  20. package/dist/adapters/ts-js-adapter.js.map +1 -1
  21. package/dist/batch/batch-orchestrator.d.ts +74 -5
  22. package/dist/batch/batch-orchestrator.d.ts.map +1 -1
  23. package/dist/batch/batch-orchestrator.js +583 -70
  24. package/dist/batch/batch-orchestrator.js.map +1 -1
  25. package/dist/batch/delta-regenerator.d.ts +2 -2
  26. package/dist/batch/delta-regenerator.d.ts.map +1 -1
  27. package/dist/batch/delta-regenerator.js +21 -28
  28. package/dist/batch/delta-regenerator.js.map +1 -1
  29. package/dist/batch/module-grouper.d.ts +9 -2
  30. package/dist/batch/module-grouper.d.ts.map +1 -1
  31. package/dist/batch/module-grouper.js +3 -1
  32. package/dist/batch/module-grouper.js.map +1 -1
  33. package/dist/batch/regen-plan.d.ts +78 -0
  34. package/dist/batch/regen-plan.d.ts.map +1 -0
  35. package/dist/batch/regen-plan.js +93 -0
  36. package/dist/batch/regen-plan.js.map +1 -0
  37. package/dist/cli/commands/batch.d.ts.map +1 -1
  38. package/dist/cli/commands/batch.js +36 -8
  39. package/dist/cli/commands/batch.js.map +1 -1
  40. package/dist/cli/commands/graph.js +1 -1
  41. package/dist/cli/commands/graph.js.map +1 -1
  42. package/dist/cli/commands/index.d.ts +8 -0
  43. package/dist/cli/commands/index.d.ts.map +1 -0
  44. package/dist/cli/commands/index.js +274 -0
  45. package/dist/cli/commands/index.js.map +1 -0
  46. package/dist/cli/commands/query.d.ts.map +1 -1
  47. package/dist/cli/commands/query.js +3 -1
  48. package/dist/cli/commands/query.js.map +1 -1
  49. package/dist/cli/commands/scaffold-kb.d.ts +9 -0
  50. package/dist/cli/commands/scaffold-kb.d.ts.map +1 -0
  51. package/dist/cli/commands/scaffold-kb.js +179 -0
  52. package/dist/cli/commands/scaffold-kb.js.map +1 -0
  53. package/dist/cli/index.js +33 -14
  54. package/dist/cli/index.js.map +1 -1
  55. package/dist/cli/utils/error-handler.d.ts +0 -6
  56. package/dist/cli/utils/error-handler.d.ts.map +1 -1
  57. package/dist/cli/utils/error-handler.js +0 -13
  58. package/dist/cli/utils/error-handler.js.map +1 -1
  59. package/dist/cli/utils/parse-args.d.ts +55 -3
  60. package/dist/cli/utils/parse-args.d.ts.map +1 -1
  61. package/dist/cli/utils/parse-args.js +176 -13
  62. package/dist/cli/utils/parse-args.js.map +1 -1
  63. package/dist/cli/version-meta.d.ts +16 -0
  64. package/dist/cli/version-meta.d.ts.map +1 -0
  65. package/dist/cli/version-meta.js +28 -0
  66. package/dist/cli/version-meta.js.map +1 -0
  67. package/dist/core/ast-analyzer.d.ts.map +1 -1
  68. package/dist/core/ast-analyzer.js +75 -5
  69. package/dist/core/ast-analyzer.js.map +1 -1
  70. package/dist/core/import-resolver.d.ts +93 -0
  71. package/dist/core/import-resolver.d.ts.map +1 -0
  72. package/dist/core/import-resolver.js +414 -0
  73. package/dist/core/import-resolver.js.map +1 -0
  74. package/dist/core/query-mappers/base-mapper.d.ts +13 -0
  75. package/dist/core/query-mappers/base-mapper.d.ts.map +1 -1
  76. package/dist/core/query-mappers/go-mapper.d.ts +68 -0
  77. package/dist/core/query-mappers/go-mapper.d.ts.map +1 -1
  78. package/dist/core/query-mappers/go-mapper.js +421 -0
  79. package/dist/core/query-mappers/go-mapper.js.map +1 -1
  80. package/dist/core/query-mappers/java-mapper.d.ts +196 -0
  81. package/dist/core/query-mappers/java-mapper.d.ts.map +1 -1
  82. package/dist/core/query-mappers/java-mapper.js +600 -0
  83. package/dist/core/query-mappers/java-mapper.js.map +1 -1
  84. package/dist/core/query-mappers/python-mapper.d.ts +55 -0
  85. package/dist/core/query-mappers/python-mapper.d.ts.map +1 -1
  86. package/dist/core/query-mappers/python-mapper.js +273 -0
  87. package/dist/core/query-mappers/python-mapper.js.map +1 -1
  88. package/dist/core/query-mappers/typescript-mapper.d.ts +102 -0
  89. package/dist/core/query-mappers/typescript-mapper.d.ts.map +1 -1
  90. package/dist/core/query-mappers/typescript-mapper.js +470 -0
  91. package/dist/core/query-mappers/typescript-mapper.js.map +1 -1
  92. package/dist/core/single-spec-orchestrator.d.ts +21 -0
  93. package/dist/core/single-spec-orchestrator.d.ts.map +1 -1
  94. package/dist/core/single-spec-orchestrator.js +187 -23
  95. package/dist/core/single-spec-orchestrator.js.map +1 -1
  96. package/dist/core/skeleton-hash.d.ts +33 -0
  97. package/dist/core/skeleton-hash.d.ts.map +1 -0
  98. package/dist/core/skeleton-hash.js +76 -0
  99. package/dist/core/skeleton-hash.js.map +1 -0
  100. package/dist/core/tree-sitter-analyzer.d.ts +7 -0
  101. package/dist/core/tree-sitter-analyzer.d.ts.map +1 -1
  102. package/dist/core/tree-sitter-analyzer.js +32 -1
  103. package/dist/core/tree-sitter-analyzer.js.map +1 -1
  104. package/dist/core/tree-sitter-fallback.d.ts +12 -4
  105. package/dist/core/tree-sitter-fallback.d.ts.map +1 -1
  106. package/dist/core/tree-sitter-fallback.js +160 -12
  107. package/dist/core/tree-sitter-fallback.js.map +1 -1
  108. package/dist/extraction/extraction-types.d.ts +25 -25
  109. package/dist/extraction/image-extractor.d.ts.map +1 -1
  110. package/dist/extraction/image-extractor.js +3 -1
  111. package/dist/extraction/image-extractor.js.map +1 -1
  112. package/dist/extraction/markdown-extractor.d.ts.map +1 -1
  113. package/dist/extraction/markdown-extractor.js +3 -1
  114. package/dist/extraction/markdown-extractor.js.map +1 -1
  115. package/dist/generator/frontmatter.d.ts +5 -0
  116. package/dist/generator/frontmatter.d.ts.map +1 -1
  117. package/dist/generator/frontmatter.js +4 -0
  118. package/dist/generator/frontmatter.js.map +1 -1
  119. package/dist/generator/index-generator.d.ts +3 -3
  120. package/dist/generator/index-generator.d.ts.map +1 -1
  121. package/dist/generator/index-generator.js +1 -1
  122. package/dist/generator/index-generator.js.map +1 -1
  123. package/dist/graph/directory-graph.d.ts +14 -4
  124. package/dist/graph/directory-graph.d.ts.map +1 -1
  125. package/dist/graph/directory-graph.js +71 -128
  126. package/dist/graph/directory-graph.js.map +1 -1
  127. package/dist/graph/mermaid-renderer.d.ts +8 -5
  128. package/dist/graph/mermaid-renderer.d.ts.map +1 -1
  129. package/dist/graph/mermaid-renderer.js +3 -3
  130. package/dist/graph/mermaid-renderer.js.map +1 -1
  131. package/dist/graph/topological-sort.d.ts +13 -6
  132. package/dist/graph/topological-sort.d.ts.map +1 -1
  133. package/dist/graph/topological-sort.js +2 -2
  134. package/dist/graph/topological-sort.js.map +1 -1
  135. package/dist/kb-mcp/index.d.ts +14 -0
  136. package/dist/kb-mcp/index.d.ts.map +1 -0
  137. package/dist/kb-mcp/index.js +24 -0
  138. package/dist/kb-mcp/index.js.map +1 -0
  139. package/dist/kb-mcp/lib/kb-error.d.ts +21 -0
  140. package/dist/kb-mcp/lib/kb-error.d.ts.map +1 -0
  141. package/dist/kb-mcp/lib/kb-error.js +28 -0
  142. package/dist/kb-mcp/lib/kb-error.js.map +1 -0
  143. package/dist/kb-mcp/lib/kb-locator.d.ts +58 -0
  144. package/dist/kb-mcp/lib/kb-locator.d.ts.map +1 -0
  145. package/dist/kb-mcp/lib/kb-locator.js +85 -0
  146. package/dist/kb-mcp/lib/kb-locator.js.map +1 -0
  147. package/dist/kb-mcp/lib/result-merger.d.ts +35 -0
  148. package/dist/kb-mcp/lib/result-merger.d.ts.map +1 -0
  149. package/dist/kb-mcp/lib/result-merger.js +64 -0
  150. package/dist/kb-mcp/lib/result-merger.js.map +1 -0
  151. package/dist/kb-mcp/server.d.ts +12 -0
  152. package/dist/kb-mcp/server.d.ts.map +1 -0
  153. package/dist/kb-mcp/server.js +29 -0
  154. package/dist/kb-mcp/server.js.map +1 -0
  155. package/dist/kb-mcp/tools/kb-api-lookup.d.ts +28 -0
  156. package/dist/kb-mcp/tools/kb-api-lookup.d.ts.map +1 -0
  157. package/dist/kb-mcp/tools/kb-api-lookup.js +237 -0
  158. package/dist/kb-mcp/tools/kb-api-lookup.js.map +1 -0
  159. package/dist/kb-mcp/tools/kb-doc-lookup.d.ts +20 -0
  160. package/dist/kb-mcp/tools/kb-doc-lookup.d.ts.map +1 -0
  161. package/dist/kb-mcp/tools/kb-doc-lookup.js +92 -0
  162. package/dist/kb-mcp/tools/kb-doc-lookup.js.map +1 -0
  163. package/dist/kb-mcp/tools/kb-search.d.ts +23 -0
  164. package/dist/kb-mcp/tools/kb-search.d.ts.map +1 -0
  165. package/dist/kb-mcp/tools/kb-search.js +126 -0
  166. package/dist/kb-mcp/tools/kb-search.js.map +1 -0
  167. package/dist/knowledge-graph/call-resolver.d.ts +64 -0
  168. package/dist/knowledge-graph/call-resolver.d.ts.map +1 -0
  169. package/dist/knowledge-graph/call-resolver.js +323 -0
  170. package/dist/knowledge-graph/call-resolver.js.map +1 -0
  171. package/dist/knowledge-graph/import-resolver.d.ts +39 -0
  172. package/dist/knowledge-graph/import-resolver.d.ts.map +1 -0
  173. package/dist/knowledge-graph/import-resolver.js +214 -0
  174. package/dist/knowledge-graph/import-resolver.js.map +1 -0
  175. package/dist/knowledge-graph/incremental.d.ts +131 -0
  176. package/dist/knowledge-graph/incremental.d.ts.map +1 -0
  177. package/dist/knowledge-graph/incremental.js +432 -0
  178. package/dist/knowledge-graph/incremental.js.map +1 -0
  179. package/dist/knowledge-graph/index.d.ts +85 -0
  180. package/dist/knowledge-graph/index.d.ts.map +1 -0
  181. package/dist/knowledge-graph/index.js +198 -0
  182. package/dist/knowledge-graph/index.js.map +1 -0
  183. package/dist/knowledge-graph/module-derivation.d.ts +252 -0
  184. package/dist/knowledge-graph/module-derivation.d.ts.map +1 -0
  185. package/dist/knowledge-graph/module-derivation.js +418 -0
  186. package/dist/knowledge-graph/module-derivation.js.map +1 -0
  187. package/dist/knowledge-graph/persistence.d.ts +310 -0
  188. package/dist/knowledge-graph/persistence.d.ts.map +1 -0
  189. package/dist/knowledge-graph/persistence.js +280 -0
  190. package/dist/knowledge-graph/persistence.js.map +1 -0
  191. package/dist/knowledge-graph/query-helpers.d.ts +191 -0
  192. package/dist/knowledge-graph/query-helpers.d.ts.map +1 -0
  193. package/dist/knowledge-graph/query-helpers.js +559 -0
  194. package/dist/knowledge-graph/query-helpers.js.map +1 -0
  195. package/dist/knowledge-graph/relativize.d.ts +51 -0
  196. package/dist/knowledge-graph/relativize.d.ts.map +1 -0
  197. package/dist/knowledge-graph/relativize.js +104 -0
  198. package/dist/knowledge-graph/relativize.js.map +1 -0
  199. package/dist/knowledge-graph/unified-graph.d.ts +310 -0
  200. package/dist/knowledge-graph/unified-graph.d.ts.map +1 -0
  201. package/dist/knowledge-graph/unified-graph.js +182 -0
  202. package/dist/knowledge-graph/unified-graph.js.map +1 -0
  203. package/dist/mcp/agent-context-tools.d.ts +53 -0
  204. package/dist/mcp/agent-context-tools.d.ts.map +1 -0
  205. package/dist/mcp/agent-context-tools.js +806 -0
  206. package/dist/mcp/agent-context-tools.js.map +1 -0
  207. package/dist/mcp/file-nav-tools.d.ts +42 -0
  208. package/dist/mcp/file-nav-tools.d.ts.map +1 -0
  209. package/dist/mcp/file-nav-tools.js +318 -0
  210. package/dist/mcp/file-nav-tools.js.map +1 -0
  211. package/dist/mcp/graph-tools.d.ts +22 -0
  212. package/dist/mcp/graph-tools.d.ts.map +1 -1
  213. package/dist/mcp/graph-tools.js +204 -133
  214. package/dist/mcp/graph-tools.js.map +1 -1
  215. package/dist/mcp/lib/file-nav-helpers.d.ts +128 -0
  216. package/dist/mcp/lib/file-nav-helpers.d.ts.map +1 -0
  217. package/dist/mcp/lib/file-nav-helpers.js +305 -0
  218. package/dist/mcp/lib/file-nav-helpers.js.map +1 -0
  219. package/dist/mcp/lib/response-helpers.d.ts +67 -0
  220. package/dist/mcp/lib/response-helpers.d.ts.map +1 -0
  221. package/dist/mcp/lib/response-helpers.js +103 -0
  222. package/dist/mcp/lib/response-helpers.js.map +1 -0
  223. package/dist/mcp/lib/telemetry.d.ts +69 -0
  224. package/dist/mcp/lib/telemetry.d.ts.map +1 -0
  225. package/dist/mcp/lib/telemetry.js +113 -0
  226. package/dist/mcp/lib/telemetry.js.map +1 -0
  227. package/dist/mcp/lib/tool-response.d.ts +46 -0
  228. package/dist/mcp/lib/tool-response.d.ts.map +1 -0
  229. package/dist/mcp/lib/tool-response.js +83 -0
  230. package/dist/mcp/lib/tool-response.js.map +1 -0
  231. package/dist/mcp/server.d.ts +14 -1
  232. package/dist/mcp/server.d.ts.map +1 -1
  233. package/dist/mcp/server.js +216 -158
  234. package/dist/mcp/server.js.map +1 -1
  235. package/dist/models/call-site.d.ts +68 -0
  236. package/dist/models/call-site.d.ts.map +1 -0
  237. package/dist/models/call-site.js +60 -0
  238. package/dist/models/call-site.js.map +1 -0
  239. package/dist/models/code-skeleton.d.ts +80 -6
  240. package/dist/models/code-skeleton.d.ts.map +1 -1
  241. package/dist/models/code-skeleton.js +30 -0
  242. package/dist/models/code-skeleton.js.map +1 -1
  243. package/dist/models/drift-item.d.ts +4 -4
  244. package/dist/models/module-spec.d.ts +173 -94
  245. package/dist/models/module-spec.d.ts.map +1 -1
  246. package/dist/models/module-spec.js +6 -0
  247. package/dist/models/module-spec.js.map +1 -1
  248. package/dist/panoramic/adr-decision-pipeline.d.ts +53 -0
  249. package/dist/panoramic/adr-decision-pipeline.d.ts.map +1 -0
  250. package/dist/panoramic/adr-decision-pipeline.js +685 -0
  251. package/dist/panoramic/adr-decision-pipeline.js.map +1 -0
  252. package/dist/panoramic/api-surface-generator.d.ts +56 -0
  253. package/dist/panoramic/api-surface-generator.d.ts.map +1 -0
  254. package/dist/panoramic/api-surface-generator.js +1671 -0
  255. package/dist/panoramic/api-surface-generator.js.map +1 -0
  256. package/dist/panoramic/architecture-ir-builder.d.ts +19 -0
  257. package/dist/panoramic/architecture-ir-builder.d.ts.map +1 -0
  258. package/dist/panoramic/architecture-ir-builder.js +561 -0
  259. package/dist/panoramic/architecture-ir-builder.js.map +1 -0
  260. package/dist/panoramic/architecture-ir-exporters.d.ts +7 -0
  261. package/dist/panoramic/architecture-ir-exporters.d.ts.map +1 -0
  262. package/dist/panoramic/architecture-ir-exporters.js +183 -0
  263. package/dist/panoramic/architecture-ir-exporters.js.map +1 -0
  264. package/dist/panoramic/architecture-ir-generator.d.ts +36 -0
  265. package/dist/panoramic/architecture-ir-generator.d.ts.map +1 -0
  266. package/dist/panoramic/architecture-ir-generator.js +51 -0
  267. package/dist/panoramic/architecture-ir-generator.js.map +1 -0
  268. package/dist/panoramic/architecture-ir-mermaid-adapter.d.ts +6 -0
  269. package/dist/panoramic/architecture-ir-mermaid-adapter.d.ts.map +1 -0
  270. package/dist/panoramic/architecture-ir-mermaid-adapter.js +98 -0
  271. package/dist/panoramic/architecture-ir-mermaid-adapter.js.map +1 -0
  272. package/dist/panoramic/architecture-ir-model.d.ts +87 -0
  273. package/dist/panoramic/architecture-ir-model.d.ts.map +1 -0
  274. package/dist/panoramic/architecture-ir-model.js +20 -0
  275. package/dist/panoramic/architecture-ir-model.js.map +1 -0
  276. package/dist/panoramic/architecture-narrative.d.ts +68 -0
  277. package/dist/panoramic/architecture-narrative.d.ts.map +1 -0
  278. package/dist/panoramic/architecture-narrative.js +401 -0
  279. package/dist/panoramic/architecture-narrative.js.map +1 -0
  280. package/dist/panoramic/architecture-overview-generator.d.ts +31 -0
  281. package/dist/panoramic/architecture-overview-generator.d.ts.map +1 -0
  282. package/dist/panoramic/architecture-overview-generator.js +454 -0
  283. package/dist/panoramic/architecture-overview-generator.js.map +1 -0
  284. package/dist/panoramic/architecture-overview-model.d.ts +77 -0
  285. package/dist/panoramic/architecture-overview-model.d.ts.map +1 -0
  286. package/dist/panoramic/architecture-overview-model.js +31 -0
  287. package/dist/panoramic/architecture-overview-model.js.map +1 -0
  288. package/dist/panoramic/batch-project-docs.d.ts.map +1 -1
  289. package/dist/panoramic/batch-project-docs.js +4 -2
  290. package/dist/panoramic/batch-project-docs.js.map +1 -1
  291. package/dist/panoramic/builders/component-view-builder.d.ts +25 -1
  292. package/dist/panoramic/builders/component-view-builder.d.ts.map +1 -1
  293. package/dist/panoramic/builders/component-view-builder.js +83 -3
  294. package/dist/panoramic/builders/component-view-builder.js.map +1 -1
  295. package/dist/panoramic/builders/doc-graph-builder.d.ts +15 -2
  296. package/dist/panoramic/builders/doc-graph-builder.d.ts.map +1 -1
  297. package/dist/panoramic/builders/doc-graph-builder.js +20 -0
  298. package/dist/panoramic/builders/doc-graph-builder.js.map +1 -1
  299. package/dist/panoramic/component-view-builder.d.ts +17 -0
  300. package/dist/panoramic/component-view-builder.d.ts.map +1 -0
  301. package/dist/panoramic/component-view-builder.js +652 -0
  302. package/dist/panoramic/component-view-builder.js.map +1 -0
  303. package/dist/panoramic/component-view-model.d.ts +127 -0
  304. package/dist/panoramic/component-view-model.d.ts.map +1 -0
  305. package/dist/panoramic/component-view-model.js +65 -0
  306. package/dist/panoramic/component-view-model.js.map +1 -0
  307. package/dist/panoramic/config-reference-generator.d.ts +78 -0
  308. package/dist/panoramic/config-reference-generator.d.ts.map +1 -0
  309. package/dist/panoramic/config-reference-generator.js +199 -0
  310. package/dist/panoramic/config-reference-generator.js.map +1 -0
  311. package/dist/panoramic/coverage-auditor.d.ts +95 -0
  312. package/dist/panoramic/coverage-auditor.d.ts.map +1 -0
  313. package/dist/panoramic/coverage-auditor.js +290 -0
  314. package/dist/panoramic/coverage-auditor.js.map +1 -0
  315. package/dist/panoramic/cross-package-analyzer.d.ts +112 -0
  316. package/dist/panoramic/cross-package-analyzer.d.ts.map +1 -0
  317. package/dist/panoramic/cross-package-analyzer.js +258 -0
  318. package/dist/panoramic/cross-package-analyzer.js.map +1 -0
  319. package/dist/panoramic/data-model-generator.d.ts +528 -0
  320. package/dist/panoramic/data-model-generator.d.ts.map +1 -0
  321. package/dist/panoramic/data-model-generator.js +647 -0
  322. package/dist/panoramic/data-model-generator.js.map +1 -0
  323. package/dist/panoramic/doc-graph-builder.d.ts +80 -0
  324. package/dist/panoramic/doc-graph-builder.d.ts.map +1 -0
  325. package/dist/panoramic/doc-graph-builder.js +352 -0
  326. package/dist/panoramic/doc-graph-builder.js.map +1 -0
  327. package/dist/panoramic/docs-bundle-manifest-reader.d.ts +26 -0
  328. package/dist/panoramic/docs-bundle-manifest-reader.d.ts.map +1 -0
  329. package/dist/panoramic/docs-bundle-manifest-reader.js +106 -0
  330. package/dist/panoramic/docs-bundle-manifest-reader.js.map +1 -0
  331. package/dist/panoramic/docs-bundle-orchestrator.d.ts +14 -0
  332. package/dist/panoramic/docs-bundle-orchestrator.d.ts.map +1 -0
  333. package/dist/panoramic/docs-bundle-orchestrator.js +538 -0
  334. package/dist/panoramic/docs-bundle-orchestrator.js.map +1 -0
  335. package/dist/panoramic/docs-bundle-profiles.d.ts +4 -0
  336. package/dist/panoramic/docs-bundle-profiles.d.ts.map +1 -0
  337. package/dist/panoramic/docs-bundle-profiles.js +82 -0
  338. package/dist/panoramic/docs-bundle-profiles.js.map +1 -0
  339. package/dist/panoramic/docs-bundle-types.d.ts +94 -0
  340. package/dist/panoramic/docs-bundle-types.d.ts.map +1 -0
  341. package/dist/panoramic/docs-bundle-types.js +10 -0
  342. package/dist/panoramic/docs-bundle-types.js.map +1 -0
  343. package/dist/panoramic/docs-quality-evaluator.d.ts +31 -0
  344. package/dist/panoramic/docs-quality-evaluator.d.ts.map +1 -0
  345. package/dist/panoramic/docs-quality-evaluator.js +941 -0
  346. package/dist/panoramic/docs-quality-evaluator.js.map +1 -0
  347. package/dist/panoramic/docs-quality-model.d.ts +125 -0
  348. package/dist/panoramic/docs-quality-model.d.ts.map +1 -0
  349. package/dist/panoramic/docs-quality-model.js +166 -0
  350. package/dist/panoramic/docs-quality-model.js.map +1 -0
  351. package/dist/panoramic/dynamic-scenarios-builder.d.ts +18 -0
  352. package/dist/panoramic/dynamic-scenarios-builder.d.ts.map +1 -0
  353. package/dist/panoramic/dynamic-scenarios-builder.js +316 -0
  354. package/dist/panoramic/dynamic-scenarios-builder.js.map +1 -0
  355. package/dist/panoramic/event-surface-generator.d.ts +52 -0
  356. package/dist/panoramic/event-surface-generator.d.ts.map +1 -0
  357. package/dist/panoramic/event-surface-generator.js +507 -0
  358. package/dist/panoramic/event-surface-generator.js.map +1 -0
  359. package/dist/panoramic/generator-registry.d.ts +1 -1
  360. package/dist/panoramic/generator-registry.d.ts.map +1 -1
  361. package/dist/panoramic/generator-registry.js +5 -2
  362. package/dist/panoramic/generator-registry.js.map +1 -1
  363. package/dist/panoramic/generators/cross-package-analyzer.d.ts +5 -5
  364. package/dist/panoramic/generators/cross-package-analyzer.d.ts.map +1 -1
  365. package/dist/panoramic/generators/cross-package-analyzer.js +1 -1
  366. package/dist/panoramic/generators/cross-package-analyzer.js.map +1 -1
  367. package/dist/panoramic/generators/data-model-generator.d.ts +27 -27
  368. package/dist/panoramic/graph/confidence-mapper.d.ts +18 -0
  369. package/dist/panoramic/graph/confidence-mapper.d.ts.map +1 -1
  370. package/dist/panoramic/graph/confidence-mapper.js +26 -0
  371. package/dist/panoramic/graph/confidence-mapper.js.map +1 -1
  372. package/dist/panoramic/graph/graph-builder.d.ts +72 -2
  373. package/dist/panoramic/graph/graph-builder.d.ts.map +1 -1
  374. package/dist/panoramic/graph/graph-builder.js +330 -46
  375. package/dist/panoramic/graph/graph-builder.js.map +1 -1
  376. package/dist/panoramic/graph/graph-paths.d.ts +8 -0
  377. package/dist/panoramic/graph/graph-paths.d.ts.map +1 -1
  378. package/dist/panoramic/graph/graph-paths.js +10 -0
  379. package/dist/panoramic/graph/graph-paths.js.map +1 -1
  380. package/dist/panoramic/graph/graph-query.d.ts +49 -2
  381. package/dist/panoramic/graph/graph-query.d.ts.map +1 -1
  382. package/dist/panoramic/graph/graph-query.js +117 -19
  383. package/dist/panoramic/graph/graph-query.js.map +1 -1
  384. package/dist/panoramic/graph/graph-types.d.ts +32 -3
  385. package/dist/panoramic/graph/graph-types.d.ts.map +1 -1
  386. package/dist/panoramic/graph/index.d.ts +2 -1
  387. package/dist/panoramic/graph/index.d.ts.map +1 -1
  388. package/dist/panoramic/graph/index.js +1 -1
  389. package/dist/panoramic/graph/index.js.map +1 -1
  390. package/dist/panoramic/hyperedges/schema.d.ts +6 -6
  391. package/dist/panoramic/interface-surface-generator.d.ts +50 -0
  392. package/dist/panoramic/interface-surface-generator.d.ts.map +1 -0
  393. package/dist/panoramic/interface-surface-generator.js +388 -0
  394. package/dist/panoramic/interface-surface-generator.js.map +1 -0
  395. package/dist/panoramic/interfaces.d.ts +2 -2
  396. package/dist/panoramic/mock-readme-generator.d.ts +90 -0
  397. package/dist/panoramic/mock-readme-generator.d.ts.map +1 -0
  398. package/dist/panoramic/mock-readme-generator.js +111 -0
  399. package/dist/panoramic/mock-readme-generator.js.map +1 -0
  400. package/dist/panoramic/models/component-view-model.d.ts +1 -1
  401. package/dist/panoramic/models/component-view-model.d.ts.map +1 -1
  402. package/dist/panoramic/models/component-view-model.js.map +1 -1
  403. package/dist/panoramic/narrative-provenance-adapter.d.ts +8 -0
  404. package/dist/panoramic/narrative-provenance-adapter.d.ts.map +1 -0
  405. package/dist/panoramic/narrative-provenance-adapter.js +99 -0
  406. package/dist/panoramic/narrative-provenance-adapter.js.map +1 -0
  407. package/dist/panoramic/parser-registry.d.ts +1 -1
  408. package/dist/panoramic/parser-registry.js +1 -1
  409. package/dist/panoramic/parsers/types.d.ts +6 -6
  410. package/dist/panoramic/pattern-hints-generator.d.ts +28 -0
  411. package/dist/panoramic/pattern-hints-generator.d.ts.map +1 -0
  412. package/dist/panoramic/pattern-hints-generator.js +218 -0
  413. package/dist/panoramic/pattern-hints-generator.js.map +1 -0
  414. package/dist/panoramic/pattern-hints-model.d.ts +89 -0
  415. package/dist/panoramic/pattern-hints-model.d.ts.map +1 -0
  416. package/dist/panoramic/pattern-hints-model.js +61 -0
  417. package/dist/panoramic/pattern-hints-model.js.map +1 -0
  418. package/dist/panoramic/pattern-knowledge-base.d.ts +31 -0
  419. package/dist/panoramic/pattern-knowledge-base.d.ts.map +1 -0
  420. package/dist/panoramic/pattern-knowledge-base.js +407 -0
  421. package/dist/panoramic/pattern-knowledge-base.js.map +1 -0
  422. package/dist/panoramic/pipelines/adr-evidence-verifier.d.ts.map +1 -1
  423. package/dist/panoramic/pipelines/adr-evidence-verifier.js +1 -29
  424. package/dist/panoramic/pipelines/adr-evidence-verifier.js.map +1 -1
  425. package/dist/panoramic/pipelines/coverage-auditor.d.ts.map +1 -1
  426. package/dist/panoramic/pipelines/coverage-auditor.js +4 -2
  427. package/dist/panoramic/pipelines/coverage-auditor.js.map +1 -1
  428. package/dist/panoramic/pipelines/docs-bundle-orchestrator.js +13 -6
  429. package/dist/panoramic/pipelines/docs-bundle-orchestrator.js.map +1 -1
  430. package/dist/panoramic/pipelines/product-ux-docs.d.ts +5 -0
  431. package/dist/panoramic/pipelines/product-ux-docs.d.ts.map +1 -1
  432. package/dist/panoramic/pipelines/product-ux-docs.js +34 -6
  433. package/dist/panoramic/pipelines/product-ux-docs.js.map +1 -1
  434. package/dist/panoramic/product-ux-docs.d.ts +104 -0
  435. package/dist/panoramic/product-ux-docs.d.ts.map +1 -0
  436. package/dist/panoramic/product-ux-docs.js +817 -0
  437. package/dist/panoramic/product-ux-docs.js.map +1 -0
  438. package/dist/panoramic/qa/__tests__/citation.test.d.ts +2 -0
  439. package/dist/panoramic/qa/__tests__/citation.test.d.ts.map +1 -0
  440. package/dist/panoramic/qa/__tests__/citation.test.js +193 -0
  441. package/dist/panoramic/qa/__tests__/citation.test.js.map +1 -0
  442. package/dist/panoramic/qa/__tests__/debt-context.test.d.ts +2 -0
  443. package/dist/panoramic/qa/__tests__/debt-context.test.d.ts.map +1 -0
  444. package/dist/panoramic/qa/__tests__/debt-context.test.js +154 -0
  445. package/dist/panoramic/qa/__tests__/debt-context.test.js.map +1 -0
  446. package/dist/panoramic/qa/__tests__/graph-retriever.test.d.ts +2 -0
  447. package/dist/panoramic/qa/__tests__/graph-retriever.test.d.ts.map +1 -0
  448. package/dist/panoramic/qa/__tests__/graph-retriever.test.js +148 -0
  449. package/dist/panoramic/qa/__tests__/graph-retriever.test.js.map +1 -0
  450. package/dist/panoramic/qa/__tests__/index.test.d.ts +2 -0
  451. package/dist/panoramic/qa/__tests__/index.test.d.ts.map +1 -0
  452. package/dist/panoramic/qa/__tests__/index.test.js +246 -0
  453. package/dist/panoramic/qa/__tests__/index.test.js.map +1 -0
  454. package/dist/panoramic/qa/__tests__/llm-caller.test.d.ts +2 -0
  455. package/dist/panoramic/qa/__tests__/llm-caller.test.d.ts.map +1 -0
  456. package/dist/panoramic/qa/__tests__/llm-caller.test.js +168 -0
  457. package/dist/panoramic/qa/__tests__/llm-caller.test.js.map +1 -0
  458. package/dist/panoramic/qa/__tests__/prompt-builder.test.d.ts +2 -0
  459. package/dist/panoramic/qa/__tests__/prompt-builder.test.d.ts.map +1 -0
  460. package/dist/panoramic/qa/__tests__/prompt-builder.test.js +150 -0
  461. package/dist/panoramic/qa/__tests__/prompt-builder.test.js.map +1 -0
  462. package/dist/panoramic/qa/__tests__/qa-integration.test.d.ts +2 -0
  463. package/dist/panoramic/qa/__tests__/qa-integration.test.d.ts.map +1 -0
  464. package/dist/panoramic/qa/__tests__/qa-integration.test.js +296 -0
  465. package/dist/panoramic/qa/__tests__/qa-integration.test.js.map +1 -0
  466. package/dist/panoramic/qa/__tests__/rag-reranker.test.d.ts +2 -0
  467. package/dist/panoramic/qa/__tests__/rag-reranker.test.d.ts.map +1 -0
  468. package/dist/panoramic/qa/__tests__/rag-reranker.test.js +136 -0
  469. package/dist/panoramic/qa/__tests__/rag-reranker.test.js.map +1 -0
  470. package/dist/panoramic/qa/index.d.ts.map +1 -1
  471. package/dist/panoramic/qa/index.js +10 -3
  472. package/dist/panoramic/qa/index.js.map +1 -1
  473. package/dist/panoramic/query.d.ts +1 -0
  474. package/dist/panoramic/query.d.ts.map +1 -1
  475. package/dist/panoramic/query.js +5 -0
  476. package/dist/panoramic/query.js.map +1 -1
  477. package/dist/panoramic/runtime-topology-generator.d.ts +77 -0
  478. package/dist/panoramic/runtime-topology-generator.d.ts.map +1 -0
  479. package/dist/panoramic/runtime-topology-generator.js +676 -0
  480. package/dist/panoramic/runtime-topology-generator.js.map +1 -0
  481. package/dist/panoramic/runtime-topology-model.d.ts +145 -0
  482. package/dist/panoramic/runtime-topology-model.d.ts.map +1 -0
  483. package/dist/panoramic/runtime-topology-model.js +300 -0
  484. package/dist/panoramic/runtime-topology-model.js.map +1 -0
  485. package/dist/panoramic/troubleshooting-generator.d.ts +51 -0
  486. package/dist/panoramic/troubleshooting-generator.d.ts.map +1 -0
  487. package/dist/panoramic/troubleshooting-generator.js +451 -0
  488. package/dist/panoramic/troubleshooting-generator.js.map +1 -0
  489. package/dist/panoramic/utils/text-segmenter.d.ts +15 -0
  490. package/dist/panoramic/utils/text-segmenter.d.ts.map +1 -1
  491. package/dist/panoramic/utils/text-segmenter.js +38 -0
  492. package/dist/panoramic/utils/text-segmenter.js.map +1 -1
  493. package/dist/panoramic/workspace-index-generator.d.ts +148 -0
  494. package/dist/panoramic/workspace-index-generator.d.ts.map +1 -0
  495. package/dist/panoramic/workspace-index-generator.js +497 -0
  496. package/dist/panoramic/workspace-index-generator.js.map +1 -0
  497. package/dist/runtime-bootstrap.d.ts +9 -0
  498. package/dist/runtime-bootstrap.d.ts.map +1 -0
  499. package/dist/runtime-bootstrap.js +33 -0
  500. package/dist/runtime-bootstrap.js.map +1 -0
  501. package/dist/scaffold-kb/api-entities-serializer.d.ts +12 -0
  502. package/dist/scaffold-kb/api-entities-serializer.d.ts.map +1 -0
  503. package/dist/scaffold-kb/api-entities-serializer.js +144 -0
  504. package/dist/scaffold-kb/api-entities-serializer.js.map +1 -0
  505. package/dist/scaffold-kb/arbitration.d.ts +44 -0
  506. package/dist/scaffold-kb/arbitration.d.ts.map +1 -0
  507. package/dist/scaffold-kb/arbitration.js +144 -0
  508. package/dist/scaffold-kb/arbitration.js.map +1 -0
  509. package/dist/scaffold-kb/chunk-splitter.d.ts +20 -0
  510. package/dist/scaffold-kb/chunk-splitter.d.ts.map +1 -0
  511. package/dist/scaffold-kb/chunk-splitter.js +309 -0
  512. package/dist/scaffold-kb/chunk-splitter.js.map +1 -0
  513. package/dist/scaffold-kb/doc-graph-builder.d.ts +26 -0
  514. package/dist/scaffold-kb/doc-graph-builder.d.ts.map +1 -0
  515. package/dist/scaffold-kb/doc-graph-builder.js +72 -0
  516. package/dist/scaffold-kb/doc-graph-builder.js.map +1 -0
  517. package/dist/scaffold-kb/entity-extractor.d.ts +40 -0
  518. package/dist/scaffold-kb/entity-extractor.d.ts.map +1 -0
  519. package/dist/scaffold-kb/entity-extractor.js +0 -0
  520. package/dist/scaffold-kb/entity-extractor.js.map +1 -0
  521. package/dist/scaffold-kb/entity-heuristic.d.ts +14 -0
  522. package/dist/scaffold-kb/entity-heuristic.d.ts.map +1 -0
  523. package/dist/scaffold-kb/entity-heuristic.js +107 -0
  524. package/dist/scaffold-kb/entity-heuristic.js.map +1 -0
  525. package/dist/scaffold-kb/entity-matcher.d.ts +20 -0
  526. package/dist/scaffold-kb/entity-matcher.d.ts.map +1 -0
  527. package/dist/scaffold-kb/entity-matcher.js +53 -0
  528. package/dist/scaffold-kb/entity-matcher.js.map +1 -0
  529. package/dist/scaffold-kb/entity-util.d.ts +11 -0
  530. package/dist/scaffold-kb/entity-util.d.ts.map +1 -0
  531. package/dist/scaffold-kb/entity-util.js +23 -0
  532. package/dist/scaffold-kb/entity-util.js.map +1 -0
  533. package/dist/scaffold-kb/evidence-envelope.d.ts +17 -0
  534. package/dist/scaffold-kb/evidence-envelope.d.ts.map +1 -0
  535. package/dist/scaffold-kb/evidence-envelope.js +32 -0
  536. package/dist/scaffold-kb/evidence-envelope.js.map +1 -0
  537. package/dist/scaffold-kb/index.d.ts +20 -0
  538. package/dist/scaffold-kb/index.d.ts.map +1 -0
  539. package/dist/scaffold-kb/index.js +102 -0
  540. package/dist/scaffold-kb/index.js.map +1 -0
  541. package/dist/scaffold-kb/ingest/ingest-core.d.ts +47 -0
  542. package/dist/scaffold-kb/ingest/ingest-core.d.ts.map +1 -0
  543. package/dist/scaffold-kb/ingest/ingest-core.js +231 -0
  544. package/dist/scaffold-kb/ingest/ingest-core.js.map +1 -0
  545. package/dist/scaffold-kb/ingest/office-parser.d.ts +33 -0
  546. package/dist/scaffold-kb/ingest/office-parser.d.ts.map +1 -0
  547. package/dist/scaffold-kb/ingest/office-parser.js +187 -0
  548. package/dist/scaffold-kb/ingest/office-parser.js.map +1 -0
  549. package/dist/scaffold-kb/ingest/url-fetcher.d.ts +43 -0
  550. package/dist/scaffold-kb/ingest/url-fetcher.d.ts.map +1 -0
  551. package/dist/scaffold-kb/ingest/url-fetcher.js +245 -0
  552. package/dist/scaffold-kb/ingest/url-fetcher.js.map +1 -0
  553. package/dist/scaffold-kb/ingester.d.ts +38 -0
  554. package/dist/scaffold-kb/ingester.d.ts.map +1 -0
  555. package/dist/scaffold-kb/ingester.js +261 -0
  556. package/dist/scaffold-kb/ingester.js.map +1 -0
  557. package/dist/scaffold-kb/injection-format.d.ts +25 -0
  558. package/dist/scaffold-kb/injection-format.d.ts.map +1 -0
  559. package/dist/scaffold-kb/injection-format.js +55 -0
  560. package/dist/scaffold-kb/injection-format.js.map +1 -0
  561. package/dist/scaffold-kb/kb-writer.d.ts +13 -0
  562. package/dist/scaffold-kb/kb-writer.d.ts.map +1 -0
  563. package/dist/scaffold-kb/kb-writer.js +69 -0
  564. package/dist/scaffold-kb/kb-writer.js.map +1 -0
  565. package/dist/scaffold-kb/keyword-extract.d.ts +16 -0
  566. package/dist/scaffold-kb/keyword-extract.d.ts.map +1 -0
  567. package/dist/scaffold-kb/keyword-extract.js +49 -0
  568. package/dist/scaffold-kb/keyword-extract.js.map +1 -0
  569. package/dist/scaffold-kb/query-sanitizer.d.ts +28 -0
  570. package/dist/scaffold-kb/query-sanitizer.d.ts.map +1 -0
  571. package/dist/scaffold-kb/query-sanitizer.js +38 -0
  572. package/dist/scaffold-kb/query-sanitizer.js.map +1 -0
  573. package/dist/scaffold-kb/recall-eval.d.ts +48 -0
  574. package/dist/scaffold-kb/recall-eval.d.ts.map +1 -0
  575. package/dist/scaffold-kb/recall-eval.js +55 -0
  576. package/dist/scaffold-kb/recall-eval.js.map +1 -0
  577. package/dist/scaffold-kb/schema-compat.d.ts +22 -0
  578. package/dist/scaffold-kb/schema-compat.d.ts.map +1 -0
  579. package/dist/scaffold-kb/schema-compat.js +32 -0
  580. package/dist/scaffold-kb/schema-compat.js.map +1 -0
  581. package/dist/scaffold-kb/search-core.d.ts +42 -0
  582. package/dist/scaffold-kb/search-core.d.ts.map +1 -0
  583. package/dist/scaffold-kb/search-core.js +89 -0
  584. package/dist/scaffold-kb/search-core.js.map +1 -0
  585. package/dist/scaffold-kb/sqlite-engine.d.ts +58 -0
  586. package/dist/scaffold-kb/sqlite-engine.d.ts.map +1 -0
  587. package/dist/scaffold-kb/sqlite-engine.js +61 -0
  588. package/dist/scaffold-kb/sqlite-engine.js.map +1 -0
  589. package/dist/scaffold-kb/sqlite-writer.d.ts +18 -0
  590. package/dist/scaffold-kb/sqlite-writer.d.ts.map +1 -0
  591. package/dist/scaffold-kb/sqlite-writer.js +76 -0
  592. package/dist/scaffold-kb/sqlite-writer.js.map +1 -0
  593. package/dist/scaffold-kb/tokenizer.d.ts +26 -0
  594. package/dist/scaffold-kb/tokenizer.d.ts.map +1 -0
  595. package/dist/scaffold-kb/tokenizer.js +97 -0
  596. package/dist/scaffold-kb/tokenizer.js.map +1 -0
  597. package/dist/scaffold-kb/types.d.ts +157 -0
  598. package/dist/scaffold-kb/types.d.ts.map +1 -0
  599. package/dist/scaffold-kb/types.js +5 -0
  600. package/dist/scaffold-kb/types.js.map +1 -0
  601. package/dist/utils/file-scanner.d.ts +15 -0
  602. package/dist/utils/file-scanner.d.ts.map +1 -1
  603. package/dist/utils/file-scanner.js +18 -1
  604. package/dist/utils/file-scanner.js.map +1 -1
  605. package/dist/utils/string-distance.d.ts +20 -0
  606. package/dist/utils/string-distance.d.ts.map +1 -0
  607. package/dist/utils/string-distance.js +38 -0
  608. package/dist/utils/string-distance.js.map +1 -0
  609. package/package.json +22 -3
  610. package/plugins/demo-kb-en/.claude-plugin/plugin.json +11 -0
  611. package/plugins/demo-kb-en/.mcp.json +8 -0
  612. package/plugins/demo-kb-en/FIXTURE.json +23 -0
  613. package/plugins/demo-kb-en/FIXTURE.md +53 -0
  614. package/plugins/demo-kb-en/ingest-samples/meeting-notes.md +13 -0
  615. package/plugins/demo-kb-en/kb/api-entities.json +3445 -0
  616. package/plugins/demo-kb-en/kb/chunks.sqlite +0 -0
  617. package/plugins/demo-kb-en/kb/doc-graph.json +113 -0
  618. package/plugins/demo-kb-zh/.claude-plugin/plugin.json +11 -0
  619. package/plugins/demo-kb-zh/.mcp.json +8 -0
  620. package/plugins/demo-kb-zh/FIXTURE.json +23 -0
  621. package/plugins/demo-kb-zh/FIXTURE.md +63 -0
  622. package/plugins/demo-kb-zh/ingest-samples/meeting-notes.md +13 -0
  623. package/plugins/demo-kb-zh/kb/api-entities.json +990 -0
  624. package/plugins/demo-kb-zh/kb/chunks.sqlite +0 -0
  625. package/plugins/demo-kb-zh/kb/doc-graph.json +113 -0
  626. package/plugins/spec-driver/.claude-plugin/plugin.json +1 -1
  627. package/plugins/spec-driver/README.md +50 -1
  628. package/plugins/spec-driver/agents/implement.md +20 -1
  629. package/plugins/spec-driver/agents/plan.md +20 -1
  630. package/plugins/spec-driver/agents/quality-review.md +20 -1
  631. package/plugins/spec-driver/agents/spec-review.md +20 -1
  632. package/plugins/spec-driver/agents/verify.md +108 -1
  633. package/plugins/spec-driver/config/orchestration.yaml +39 -31
  634. package/plugins/spec-driver/contracts/orchestration-overrides-contract.yaml +27 -0
  635. package/plugins/spec-driver/contracts/orchestration-schema.mjs +272 -227
  636. package/plugins/spec-driver/contracts/wrapper-source-of-truth.yaml +3 -0
  637. package/plugins/spec-driver/docs/customization.md +134 -0
  638. package/plugins/spec-driver/docs/spectra-mcp-integration.md +165 -0
  639. package/plugins/spec-driver/hooks/hooks.json +9 -0
  640. package/plugins/spec-driver/hooks/stop-fix-compliance-check.sh +36 -0
  641. package/plugins/spec-driver/lib/delegation-contract.mjs +84 -0
  642. package/plugins/spec-driver/lib/orchestration-resolver.mjs +49 -0
  643. package/plugins/spec-driver/lib/orchestrator.mjs +29 -1
  644. package/plugins/spec-driver/lib/preference-rules.mjs +96 -0
  645. package/plugins/spec-driver/scripts/codex-skills.sh +28 -28
  646. package/plugins/spec-driver/scripts/dev/spike-fix-compliance-e2e.mjs +130 -0
  647. package/plugins/spec-driver/scripts/fix-compliance-judge.mjs +415 -0
  648. package/plugins/spec-driver/scripts/generate-adoption-insights.mjs +48 -1
  649. package/plugins/spec-driver/scripts/goal-loop-cli.mjs +307 -0
  650. package/plugins/spec-driver/scripts/init-project.sh +56 -0
  651. package/plugins/spec-driver/scripts/kb-prequery.mjs +125 -0
  652. package/plugins/spec-driver/scripts/lib/config-schema.mjs +200 -94
  653. package/plugins/spec-driver/scripts/lib/ensure-gitignore.sh +277 -0
  654. package/plugins/spec-driver/scripts/lib/extract-wrapper-body.mjs +136 -0
  655. package/plugins/spec-driver/scripts/lib/fix-compliance-core.mjs +434 -0
  656. package/plugins/spec-driver/scripts/lib/fix-compliance-io.mjs +335 -0
  657. package/plugins/spec-driver/scripts/lib/goal-loop-core.mjs +783 -0
  658. package/plugins/spec-driver/scripts/lib/init-project-output.sh +28 -0
  659. package/plugins/spec-driver/scripts/lib/load-zod.mjs +62 -0
  660. package/plugins/spec-driver/scripts/lib/project-profile-resolver.mjs +141 -49
  661. package/plugins/spec-driver/scripts/lib/project-profile-schema.mjs +88 -54
  662. package/plugins/spec-driver/scripts/postinstall.sh +13 -1
  663. package/plugins/spec-driver/scripts/record-workflow-run.mjs +75 -0
  664. package/plugins/spec-driver/scripts/sync-delegation-contract.mjs +187 -0
  665. package/plugins/spec-driver/scripts/sync-preference-rules.mjs +148 -0
  666. package/plugins/spec-driver/scripts/validate-orchestrator-models.mjs +156 -0
  667. package/plugins/spec-driver/scripts/validate-wrapper-sources.mjs +46 -1
  668. package/plugins/spec-driver/skills/spec-driver-feature/SKILL.md +302 -0
  669. package/plugins/spec-driver/skills/spec-driver-fix/SKILL.md +97 -8
  670. package/plugins/spec-driver/skills/spec-driver-implement/SKILL.md +18 -0
  671. package/plugins/spec-driver/skills/spec-driver-refactor/SKILL.md +10 -0
  672. package/plugins/spec-driver/skills/spec-driver-resume/SKILL.md +12 -1
  673. package/plugins/spec-driver/skills/spec-driver-story/SKILL.md +30 -0
  674. package/plugins/spec-driver/templates/delegation-contract.md +27 -0
  675. package/plugins/spec-driver/templates/goal-loop-override-template.yaml +284 -0
  676. package/plugins/spec-driver/templates/preference-rules.md +39 -0
  677. package/plugins/spec-driver/templates/specify-base/project-context-template.yaml +10 -0
  678. package/plugins/spectra/.claude-plugin/plugin.json +1 -1
  679. package/plugins/spectra/README.md +48 -1
  680. package/plugins/spectra/hooks/post-commit.sh +40 -0
  681. package/templates/module-spec.hbs +1 -0
  682. package/templates/product-overview.hbs +1 -1
@@ -0,0 +1,990 @@
1
+ {
2
+ "schema_version": "1.0",
3
+ "built_at": "2026-06-16T06:31:35.885Z",
4
+ "sdk_version": "5.5.0",
5
+ "source_kind": "vendor",
6
+ "entities": [
7
+ {
8
+ "id": "document.getelementbyid#function",
9
+ "name": "document.getElementById",
10
+ "qualified_name": "document.getElementById",
11
+ "container": null,
12
+ "overload_key": null,
13
+ "kind": "function",
14
+ "signature": "document.getElementById('dom-id')",
15
+ "params": [],
16
+ "returns": null,
17
+ "deprecated": null,
18
+ "since_version": null,
19
+ "source_doc_id": "basic-concepts.md",
20
+ "source_chunk_id": "basic-concepts.md#用-option-描述图表",
21
+ "source_chunk_ids": [
22
+ "basic-concepts.md#用-option-描述图表"
23
+ ],
24
+ "source_anchor": "用-option-描述图表",
25
+ "evidence_quote": null,
26
+ "lang": "zh",
27
+ "confidence": 0.5,
28
+ "extraction_method": "heuristic"
29
+ },
30
+ {
31
+ "id": "echarts.init#function",
32
+ "name": "echarts.init",
33
+ "qualified_name": "echarts.init",
34
+ "container": null,
35
+ "overload_key": null,
36
+ "kind": "function",
37
+ "signature": "echarts.init(dom)",
38
+ "params": [
39
+ {
40
+ "name": "dom"
41
+ }
42
+ ],
43
+ "returns": null,
44
+ "deprecated": null,
45
+ "since_version": null,
46
+ "source_doc_id": "basic-concepts.md",
47
+ "source_chunk_id": "basic-concepts.md#用-option-描述图表",
48
+ "source_chunk_ids": [
49
+ "basic-concepts.md#用-option-描述图表"
50
+ ],
51
+ "source_anchor": "用-option-描述图表",
52
+ "evidence_quote": null,
53
+ "lang": "zh",
54
+ "confidence": 0.5,
55
+ "extraction_method": "heuristic"
56
+ },
57
+ {
58
+ "id": "chart.setoption#function",
59
+ "name": "chart.setOption",
60
+ "qualified_name": "chart.setOption",
61
+ "container": null,
62
+ "overload_key": null,
63
+ "kind": "function",
64
+ "signature": "chart.setOption(option)",
65
+ "params": [
66
+ {
67
+ "name": "option"
68
+ }
69
+ ],
70
+ "returns": null,
71
+ "deprecated": null,
72
+ "since_version": null,
73
+ "source_doc_id": "basic-concepts.md",
74
+ "source_chunk_id": "basic-concepts.md#用-option-描述图表",
75
+ "source_chunk_ids": [
76
+ "basic-concepts.md#用-option-描述图表"
77
+ ],
78
+ "source_anchor": "用-option-描述图表",
79
+ "evidence_quote": null,
80
+ "lang": "zh",
81
+ "confidence": 0.5,
82
+ "extraction_method": "heuristic"
83
+ },
84
+ {
85
+ "id": "$.get#function",
86
+ "name": "$.get",
87
+ "qualified_name": "$.get",
88
+ "container": null,
89
+ "overload_key": null,
90
+ "kind": "function",
91
+ "signature": "$.get('data.json')",
92
+ "params": [],
93
+ "returns": null,
94
+ "deprecated": null,
95
+ "since_version": null,
96
+ "source_doc_id": "dynamic-data.md",
97
+ "source_chunk_id": "dynamic-data.md#异步加载",
98
+ "source_chunk_ids": [
99
+ "dynamic-data.md#异步加载"
100
+ ],
101
+ "source_anchor": "异步加载",
102
+ "evidence_quote": null,
103
+ "lang": "zh",
104
+ "confidence": 0.5,
105
+ "extraction_method": "heuristic"
106
+ },
107
+ {
108
+ "id": "done#function",
109
+ "name": "done",
110
+ "qualified_name": "done",
111
+ "container": null,
112
+ "overload_key": null,
113
+ "kind": "function",
114
+ "signature": "done(function (data)",
115
+ "params": [
116
+ {
117
+ "name": "function (data"
118
+ }
119
+ ],
120
+ "returns": null,
121
+ "deprecated": null,
122
+ "since_version": null,
123
+ "source_doc_id": "dynamic-data.md",
124
+ "source_chunk_id": "dynamic-data.md#异步加载",
125
+ "source_chunk_ids": [
126
+ "dynamic-data.md#异步加载"
127
+ ],
128
+ "source_anchor": "异步加载",
129
+ "evidence_quote": null,
130
+ "lang": "zh",
131
+ "confidence": 0.5,
132
+ "extraction_method": "heuristic"
133
+ },
134
+ {
135
+ "id": "mychart.setoption#function",
136
+ "name": "myChart.setOption",
137
+ "qualified_name": "myChart.setOption",
138
+ "container": null,
139
+ "overload_key": null,
140
+ "kind": "function",
141
+ "signature": "myChart.setOption({\n title: {\n text: '异步数据加载示例'\n },\n tooltip: {},\n legend: {\n data:['销量']\n },\n xAxis: {\n data: data.categories\n },\n yAxis: {},\n series: [{\n name: '销量',\n type: 'bar',\n data: data.data\n }]\n })",
142
+ "params": [
143
+ {
144
+ "name": "tooltip",
145
+ "type": "{}"
146
+ },
147
+ {
148
+ "name": "legend",
149
+ "type": "{\n data:['销量']\n }"
150
+ },
151
+ {
152
+ "name": "xAxis",
153
+ "type": "{\n data: data.categories\n }"
154
+ },
155
+ {
156
+ "name": "yAxis",
157
+ "type": "{}"
158
+ },
159
+ {
160
+ "name": "series",
161
+ "type": "[{\n name: '销量'"
162
+ },
163
+ {
164
+ "name": "type",
165
+ "type": "'bar'"
166
+ },
167
+ {
168
+ "name": "data",
169
+ "type": "data.data\n }]\n }"
170
+ }
171
+ ],
172
+ "returns": null,
173
+ "deprecated": null,
174
+ "since_version": null,
175
+ "source_doc_id": "dynamic-data.md",
176
+ "source_chunk_id": "dynamic-data.md#异步加载",
177
+ "source_chunk_ids": [
178
+ "dynamic-data.md#异步加载"
179
+ ],
180
+ "source_anchor": "异步加载",
181
+ "evidence_quote": null,
182
+ "lang": "zh",
183
+ "confidence": 0.5,
184
+ "extraction_method": "heuristic"
185
+ },
186
+ {
187
+ "id": "mychart.showloading#function",
188
+ "name": "myChart.showLoading",
189
+ "qualified_name": "myChart.showLoading",
190
+ "container": null,
191
+ "overload_key": null,
192
+ "kind": "function",
193
+ "signature": "myChart.showLoading()",
194
+ "params": [],
195
+ "returns": null,
196
+ "deprecated": null,
197
+ "since_version": null,
198
+ "source_doc_id": "dynamic-data.md",
199
+ "source_chunk_id": "dynamic-data.md#loading-动画",
200
+ "source_chunk_ids": [
201
+ "dynamic-data.md#loading-动画"
202
+ ],
203
+ "source_anchor": "loading-动画",
204
+ "evidence_quote": null,
205
+ "lang": "zh",
206
+ "confidence": 0.5,
207
+ "extraction_method": "heuristic"
208
+ },
209
+ {
210
+ "id": "mychart.hideloading#function",
211
+ "name": "myChart.hideLoading",
212
+ "qualified_name": "myChart.hideLoading",
213
+ "container": null,
214
+ "overload_key": null,
215
+ "kind": "function",
216
+ "signature": "myChart.hideLoading()",
217
+ "params": [],
218
+ "returns": null,
219
+ "deprecated": null,
220
+ "since_version": null,
221
+ "source_doc_id": "dynamic-data.md",
222
+ "source_chunk_id": "dynamic-data.md#loading-动画",
223
+ "source_chunk_ids": [
224
+ "dynamic-data.md#loading-动画"
225
+ ],
226
+ "source_anchor": "loading-动画",
227
+ "evidence_quote": null,
228
+ "lang": "zh",
229
+ "confidence": 0.5,
230
+ "extraction_method": "heuristic"
231
+ },
232
+ {
233
+ "id": "data.push#function",
234
+ "name": "data.push",
235
+ "qualified_name": "data.push",
236
+ "container": null,
237
+ "overload_key": null,
238
+ "kind": "function",
239
+ "signature": "data.push(value)",
240
+ "params": [
241
+ {
242
+ "name": "value"
243
+ }
244
+ ],
245
+ "returns": null,
246
+ "deprecated": null,
247
+ "since_version": null,
248
+ "source_doc_id": "dynamic-data.md",
249
+ "source_chunk_id": "dynamic-data.md#数据的动态更新",
250
+ "source_chunk_ids": [
251
+ "dynamic-data.md#数据的动态更新"
252
+ ],
253
+ "source_anchor": "数据的动态更新",
254
+ "evidence_quote": null,
255
+ "lang": "zh",
256
+ "confidence": 0.5,
257
+ "extraction_method": "heuristic"
258
+ },
259
+ {
260
+ "id": "mychart.on#function",
261
+ "name": "myChart.on",
262
+ "qualified_name": "myChart.on",
263
+ "container": null,
264
+ "overload_key": null,
265
+ "kind": "function",
266
+ "signature": "myChart.on('click', function (params)",
267
+ "params": [
268
+ {
269
+ "name": "function (params"
270
+ }
271
+ ],
272
+ "returns": null,
273
+ "deprecated": null,
274
+ "since_version": null,
275
+ "source_doc_id": "event.md",
276
+ "source_chunk_id": "event.md#_1",
277
+ "source_chunk_ids": [
278
+ "event.md#_1"
279
+ ],
280
+ "source_anchor": null,
281
+ "evidence_quote": null,
282
+ "lang": "zh",
283
+ "confidence": 0.5,
284
+ "extraction_method": "heuristic"
285
+ },
286
+ {
287
+ "id": "console.log#function",
288
+ "name": "console.log",
289
+ "qualified_name": "console.log",
290
+ "container": null,
291
+ "overload_key": null,
292
+ "kind": "function",
293
+ "signature": "console.log(params.name)",
294
+ "params": [
295
+ {
296
+ "name": "params.name"
297
+ }
298
+ ],
299
+ "returns": null,
300
+ "deprecated": null,
301
+ "since_version": null,
302
+ "source_doc_id": "event.md",
303
+ "source_chunk_id": "event.md#_1",
304
+ "source_chunk_ids": [
305
+ "event.md#_1"
306
+ ],
307
+ "source_anchor": null,
308
+ "evidence_quote": null,
309
+ "lang": "zh",
310
+ "confidence": 0.5,
311
+ "extraction_method": "heuristic"
312
+ },
313
+ {
314
+ "id": "window.open#function",
315
+ "name": "window.open",
316
+ "qualified_name": "window.open",
317
+ "container": null,
318
+ "overload_key": null,
319
+ "kind": "function",
320
+ "signature": "window.open('https://www.baidu.com/s?wd=' + encodeURIComponent(params.name)",
321
+ "params": [],
322
+ "returns": null,
323
+ "deprecated": null,
324
+ "since_version": null,
325
+ "source_doc_id": "event.md",
326
+ "source_chunk_id": "event.md#鼠标事件的处理",
327
+ "source_chunk_ids": [
328
+ "event.md#鼠标事件的处理",
329
+ "event.md#鼠标事件的处理-2",
330
+ "event.md#鼠标事件的处理-3"
331
+ ],
332
+ "source_anchor": "鼠标事件的处理",
333
+ "evidence_quote": null,
334
+ "lang": "zh",
335
+ "confidence": 0.5,
336
+ "extraction_method": "heuristic"
337
+ },
338
+ {
339
+ "id": "chart.on#function",
340
+ "name": "chart.on",
341
+ "qualified_name": "chart.on",
342
+ "container": null,
343
+ "overload_key": null,
344
+ "kind": "function",
345
+ "signature": "chart.on(eventName, query, handler)",
346
+ "params": [
347
+ {
348
+ "name": "eventName"
349
+ },
350
+ {
351
+ "name": "query"
352
+ },
353
+ {
354
+ "name": "handler"
355
+ }
356
+ ],
357
+ "returns": null,
358
+ "deprecated": null,
359
+ "since_version": null,
360
+ "source_doc_id": "event.md",
361
+ "source_chunk_id": "event.md#鼠标事件的处理",
362
+ "source_chunk_ids": [
363
+ "event.md#鼠标事件的处理",
364
+ "event.md#鼠标事件的处理-2",
365
+ "event.md#鼠标事件的处理-3"
366
+ ],
367
+ "source_anchor": "鼠标事件的处理",
368
+ "evidence_quote": null,
369
+ "lang": "zh",
370
+ "confidence": 0.5,
371
+ "extraction_method": "heuristic"
372
+ },
373
+ {
374
+ "id": "mychart.dispatchaction#function",
375
+ "name": "myChart.dispatchAction",
376
+ "qualified_name": "myChart.dispatchAction",
377
+ "container": null,
378
+ "overload_key": null,
379
+ "kind": "function",
380
+ "signature": "myChart.dispatchAction({ type: '' })",
381
+ "params": [],
382
+ "returns": null,
383
+ "deprecated": null,
384
+ "since_version": null,
385
+ "source_doc_id": "event.md",
386
+ "source_chunk_id": "event.md#代码触发-echarts-中组件的行为",
387
+ "source_chunk_ids": [
388
+ "event.md#代码触发-echarts-中组件的行为"
389
+ ],
390
+ "source_anchor": "代码触发-echarts-中组件的行为",
391
+ "evidence_quote": null,
392
+ "lang": "zh",
393
+ "confidence": 0.5,
394
+ "extraction_method": "heuristic"
395
+ },
396
+ {
397
+ "id": "mychart.getzr#function",
398
+ "name": "myChart.getZr",
399
+ "qualified_name": "myChart.getZr",
400
+ "container": null,
401
+ "overload_key": null,
402
+ "kind": "function",
403
+ "signature": "myChart.getZr()",
404
+ "params": [],
405
+ "returns": null,
406
+ "deprecated": null,
407
+ "since_version": null,
408
+ "source_doc_id": "event.md",
409
+ "source_chunk_id": "event.md#监听空白处的事件",
410
+ "source_chunk_ids": [
411
+ "event.md#监听空白处的事件"
412
+ ],
413
+ "source_anchor": "监听空白处的事件",
414
+ "evidence_quote": null,
415
+ "lang": "zh",
416
+ "confidence": 0.5,
417
+ "extraction_method": "heuristic"
418
+ },
419
+ {
420
+ "id": "on#function",
421
+ "name": "on",
422
+ "qualified_name": "on",
423
+ "container": null,
424
+ "overload_key": null,
425
+ "kind": "function",
426
+ "signature": "on('click', function (event)",
427
+ "params": [
428
+ {
429
+ "name": "function (event"
430
+ }
431
+ ],
432
+ "returns": null,
433
+ "deprecated": null,
434
+ "since_version": null,
435
+ "source_doc_id": "event.md",
436
+ "source_chunk_id": "event.md#监听空白处的事件",
437
+ "source_chunk_ids": [
438
+ "event.md#监听空白处的事件"
439
+ ],
440
+ "source_anchor": "监听空白处的事件",
441
+ "evidence_quote": null,
442
+ "lang": "zh",
443
+ "confidence": 0.5,
444
+ "extraction_method": "heuristic"
445
+ },
446
+ {
447
+ "id": "grid#function",
448
+ "name": "grid",
449
+ "qualified_name": "grid",
450
+ "container": null,
451
+ "overload_key": null,
452
+ "kind": "function",
453
+ "signature": "grid(cartesian2d)",
454
+ "params": [
455
+ {
456
+ "name": "cartesian2d"
457
+ }
458
+ ],
459
+ "returns": null,
460
+ "deprecated": null,
461
+ "since_version": null,
462
+ "source_doc_id": "option-series-line.md",
463
+ "source_chunk_id": "option-series-line.md#optionseriescoordinatesystem",
464
+ "source_chunk_ids": [
465
+ "option-series-line.md#optionseriescoordinatesystem",
466
+ "option-series-line.md#optionseriescoordinatesystem-2"
467
+ ],
468
+ "source_anchor": "optionseriescoordinatesystem",
469
+ "evidence_quote": null,
470
+ "lang": "zh",
471
+ "confidence": 0.5,
472
+ "extraction_method": "heuristic"
473
+ },
474
+ {
475
+ "id": "date#function",
476
+ "name": "Date",
477
+ "qualified_name": "Date",
478
+ "container": null,
479
+ "overload_key": null,
480
+ "kind": "function",
481
+ "signature": "Date('2012-01-01')",
482
+ "params": [],
483
+ "returns": null,
484
+ "deprecated": null,
485
+ "since_version": null,
486
+ "source_doc_id": "option-series-line.md",
487
+ "source_chunk_id": "option-series-line.md#optionseriesdata",
488
+ "source_chunk_ids": [
489
+ "option-series-line.md#optionseriesdata",
490
+ "option-series-line.md#optionseriesdata-2"
491
+ ],
492
+ "source_anchor": "optionseriesdata",
493
+ "evidence_quote": null,
494
+ "lang": "zh",
495
+ "confidence": 0.5,
496
+ "extraction_method": "heuristic"
497
+ },
498
+ {
499
+ "id": "ts#function",
500
+ "name": "ts",
501
+ "qualified_name": "ts",
502
+ "container": null,
503
+ "overload_key": null,
504
+ "kind": "function",
505
+ "signature": "ts(value: Array|number, params: Object)",
506
+ "params": [
507
+ {
508
+ "name": "value",
509
+ "type": "Array|number"
510
+ },
511
+ {
512
+ "name": "params",
513
+ "type": "Object"
514
+ }
515
+ ],
516
+ "returns": null,
517
+ "deprecated": null,
518
+ "since_version": null,
519
+ "source_doc_id": "option-series-line.md",
520
+ "source_chunk_id": "option-series-line.md#optionseriessymbol",
521
+ "source_chunk_ids": [
522
+ "option-series-line.md#optionseriessymbol"
523
+ ],
524
+ "source_anchor": "optionseriessymbol",
525
+ "evidence_quote": null,
526
+ "lang": "zh",
527
+ "confidence": 0.5,
528
+ "extraction_method": "heuristic"
529
+ },
530
+ {
531
+ "id": "echarts.format.encodehtml#function",
532
+ "name": "echarts.format.encodeHTML",
533
+ "qualified_name": "echarts.format.encodeHTML",
534
+ "container": null,
535
+ "overload_key": null,
536
+ "kind": "function",
537
+ "signature": "echarts.format.encodeHTML(name)",
538
+ "params": [
539
+ {
540
+ "name": "name"
541
+ }
542
+ ],
543
+ "returns": null,
544
+ "deprecated": null,
545
+ "since_version": null,
546
+ "source_doc_id": "option-tooltip.md",
547
+ "source_chunk_id": "option-tooltip.md#optiontooltipformatter",
548
+ "source_chunk_ids": [
549
+ "option-tooltip.md#optiontooltipformatter",
550
+ "option-tooltip.md#optiontooltipformatter-2",
551
+ "option-tooltip.md#optiontooltipformatter-3",
552
+ "option-tooltip.md#optiontooltipformatter-4"
553
+ ],
554
+ "source_anchor": "optiontooltipformatter",
555
+ "evidence_quote": null,
556
+ "lang": "zh",
557
+ "confidence": 0.5,
558
+ "extraction_method": "heuristic"
559
+ },
560
+ {
561
+ "id": "callback#function",
562
+ "name": "callback",
563
+ "qualified_name": "callback",
564
+ "container": null,
565
+ "overload_key": null,
566
+ "kind": "function",
567
+ "signature": "callback(ticket, toHTML(content)",
568
+ "params": [
569
+ {
570
+ "name": "ticket"
571
+ },
572
+ {
573
+ "name": "toHTML(content"
574
+ }
575
+ ],
576
+ "returns": null,
577
+ "deprecated": null,
578
+ "since_version": null,
579
+ "source_doc_id": "option-tooltip.md",
580
+ "source_chunk_id": "option-tooltip.md#optiontooltipformatter",
581
+ "source_chunk_ids": [
582
+ "option-tooltip.md#optiontooltipformatter",
583
+ "option-tooltip.md#optiontooltipformatter-2",
584
+ "option-tooltip.md#optiontooltipformatter-3",
585
+ "option-tooltip.md#optiontooltipformatter-4"
586
+ ],
587
+ "source_anchor": "optiontooltipformatter",
588
+ "evidence_quote": null,
589
+ "lang": "zh",
590
+ "confidence": 0.5,
591
+ "extraction_method": "heuristic"
592
+ },
593
+ {
594
+ "id": "date.getmonth#function",
595
+ "name": "date.getMonth",
596
+ "qualified_name": "date.getMonth",
597
+ "container": null,
598
+ "overload_key": null,
599
+ "kind": "function",
600
+ "signature": "date.getMonth()",
601
+ "params": [],
602
+ "returns": null,
603
+ "deprecated": null,
604
+ "since_version": null,
605
+ "source_doc_id": "option-xaxis.md",
606
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
607
+ "source_chunk_ids": [
608
+ "option-xaxis.md#optionxaxisaxislabelformatter",
609
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
610
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
611
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
612
+ ],
613
+ "source_anchor": "optionxaxisaxislabelformatter",
614
+ "evidence_quote": null,
615
+ "lang": "zh",
616
+ "confidence": 0.5,
617
+ "extraction_method": "heuristic"
618
+ },
619
+ {
620
+ "id": "date.getdate#function",
621
+ "name": "date.getDate",
622
+ "qualified_name": "date.getDate",
623
+ "container": null,
624
+ "overload_key": null,
625
+ "kind": "function",
626
+ "signature": "date.getDate()",
627
+ "params": [],
628
+ "returns": null,
629
+ "deprecated": null,
630
+ "since_version": null,
631
+ "source_doc_id": "option-xaxis.md",
632
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
633
+ "source_chunk_ids": [
634
+ "option-xaxis.md#optionxaxisaxislabelformatter",
635
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
636
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
637
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
638
+ ],
639
+ "source_anchor": "optionxaxisaxislabelformatter",
640
+ "evidence_quote": null,
641
+ "lang": "zh",
642
+ "confidence": 0.5,
643
+ "extraction_method": "heuristic"
644
+ },
645
+ {
646
+ "id": "texts.unshift#function",
647
+ "name": "texts.unshift",
648
+ "qualified_name": "texts.unshift",
649
+ "container": null,
650
+ "overload_key": null,
651
+ "kind": "function",
652
+ "signature": "texts.unshift(date.getFullYear()",
653
+ "params": [
654
+ {
655
+ "name": "date.getFullYear("
656
+ }
657
+ ],
658
+ "returns": null,
659
+ "deprecated": null,
660
+ "since_version": null,
661
+ "source_doc_id": "option-xaxis.md",
662
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
663
+ "source_chunk_ids": [
664
+ "option-xaxis.md#optionxaxisaxislabelformatter",
665
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
666
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
667
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
668
+ ],
669
+ "source_anchor": "optionxaxisaxislabelformatter",
670
+ "evidence_quote": null,
671
+ "lang": "zh",
672
+ "confidence": 0.5,
673
+ "extraction_method": "heuristic"
674
+ },
675
+ {
676
+ "id": "texts.join#function",
677
+ "name": "texts.join",
678
+ "qualified_name": "texts.join",
679
+ "container": null,
680
+ "overload_key": null,
681
+ "kind": "function",
682
+ "signature": "texts.join('/')",
683
+ "params": [],
684
+ "returns": null,
685
+ "deprecated": null,
686
+ "since_version": null,
687
+ "source_doc_id": "option-xaxis.md",
688
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
689
+ "source_chunk_ids": [
690
+ "option-xaxis.md#optionxaxisaxislabelformatter",
691
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
692
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
693
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
694
+ ],
695
+ "source_anchor": "optionxaxisaxislabelformatter",
696
+ "evidence_quote": null,
697
+ "lang": "zh",
698
+ "confidence": 0.5,
699
+ "extraction_method": "heuristic"
700
+ },
701
+ {
702
+ "id": "echarts.time.format#function",
703
+ "name": "echarts.time.format",
704
+ "qualified_name": "echarts.time.format",
705
+ "container": null,
706
+ "overload_key": null,
707
+ "kind": "function",
708
+ "signature": "echarts.time.format(value, '{yyyy}-{MM}-{dd} {hh}:{mm}:{ss}')",
709
+ "params": [
710
+ {
711
+ "name": "value"
712
+ }
713
+ ],
714
+ "returns": null,
715
+ "deprecated": null,
716
+ "since_version": null,
717
+ "source_doc_id": "option-xaxis.md",
718
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
719
+ "source_chunk_ids": [
720
+ "option-xaxis.md#optionxaxisaxislabelformatter",
721
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
722
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
723
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
724
+ ],
725
+ "source_anchor": "optionxaxisaxislabelformatter",
726
+ "evidence_quote": null,
727
+ "lang": "zh",
728
+ "confidence": 0.5,
729
+ "extraction_method": "heuristic"
730
+ },
731
+ {
732
+ "id": "yearstart.setmonth#function",
733
+ "name": "yearStart.setMonth",
734
+ "qualified_name": "yearStart.setMonth",
735
+ "container": null,
736
+ "overload_key": null,
737
+ "kind": "function",
738
+ "signature": "yearStart.setMonth(0)",
739
+ "params": [],
740
+ "returns": null,
741
+ "deprecated": null,
742
+ "since_version": null,
743
+ "source_doc_id": "option-xaxis.md",
744
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
745
+ "source_chunk_ids": [
746
+ "option-xaxis.md#optionxaxisaxislabelformatter",
747
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
748
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
749
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
750
+ ],
751
+ "source_anchor": "optionxaxisaxislabelformatter",
752
+ "evidence_quote": null,
753
+ "lang": "zh",
754
+ "confidence": 0.5,
755
+ "extraction_method": "heuristic"
756
+ },
757
+ {
758
+ "id": "yearstart.setdate#function",
759
+ "name": "yearStart.setDate",
760
+ "qualified_name": "yearStart.setDate",
761
+ "container": null,
762
+ "overload_key": null,
763
+ "kind": "function",
764
+ "signature": "yearStart.setDate(1)",
765
+ "params": [],
766
+ "returns": null,
767
+ "deprecated": null,
768
+ "since_version": null,
769
+ "source_doc_id": "option-xaxis.md",
770
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
771
+ "source_chunk_ids": [
772
+ "option-xaxis.md#optionxaxisaxislabelformatter",
773
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
774
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
775
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
776
+ ],
777
+ "source_anchor": "optionxaxisaxislabelformatter",
778
+ "evidence_quote": null,
779
+ "lang": "zh",
780
+ "confidence": 0.5,
781
+ "extraction_method": "heuristic"
782
+ },
783
+ {
784
+ "id": "yearstart.sethours#function",
785
+ "name": "yearStart.setHours",
786
+ "qualified_name": "yearStart.setHours",
787
+ "container": null,
788
+ "overload_key": null,
789
+ "kind": "function",
790
+ "signature": "yearStart.setHours(0)",
791
+ "params": [],
792
+ "returns": null,
793
+ "deprecated": null,
794
+ "since_version": null,
795
+ "source_doc_id": "option-xaxis.md",
796
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
797
+ "source_chunk_ids": [
798
+ "option-xaxis.md#optionxaxisaxislabelformatter",
799
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
800
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
801
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
802
+ ],
803
+ "source_anchor": "optionxaxisaxislabelformatter",
804
+ "evidence_quote": null,
805
+ "lang": "zh",
806
+ "confidence": 0.5,
807
+ "extraction_method": "heuristic"
808
+ },
809
+ {
810
+ "id": "yearstart.setminutes#function",
811
+ "name": "yearStart.setMinutes",
812
+ "qualified_name": "yearStart.setMinutes",
813
+ "container": null,
814
+ "overload_key": null,
815
+ "kind": "function",
816
+ "signature": "yearStart.setMinutes(0)",
817
+ "params": [],
818
+ "returns": null,
819
+ "deprecated": null,
820
+ "since_version": null,
821
+ "source_doc_id": "option-xaxis.md",
822
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
823
+ "source_chunk_ids": [
824
+ "option-xaxis.md#optionxaxisaxislabelformatter",
825
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
826
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
827
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
828
+ ],
829
+ "source_anchor": "optionxaxisaxislabelformatter",
830
+ "evidence_quote": null,
831
+ "lang": "zh",
832
+ "confidence": 0.5,
833
+ "extraction_method": "heuristic"
834
+ },
835
+ {
836
+ "id": "yearstart.setseconds#function",
837
+ "name": "yearStart.setSeconds",
838
+ "qualified_name": "yearStart.setSeconds",
839
+ "container": null,
840
+ "overload_key": null,
841
+ "kind": "function",
842
+ "signature": "yearStart.setSeconds(0)",
843
+ "params": [],
844
+ "returns": null,
845
+ "deprecated": null,
846
+ "since_version": null,
847
+ "source_doc_id": "option-xaxis.md",
848
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
849
+ "source_chunk_ids": [
850
+ "option-xaxis.md#optionxaxisaxislabelformatter",
851
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
852
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
853
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
854
+ ],
855
+ "source_anchor": "optionxaxisaxislabelformatter",
856
+ "evidence_quote": null,
857
+ "lang": "zh",
858
+ "confidence": 0.5,
859
+ "extraction_method": "heuristic"
860
+ },
861
+ {
862
+ "id": "yearstart.setmilliseconds#function",
863
+ "name": "yearStart.setMilliseconds",
864
+ "qualified_name": "yearStart.setMilliseconds",
865
+ "container": null,
866
+ "overload_key": null,
867
+ "kind": "function",
868
+ "signature": "yearStart.setMilliseconds(0)",
869
+ "params": [],
870
+ "returns": null,
871
+ "deprecated": null,
872
+ "since_version": null,
873
+ "source_doc_id": "option-xaxis.md",
874
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
875
+ "source_chunk_ids": [
876
+ "option-xaxis.md#optionxaxisaxislabelformatter",
877
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
878
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
879
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
880
+ ],
881
+ "source_anchor": "optionxaxisaxislabelformatter",
882
+ "evidence_quote": null,
883
+ "lang": "zh",
884
+ "confidence": 0.5,
885
+ "extraction_method": "heuristic"
886
+ },
887
+ {
888
+ "id": "yearstart.gettime#function",
889
+ "name": "yearStart.getTime",
890
+ "qualified_name": "yearStart.getTime",
891
+ "container": null,
892
+ "overload_key": null,
893
+ "kind": "function",
894
+ "signature": "yearStart.getTime()",
895
+ "params": [],
896
+ "returns": null,
897
+ "deprecated": null,
898
+ "since_version": null,
899
+ "source_doc_id": "option-xaxis.md",
900
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
901
+ "source_chunk_ids": [
902
+ "option-xaxis.md#optionxaxisaxislabelformatter",
903
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
904
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
905
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
906
+ ],
907
+ "source_anchor": "optionxaxisaxislabelformatter",
908
+ "evidence_quote": null,
909
+ "lang": "zh",
910
+ "confidence": 0.5,
911
+ "extraction_method": "heuristic"
912
+ },
913
+ {
914
+ "id": "date.getfullyear#function",
915
+ "name": "date.getFullYear",
916
+ "qualified_name": "date.getFullYear",
917
+ "container": null,
918
+ "overload_key": null,
919
+ "kind": "function",
920
+ "signature": "date.getFullYear()",
921
+ "params": [],
922
+ "returns": null,
923
+ "deprecated": null,
924
+ "since_version": null,
925
+ "source_doc_id": "option-xaxis.md",
926
+ "source_chunk_id": "option-xaxis.md#optionxaxisaxislabelformatter",
927
+ "source_chunk_ids": [
928
+ "option-xaxis.md#optionxaxisaxislabelformatter",
929
+ "option-xaxis.md#optionxaxisaxislabelformatter-2",
930
+ "option-xaxis.md#optionxaxisaxislabelformatter-3",
931
+ "option-xaxis.md#optionxaxisaxislabelformatter-4"
932
+ ],
933
+ "source_anchor": "optionxaxisaxislabelformatter",
934
+ "evidence_quote": null,
935
+ "lang": "zh",
936
+ "confidence": 0.5,
937
+ "extraction_method": "heuristic"
938
+ },
939
+ {
940
+ "id": "rgba#function",
941
+ "name": "rgba",
942
+ "qualified_name": "rgba",
943
+ "container": null,
944
+ "overload_key": null,
945
+ "kind": "function",
946
+ "signature": "rgba(0, 0, 0, 0.5)",
947
+ "params": [],
948
+ "returns": null,
949
+ "deprecated": null,
950
+ "since_version": null,
951
+ "source_doc_id": "styling.md",
952
+ "source_chunk_id": "styling.md#阴影的配置",
953
+ "source_chunk_ids": [
954
+ "styling.md#阴影的配置"
955
+ ],
956
+ "source_anchor": "阴影的配置",
957
+ "evidence_quote": null,
958
+ "lang": "zh",
959
+ "confidence": 0.5,
960
+ "extraction_method": "heuristic"
961
+ },
962
+ {
963
+ "id": "setoption#function",
964
+ "name": "setOption",
965
+ "qualified_name": "setOption",
966
+ "container": null,
967
+ "overload_key": null,
968
+ "kind": "function",
969
+ "signature": "setOption({\n backgroundColor: '#2c343c'\n})",
970
+ "params": [],
971
+ "returns": null,
972
+ "deprecated": null,
973
+ "since_version": null,
974
+ "source_doc_id": "styling.md",
975
+ "source_chunk_id": "styling.md#深色背景和浅色标签",
976
+ "source_chunk_ids": [
977
+ "styling.md#深色背景和浅色标签"
978
+ ],
979
+ "source_anchor": "深色背景和浅色标签",
980
+ "evidence_quote": null,
981
+ "lang": "zh",
982
+ "confidence": 0.5,
983
+ "extraction_method": "heuristic"
984
+ }
985
+ ],
986
+ "coverage": {
987
+ "total_sections": 100,
988
+ "extracted_sections": 100
989
+ }
990
+ }