@mycodemap/mycodemap 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/LICENSE +21 -0
- package/README.md +559 -0
- package/dist/ai/claude.d.ts +38 -0
- package/dist/ai/claude.d.ts.map +1 -0
- package/dist/ai/claude.js +169 -0
- package/dist/ai/claude.js.map +1 -0
- package/dist/ai/codex.d.ts +38 -0
- package/dist/ai/codex.d.ts.map +1 -0
- package/dist/ai/codex.js +169 -0
- package/dist/ai/codex.js.map +1 -0
- package/dist/ai/factory.d.ts +48 -0
- package/dist/ai/factory.d.ts.map +1 -0
- package/dist/ai/factory.js +95 -0
- package/dist/ai/factory.js.map +1 -0
- package/dist/ai/index.d.ts +12 -0
- package/dist/ai/index.d.ts.map +1 -0
- package/dist/ai/index.js +29 -0
- package/dist/ai/index.js.map +1 -0
- package/dist/ai/provider.d.ts +70 -0
- package/dist/ai/provider.d.ts.map +1 -0
- package/dist/ai/provider.js +31 -0
- package/dist/ai/provider.js.map +1 -0
- package/dist/ai/subagent-caller.d.ts +90 -0
- package/dist/ai/subagent-caller.d.ts.map +1 -0
- package/dist/ai/subagent-caller.js +280 -0
- package/dist/ai/subagent-caller.js.map +1 -0
- package/dist/ai/types.d.ts +70 -0
- package/dist/ai/types.d.ts.map +1 -0
- package/dist/ai/types.js +5 -0
- package/dist/ai/types.js.map +1 -0
- package/dist/cache/file-hash-cache.d.ts +76 -0
- package/dist/cache/file-hash-cache.d.ts.map +1 -0
- package/dist/cache/file-hash-cache.js +159 -0
- package/dist/cache/file-hash-cache.js.map +1 -0
- package/dist/cache/index.d.ts +151 -0
- package/dist/cache/index.d.ts.map +1 -0
- package/dist/cache/index.js +303 -0
- package/dist/cache/index.js.map +1 -0
- package/dist/cache/lru-cache.d.ts +93 -0
- package/dist/cache/lru-cache.d.ts.map +1 -0
- package/dist/cache/lru-cache.js +194 -0
- package/dist/cache/lru-cache.js.map +1 -0
- package/dist/cache/parse-cache.d.ts +68 -0
- package/dist/cache/parse-cache.d.ts.map +1 -0
- package/dist/cache/parse-cache.js +173 -0
- package/dist/cache/parse-cache.js.map +1 -0
- package/dist/cli/commands/analyze.d.ts +96 -0
- package/dist/cli/commands/analyze.d.ts.map +1 -0
- package/dist/cli/commands/analyze.js +567 -0
- package/dist/cli/commands/analyze.js.map +1 -0
- package/dist/cli/commands/ci.d.ts +25 -0
- package/dist/cli/commands/ci.d.ts.map +1 -0
- package/dist/cli/commands/ci.js +481 -0
- package/dist/cli/commands/ci.js.map +1 -0
- package/dist/cli/commands/complexity.d.ts +70 -0
- package/dist/cli/commands/complexity.d.ts.map +1 -0
- package/dist/cli/commands/complexity.js +479 -0
- package/dist/cli/commands/complexity.js.map +1 -0
- package/dist/cli/commands/cycles.d.ts +10 -0
- package/dist/cli/commands/cycles.d.ts.map +1 -0
- package/dist/cli/commands/cycles.js +202 -0
- package/dist/cli/commands/cycles.js.map +1 -0
- package/dist/cli/commands/deps.d.ts +61 -0
- package/dist/cli/commands/deps.d.ts.map +1 -0
- package/dist/cli/commands/deps.js +340 -0
- package/dist/cli/commands/deps.js.map +1 -0
- package/dist/cli/commands/generate.d.ts +8 -0
- package/dist/cli/commands/generate.d.ts.map +1 -0
- package/dist/cli/commands/generate.js +61 -0
- package/dist/cli/commands/generate.js.map +1 -0
- package/dist/cli/commands/impact.d.ts +55 -0
- package/dist/cli/commands/impact.d.ts.map +1 -0
- package/dist/cli/commands/impact.js +455 -0
- package/dist/cli/commands/impact.js.map +1 -0
- package/dist/cli/commands/init.d.ts +4 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +50 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/query.d.ts +22 -0
- package/dist/cli/commands/query.d.ts.map +1 -0
- package/dist/cli/commands/query.js +718 -0
- package/dist/cli/commands/query.js.map +1 -0
- package/dist/cli/commands/watch-foreground.d.ts +9 -0
- package/dist/cli/commands/watch-foreground.d.ts.map +1 -0
- package/dist/cli/commands/watch-foreground.js +67 -0
- package/dist/cli/commands/watch-foreground.js.map +1 -0
- package/dist/cli/commands/watch.d.ts +12 -0
- package/dist/cli/commands/watch.d.ts.map +1 -0
- package/dist/cli/commands/watch.js +114 -0
- package/dist/cli/commands/watch.js.map +1 -0
- package/dist/cli/commands/workflow.d.ts +25 -0
- package/dist/cli/commands/workflow.d.ts.map +1 -0
- package/dist/cli/commands/workflow.js +488 -0
- package/dist/cli/commands/workflow.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +115 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/paths.d.ts +90 -0
- package/dist/cli/paths.d.ts.map +1 -0
- package/dist/cli/paths.js +136 -0
- package/dist/cli/paths.js.map +1 -0
- package/dist/cli/runtime-logger.d.ts +13 -0
- package/dist/cli/runtime-logger.d.ts.map +1 -0
- package/dist/cli/runtime-logger.js +213 -0
- package/dist/cli/runtime-logger.js.map +1 -0
- package/dist/core/analyzer.d.ts +3 -0
- package/dist/core/analyzer.d.ts.map +1 -0
- package/dist/core/analyzer.js +359 -0
- package/dist/core/analyzer.js.map +1 -0
- package/dist/core/ast-complexity-analyzer.d.ts +40 -0
- package/dist/core/ast-complexity-analyzer.d.ts.map +1 -0
- package/dist/core/ast-complexity-analyzer.js +279 -0
- package/dist/core/ast-complexity-analyzer.js.map +1 -0
- package/dist/core/global-index.d.ts +69 -0
- package/dist/core/global-index.d.ts.map +1 -0
- package/dist/core/global-index.js +388 -0
- package/dist/core/global-index.js.map +1 -0
- package/dist/generator/ai-overview.d.ts +51 -0
- package/dist/generator/ai-overview.d.ts.map +1 -0
- package/dist/generator/ai-overview.js +160 -0
- package/dist/generator/ai-overview.js.map +1 -0
- package/dist/generator/context.d.ts +5 -0
- package/dist/generator/context.d.ts.map +1 -0
- package/dist/generator/context.js +514 -0
- package/dist/generator/context.js.map +1 -0
- package/dist/generator/file-describer.d.ts +93 -0
- package/dist/generator/file-describer.d.ts.map +1 -0
- package/dist/generator/file-describer.js +375 -0
- package/dist/generator/file-describer.js.map +1 -0
- package/dist/generator/index.d.ts +8 -0
- package/dist/generator/index.d.ts.map +1 -0
- package/dist/generator/index.js +259 -0
- package/dist/generator/index.js.map +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/orchestrator/adapters/ast-grep-adapter.d.ts +75 -0
- package/dist/orchestrator/adapters/ast-grep-adapter.d.ts.map +1 -0
- package/dist/orchestrator/adapters/ast-grep-adapter.js +242 -0
- package/dist/orchestrator/adapters/ast-grep-adapter.js.map +1 -0
- package/dist/orchestrator/adapters/base-adapter.d.ts +24 -0
- package/dist/orchestrator/adapters/base-adapter.d.ts.map +1 -0
- package/dist/orchestrator/adapters/base-adapter.js +2 -0
- package/dist/orchestrator/adapters/base-adapter.js.map +1 -0
- package/dist/orchestrator/adapters/codemap-adapter.d.ts +56 -0
- package/dist/orchestrator/adapters/codemap-adapter.d.ts.map +1 -0
- package/dist/orchestrator/adapters/codemap-adapter.js +163 -0
- package/dist/orchestrator/adapters/codemap-adapter.js.map +1 -0
- package/dist/orchestrator/adapters/index.d.ts +10 -0
- package/dist/orchestrator/adapters/index.d.ts.map +1 -0
- package/dist/orchestrator/adapters/index.js +3 -0
- package/dist/orchestrator/adapters/index.js.map +1 -0
- package/dist/orchestrator/ai-feed-generator.d.ts +210 -0
- package/dist/orchestrator/ai-feed-generator.d.ts.map +1 -0
- package/dist/orchestrator/ai-feed-generator.js +377 -0
- package/dist/orchestrator/ai-feed-generator.js.map +1 -0
- package/dist/orchestrator/commit-validator.d.ts +30 -0
- package/dist/orchestrator/commit-validator.d.ts.map +1 -0
- package/dist/orchestrator/commit-validator.js +87 -0
- package/dist/orchestrator/commit-validator.js.map +1 -0
- package/dist/orchestrator/confidence.d.ts +25 -0
- package/dist/orchestrator/confidence.d.ts.map +1 -0
- package/dist/orchestrator/confidence.js +138 -0
- package/dist/orchestrator/confidence.js.map +1 -0
- package/dist/orchestrator/file-header-scanner.d.ts +48 -0
- package/dist/orchestrator/file-header-scanner.d.ts.map +1 -0
- package/dist/orchestrator/file-header-scanner.js +158 -0
- package/dist/orchestrator/file-header-scanner.js.map +1 -0
- package/dist/orchestrator/git-analyzer.d.ts +192 -0
- package/dist/orchestrator/git-analyzer.d.ts.map +1 -0
- package/dist/orchestrator/git-analyzer.js +539 -0
- package/dist/orchestrator/git-analyzer.js.map +1 -0
- package/dist/orchestrator/index.d.ts +20 -0
- package/dist/orchestrator/index.d.ts.map +1 -0
- package/dist/orchestrator/index.js +16 -0
- package/dist/orchestrator/index.js.map +1 -0
- package/dist/orchestrator/intent-router.d.ts +41 -0
- package/dist/orchestrator/intent-router.d.ts.map +1 -0
- package/dist/orchestrator/intent-router.js +98 -0
- package/dist/orchestrator/intent-router.js.map +1 -0
- package/dist/orchestrator/result-fusion.d.ts +114 -0
- package/dist/orchestrator/result-fusion.d.ts.map +1 -0
- package/dist/orchestrator/result-fusion.js +332 -0
- package/dist/orchestrator/result-fusion.js.map +1 -0
- package/dist/orchestrator/test-linker.d.ts +166 -0
- package/dist/orchestrator/test-linker.d.ts.map +1 -0
- package/dist/orchestrator/test-linker.js +570 -0
- package/dist/orchestrator/test-linker.js.map +1 -0
- package/dist/orchestrator/tool-orchestrator.d.ts +108 -0
- package/dist/orchestrator/tool-orchestrator.d.ts.map +1 -0
- package/dist/orchestrator/tool-orchestrator.js +247 -0
- package/dist/orchestrator/tool-orchestrator.js.map +1 -0
- package/dist/orchestrator/types.d.ts +162 -0
- package/dist/orchestrator/types.d.ts.map +1 -0
- package/dist/orchestrator/types.js +39 -0
- package/dist/orchestrator/types.js.map +1 -0
- package/dist/orchestrator/workflow/ci-executor.d.ts +157 -0
- package/dist/orchestrator/workflow/ci-executor.d.ts.map +1 -0
- package/dist/orchestrator/workflow/ci-executor.js +423 -0
- package/dist/orchestrator/workflow/ci-executor.js.map +1 -0
- package/dist/orchestrator/workflow/config.d.ts +97 -0
- package/dist/orchestrator/workflow/config.d.ts.map +1 -0
- package/dist/orchestrator/workflow/config.js +115 -0
- package/dist/orchestrator/workflow/config.js.map +1 -0
- package/dist/orchestrator/workflow/git-analyzer.d.ts +173 -0
- package/dist/orchestrator/workflow/git-analyzer.d.ts.map +1 -0
- package/dist/orchestrator/workflow/git-analyzer.js +473 -0
- package/dist/orchestrator/workflow/git-analyzer.js.map +1 -0
- package/dist/orchestrator/workflow/index.d.ts +21 -0
- package/dist/orchestrator/workflow/index.d.ts.map +1 -0
- package/dist/orchestrator/workflow/index.js +21 -0
- package/dist/orchestrator/workflow/index.js.map +1 -0
- package/dist/orchestrator/workflow/phase-checkpoint.d.ts +38 -0
- package/dist/orchestrator/workflow/phase-checkpoint.d.ts.map +1 -0
- package/dist/orchestrator/workflow/phase-checkpoint.js +75 -0
- package/dist/orchestrator/workflow/phase-checkpoint.js.map +1 -0
- package/dist/orchestrator/workflow/phase-inheritance.d.ts +128 -0
- package/dist/orchestrator/workflow/phase-inheritance.d.ts.map +1 -0
- package/dist/orchestrator/workflow/phase-inheritance.js +266 -0
- package/dist/orchestrator/workflow/phase-inheritance.js.map +1 -0
- package/dist/orchestrator/workflow/result-fusion.d.ts +117 -0
- package/dist/orchestrator/workflow/result-fusion.d.ts.map +1 -0
- package/dist/orchestrator/workflow/result-fusion.js +246 -0
- package/dist/orchestrator/workflow/result-fusion.js.map +1 -0
- package/dist/orchestrator/workflow/templates.d.ts +116 -0
- package/dist/orchestrator/workflow/templates.d.ts.map +1 -0
- package/dist/orchestrator/workflow/templates.js +546 -0
- package/dist/orchestrator/workflow/templates.js.map +1 -0
- package/dist/orchestrator/workflow/test-linker.d.ts +152 -0
- package/dist/orchestrator/workflow/test-linker.d.ts.map +1 -0
- package/dist/orchestrator/workflow/test-linker.js +342 -0
- package/dist/orchestrator/workflow/test-linker.js.map +1 -0
- package/dist/orchestrator/workflow/types.d.ts +202 -0
- package/dist/orchestrator/workflow/types.d.ts.map +1 -0
- package/dist/orchestrator/workflow/types.js +4 -0
- package/dist/orchestrator/workflow/types.js.map +1 -0
- package/dist/orchestrator/workflow/visualizer.d.ts +56 -0
- package/dist/orchestrator/workflow/visualizer.d.ts.map +1 -0
- package/dist/orchestrator/workflow/visualizer.js +300 -0
- package/dist/orchestrator/workflow/visualizer.js.map +1 -0
- package/dist/orchestrator/workflow/workflow-context.d.ts +50 -0
- package/dist/orchestrator/workflow/workflow-context.d.ts.map +1 -0
- package/dist/orchestrator/workflow/workflow-context.js +105 -0
- package/dist/orchestrator/workflow/workflow-context.js.map +1 -0
- package/dist/orchestrator/workflow/workflow-orchestrator.d.ts +126 -0
- package/dist/orchestrator/workflow/workflow-orchestrator.d.ts.map +1 -0
- package/dist/orchestrator/workflow/workflow-orchestrator.js +489 -0
- package/dist/orchestrator/workflow/workflow-orchestrator.js.map +1 -0
- package/dist/orchestrator/workflow/workflow-persistence.d.ts +38 -0
- package/dist/orchestrator/workflow/workflow-persistence.d.ts.map +1 -0
- package/dist/orchestrator/workflow/workflow-persistence.js +166 -0
- package/dist/orchestrator/workflow/workflow-persistence.js.map +1 -0
- package/dist/parser/implementations/fast-parser.d.ts +65 -0
- package/dist/parser/implementations/fast-parser.d.ts.map +1 -0
- package/dist/parser/implementations/fast-parser.js +299 -0
- package/dist/parser/implementations/fast-parser.js.map +1 -0
- package/dist/parser/implementations/smart-parser.d.ts +220 -0
- package/dist/parser/implementations/smart-parser.d.ts.map +1 -0
- package/dist/parser/implementations/smart-parser.js +1536 -0
- package/dist/parser/implementations/smart-parser.js.map +1 -0
- package/dist/parser/implementations/tree-sitter-parser.d.ts +57 -0
- package/dist/parser/implementations/tree-sitter-parser.d.ts.map +1 -0
- package/dist/parser/implementations/tree-sitter-parser.js +375 -0
- package/dist/parser/implementations/tree-sitter-parser.js.map +1 -0
- package/dist/parser/index.d.ts +19 -0
- package/dist/parser/index.d.ts.map +1 -0
- package/dist/parser/index.js +449 -0
- package/dist/parser/index.js.map +1 -0
- package/dist/parser/interfaces/IParser.d.ts +218 -0
- package/dist/parser/interfaces/IParser.d.ts.map +1 -0
- package/dist/parser/interfaces/IParser.js +22 -0
- package/dist/parser/interfaces/IParser.js.map +1 -0
- package/dist/plugins/built-in/call-graph.d.ts +38 -0
- package/dist/plugins/built-in/call-graph.d.ts.map +1 -0
- package/dist/plugins/built-in/call-graph.js +135 -0
- package/dist/plugins/built-in/call-graph.js.map +1 -0
- package/dist/plugins/built-in/complexity-analyzer.d.ts +45 -0
- package/dist/plugins/built-in/complexity-analyzer.d.ts.map +1 -0
- package/dist/plugins/built-in/complexity-analyzer.js +155 -0
- package/dist/plugins/built-in/complexity-analyzer.js.map +1 -0
- package/dist/plugins/index.d.ts +34 -0
- package/dist/plugins/index.d.ts.map +1 -0
- package/dist/plugins/index.js +103 -0
- package/dist/plugins/index.js.map +1 -0
- package/dist/plugins/plugin-loader.d.ts +22 -0
- package/dist/plugins/plugin-loader.d.ts.map +1 -0
- package/dist/plugins/plugin-loader.js +200 -0
- package/dist/plugins/plugin-loader.js.map +1 -0
- package/dist/plugins/plugin-registry.d.ts +20 -0
- package/dist/plugins/plugin-registry.d.ts.map +1 -0
- package/dist/plugins/plugin-registry.js +143 -0
- package/dist/plugins/plugin-registry.js.map +1 -0
- package/dist/plugins/types.d.ts +72 -0
- package/dist/plugins/types.d.ts.map +1 -0
- package/dist/plugins/types.js +5 -0
- package/dist/plugins/types.js.map +1 -0
- package/dist/types/index.d.ts +373 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +7 -0
- package/dist/types/index.js.map +1 -0
- package/dist/watcher/daemon.d.ts +64 -0
- package/dist/watcher/daemon.d.ts.map +1 -0
- package/dist/watcher/daemon.js +189 -0
- package/dist/watcher/daemon.js.map +1 -0
- package/dist/watcher/file-watcher.d.ts +70 -0
- package/dist/watcher/file-watcher.d.ts.map +1 -0
- package/dist/watcher/file-watcher.js +127 -0
- package/dist/watcher/file-watcher.js.map +1 -0
- package/dist/watcher/index.d.ts +5 -0
- package/dist/watcher/index.d.ts.map +1 -0
- package/dist/watcher/index.js +6 -0
- package/dist/watcher/index.js.map +1 -0
- package/dist/watcher/watch-worker.d.ts +2 -0
- package/dist/watcher/watch-worker.d.ts.map +1 -0
- package/dist/watcher/watch-worker.js +57 -0
- package/dist/watcher/watch-worker.js.map +1 -0
- package/dist/worker/index.d.ts +76 -0
- package/dist/worker/index.d.ts.map +1 -0
- package/dist/worker/index.js +155 -0
- package/dist/worker/index.js.map +1 -0
- package/dist/worker/parse-worker.d.ts +2 -0
- package/dist/worker/parse-worker.d.ts.map +1 -0
- package/dist/worker/parse-worker.js +202 -0
- package/dist/worker/parse-worker.js.map +1 -0
- package/mycodemap.config.schema.json +42 -0
- package/package.json +69 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [META] 工作流模块集成配置
|
|
3
|
+
* [WHY] 集中管理工作流与各模块的集成配置
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* CI 门禁集成配置
|
|
7
|
+
*/
|
|
8
|
+
export declare const PHASE_CI_CONFIG: {
|
|
9
|
+
/** CI 命令超时时间(毫秒) */
|
|
10
|
+
ciTimeout: number;
|
|
11
|
+
/** 风险阈值 */
|
|
12
|
+
riskThreshold: number;
|
|
13
|
+
/** CI 检查项 */
|
|
14
|
+
checks: readonly ["check-commits", "check-headers", "assess-risk", "check-output-contract"];
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Git 分析器集成配置
|
|
18
|
+
*/
|
|
19
|
+
export declare const PHASE_GIT_CONFIG: {
|
|
20
|
+
/** 历史分析时间范围(天) */
|
|
21
|
+
historyDays: number;
|
|
22
|
+
/** 热度计算权重 */
|
|
23
|
+
heatWeights: {
|
|
24
|
+
freq30d: number;
|
|
25
|
+
commitCount: number;
|
|
26
|
+
impactCount: number;
|
|
27
|
+
};
|
|
28
|
+
/** 风险评估因子 */
|
|
29
|
+
riskFactors: readonly ["fileHeat", "dependencyComplexity", "testCoverage", "changeFrequency"];
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* 测试关联器集成配置
|
|
33
|
+
*/
|
|
34
|
+
export declare const PHASE_TEST_STRATEGY: {
|
|
35
|
+
/** 测试文件匹配模式 */
|
|
36
|
+
testPatterns: string[];
|
|
37
|
+
/** 最小测试覆盖率阈值 */
|
|
38
|
+
minCoverageThreshold: number;
|
|
39
|
+
/** 测试关联策略 */
|
|
40
|
+
strategies: {
|
|
41
|
+
exact: boolean;
|
|
42
|
+
fuzzy: boolean;
|
|
43
|
+
structural: boolean;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* 置信度要求配置
|
|
48
|
+
*/
|
|
49
|
+
export declare const CONFIDENCE_REQUIREMENTS: {
|
|
50
|
+
/** 各阶段最低置信度要求 */
|
|
51
|
+
phaseThresholds: {
|
|
52
|
+
reference: {
|
|
53
|
+
min: number;
|
|
54
|
+
high: number;
|
|
55
|
+
};
|
|
56
|
+
impact: {
|
|
57
|
+
min: number;
|
|
58
|
+
high: number;
|
|
59
|
+
};
|
|
60
|
+
risk: {
|
|
61
|
+
min: number;
|
|
62
|
+
high: number;
|
|
63
|
+
};
|
|
64
|
+
implementation: {
|
|
65
|
+
min: number;
|
|
66
|
+
high: number;
|
|
67
|
+
};
|
|
68
|
+
commit: {
|
|
69
|
+
min: number;
|
|
70
|
+
high: number;
|
|
71
|
+
};
|
|
72
|
+
ci: {
|
|
73
|
+
min: number;
|
|
74
|
+
high: number;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
/** 自动推进阈值 */
|
|
78
|
+
autoProceedThreshold: number;
|
|
79
|
+
/** 回退阈值 */
|
|
80
|
+
fallbackThreshold: number;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* 工作流全局配置
|
|
84
|
+
*/
|
|
85
|
+
export declare const WORKFLOW_CONFIG: {
|
|
86
|
+
/** 是否启用工作流 */
|
|
87
|
+
enabled: boolean;
|
|
88
|
+
/** 持久化路径 */
|
|
89
|
+
persistencePath: string;
|
|
90
|
+
/** 最大并发阶段数 */
|
|
91
|
+
maxConcurrentPhases: number;
|
|
92
|
+
/** 是否自动保存检查点 */
|
|
93
|
+
autoCheckpoint: boolean;
|
|
94
|
+
/** 检查点间隔(秒) */
|
|
95
|
+
checkpointInterval: number;
|
|
96
|
+
};
|
|
97
|
+
//# sourceMappingURL=config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/orchestrator/workflow/config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AA4BH;;GAEG;AACH,eAAO,MAAM,eAAe;IAC1B,oBAAoB;;IAEpB,WAAW;;IAEX,aAAa;;CAOd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,gBAAgB;IAC3B,kBAAkB;;IAElB,aAAa;;;;;;IAMb,aAAa;;CAOd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB;IAC9B,eAAe;;IAOf,gBAAgB;;IAEhB,aAAa;;;;;;CAMd,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,uBAAuB;IAClC,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;IASjB,aAAa;;IAEb,WAAW;;CAEZ,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe;IAC1B,cAAc;;IAEd,YAAY;;IAEZ,cAAc;;IAEd,gBAAgB;;IAEhB,eAAe;;CAEhB,CAAC"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [META] 工作流模块集成配置
|
|
3
|
+
* [WHY] 集中管理工作流与各模块的集成配置
|
|
4
|
+
*/
|
|
5
|
+
import { existsSync } from 'node:fs';
|
|
6
|
+
import { join } from 'node:path';
|
|
7
|
+
import { cwd } from 'node:process';
|
|
8
|
+
/**
|
|
9
|
+
* 路径兼容常量
|
|
10
|
+
*/
|
|
11
|
+
const DEFAULT_OUTPUT_DIR_NEW = '.mycodemap';
|
|
12
|
+
const DEFAULT_OUTPUT_DIR_OLD = '.codemap';
|
|
13
|
+
/**
|
|
14
|
+
* 解析工作流目录路径(兼容逻辑)
|
|
15
|
+
*/
|
|
16
|
+
function resolveWorkflowDir() {
|
|
17
|
+
const rootDir = cwd();
|
|
18
|
+
const newPath = join(rootDir, DEFAULT_OUTPUT_DIR_NEW, 'workflow');
|
|
19
|
+
// 优先检查新路径
|
|
20
|
+
if (existsSync(newPath) || !existsSync(join(rootDir, DEFAULT_OUTPUT_DIR_OLD, 'workflow'))) {
|
|
21
|
+
return join(DEFAULT_OUTPUT_DIR_NEW, 'workflow');
|
|
22
|
+
}
|
|
23
|
+
// 回退到旧路径
|
|
24
|
+
return join(DEFAULT_OUTPUT_DIR_OLD, 'workflow');
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* CI 门禁集成配置
|
|
28
|
+
*/
|
|
29
|
+
export const PHASE_CI_CONFIG = {
|
|
30
|
+
/** CI 命令超时时间(毫秒) */
|
|
31
|
+
ciTimeout: 300000,
|
|
32
|
+
/** 风险阈值 */
|
|
33
|
+
riskThreshold: 0.7,
|
|
34
|
+
/** CI 检查项 */
|
|
35
|
+
checks: [
|
|
36
|
+
'check-commits',
|
|
37
|
+
'check-headers',
|
|
38
|
+
'assess-risk',
|
|
39
|
+
'check-output-contract'
|
|
40
|
+
]
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Git 分析器集成配置
|
|
44
|
+
*/
|
|
45
|
+
export const PHASE_GIT_CONFIG = {
|
|
46
|
+
/** 历史分析时间范围(天) */
|
|
47
|
+
historyDays: 90,
|
|
48
|
+
/** 热度计算权重 */
|
|
49
|
+
heatWeights: {
|
|
50
|
+
freq30d: 0.4,
|
|
51
|
+
commitCount: 0.3,
|
|
52
|
+
impactCount: 0.3
|
|
53
|
+
},
|
|
54
|
+
/** 风险评估因子 */
|
|
55
|
+
riskFactors: [
|
|
56
|
+
'fileHeat',
|
|
57
|
+
'dependencyComplexity',
|
|
58
|
+
'testCoverage',
|
|
59
|
+
'changeFrequency'
|
|
60
|
+
]
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* 测试关联器集成配置
|
|
64
|
+
*/
|
|
65
|
+
export const PHASE_TEST_STRATEGY = {
|
|
66
|
+
/** 测试文件匹配模式 */
|
|
67
|
+
testPatterns: [
|
|
68
|
+
'*.test.ts',
|
|
69
|
+
'*.spec.ts',
|
|
70
|
+
'**/*.test.ts',
|
|
71
|
+
'**/*.spec.ts'
|
|
72
|
+
],
|
|
73
|
+
/** 最小测试覆盖率阈值 */
|
|
74
|
+
minCoverageThreshold: 0.7,
|
|
75
|
+
/** 测试关联策略 */
|
|
76
|
+
strategies: {
|
|
77
|
+
exact: true,
|
|
78
|
+
fuzzy: true,
|
|
79
|
+
structural: true
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* 置信度要求配置
|
|
84
|
+
*/
|
|
85
|
+
export const CONFIDENCE_REQUIREMENTS = {
|
|
86
|
+
/** 各阶段最低置信度要求 */
|
|
87
|
+
phaseThresholds: {
|
|
88
|
+
reference: { min: 0.3, high: 0.6 },
|
|
89
|
+
impact: { min: 0.4, high: 0.7 },
|
|
90
|
+
risk: { min: 0, high: 0 },
|
|
91
|
+
implementation: { min: 0, high: 0 },
|
|
92
|
+
commit: { min: 0, high: 0 },
|
|
93
|
+
ci: { min: 0, high: 0 }
|
|
94
|
+
},
|
|
95
|
+
/** 自动推进阈值 */
|
|
96
|
+
autoProceedThreshold: 0.7,
|
|
97
|
+
/** 回退阈值 */
|
|
98
|
+
fallbackThreshold: 0.25
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* 工作流全局配置
|
|
102
|
+
*/
|
|
103
|
+
export const WORKFLOW_CONFIG = {
|
|
104
|
+
/** 是否启用工作流 */
|
|
105
|
+
enabled: true,
|
|
106
|
+
/** 持久化路径 */
|
|
107
|
+
persistencePath: resolveWorkflowDir(),
|
|
108
|
+
/** 最大并发阶段数 */
|
|
109
|
+
maxConcurrentPhases: 1,
|
|
110
|
+
/** 是否自动保存检查点 */
|
|
111
|
+
autoCheckpoint: true,
|
|
112
|
+
/** 检查点间隔(秒) */
|
|
113
|
+
checkpointInterval: 300
|
|
114
|
+
};
|
|
115
|
+
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/orchestrator/workflow/config.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [META] since:2026-03 | owner:codemap-team | stable:false
|
|
3
|
+
* [WHY] @version 2.5
|
|
4
|
+
*/
|
|
5
|
+
import type { WorkflowPhase } from './types.js';
|
|
6
|
+
import type { WorkflowContext } from './types.js';
|
|
7
|
+
/**
|
|
8
|
+
* Git 分析配置
|
|
9
|
+
*/
|
|
10
|
+
export interface GitAnalysisConfig {
|
|
11
|
+
/** 分析类型 */
|
|
12
|
+
analysisType: GitAnalysisType;
|
|
13
|
+
/** 最大提交数 */
|
|
14
|
+
maxCommits: number;
|
|
15
|
+
/** 是否包含历史 */
|
|
16
|
+
includeHistory: boolean;
|
|
17
|
+
/** 时间窗口(如 '30d') */
|
|
18
|
+
timeWindow?: string;
|
|
19
|
+
/** 文件模式 */
|
|
20
|
+
extractPatterns?: string[];
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Git 分析类型
|
|
24
|
+
*/
|
|
25
|
+
export type GitAnalysisType = 'none' | 'find-similar-commits' | 'file-history' | 'heat-analysis' | 'validate-commit' | 'full-analysis';
|
|
26
|
+
/**
|
|
27
|
+
* 提交信息
|
|
28
|
+
*/
|
|
29
|
+
export interface CommitInfo {
|
|
30
|
+
hash: string;
|
|
31
|
+
message: string;
|
|
32
|
+
date: Date;
|
|
33
|
+
author: string;
|
|
34
|
+
files: string[];
|
|
35
|
+
tag?: CommitTag;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Commit Tag
|
|
39
|
+
*/
|
|
40
|
+
export interface CommitTag {
|
|
41
|
+
type: 'BUGFIX' | 'FEATURE' | 'REFACTOR' | 'CONFIG' | 'DOCS' | 'DELETE' | 'UNKNOWN';
|
|
42
|
+
scope: string;
|
|
43
|
+
subject: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* 文件热度
|
|
47
|
+
*/
|
|
48
|
+
export interface FileHeat {
|
|
49
|
+
file: string;
|
|
50
|
+
freq30d: number;
|
|
51
|
+
lastType: string;
|
|
52
|
+
lastDate: Date | null;
|
|
53
|
+
stability: boolean;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* 风险评分
|
|
57
|
+
*/
|
|
58
|
+
export interface GitRiskScore {
|
|
59
|
+
level: 'high' | 'medium' | 'low';
|
|
60
|
+
score: number;
|
|
61
|
+
gravity: number;
|
|
62
|
+
heat: FileHeat;
|
|
63
|
+
impact: number;
|
|
64
|
+
riskFactors: string[];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Git 分析结果
|
|
68
|
+
*/
|
|
69
|
+
export interface GitAnalysisResult {
|
|
70
|
+
type: GitAnalysisType;
|
|
71
|
+
commits?: CommitInfo[];
|
|
72
|
+
fileHeat?: FileHeat[];
|
|
73
|
+
riskScore?: GitRiskScore;
|
|
74
|
+
validation?: {
|
|
75
|
+
valid: boolean;
|
|
76
|
+
errors?: string[];
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
export declare class WorkflowGitAnalyzer {
|
|
80
|
+
private projectRoot;
|
|
81
|
+
constructor(projectRoot?: string);
|
|
82
|
+
/**
|
|
83
|
+
* 根据当前阶段执行 Git 分析
|
|
84
|
+
*
|
|
85
|
+
* @param phase - 当前工作流阶段
|
|
86
|
+
* @param targetFiles - 目标文件列表
|
|
87
|
+
* @param context - 工作流上下文
|
|
88
|
+
* @returns Git 分析结果
|
|
89
|
+
*/
|
|
90
|
+
analyzeForPhase(phase: WorkflowPhase, targetFiles: string[], context: WorkflowContext): Promise<GitAnalysisResult>;
|
|
91
|
+
/**
|
|
92
|
+
* 查找相似提交
|
|
93
|
+
*/
|
|
94
|
+
private findSimilarCommits;
|
|
95
|
+
/**
|
|
96
|
+
* 分析文件历史
|
|
97
|
+
*/
|
|
98
|
+
private analyzeFileHistory;
|
|
99
|
+
/**
|
|
100
|
+
* 分析文件热度
|
|
101
|
+
*/
|
|
102
|
+
private analyzeFileHeat;
|
|
103
|
+
/**
|
|
104
|
+
* 验证最近提交
|
|
105
|
+
*/
|
|
106
|
+
private validateLastCommit;
|
|
107
|
+
/**
|
|
108
|
+
* 执行完整分析
|
|
109
|
+
*/
|
|
110
|
+
private performFullAnalysis;
|
|
111
|
+
/**
|
|
112
|
+
* 按关键词搜索提交
|
|
113
|
+
*/
|
|
114
|
+
private searchByKeywords;
|
|
115
|
+
/**
|
|
116
|
+
* 按文件搜索提交
|
|
117
|
+
*/
|
|
118
|
+
private searchByFiles;
|
|
119
|
+
/**
|
|
120
|
+
* 获取文件热度
|
|
121
|
+
*/
|
|
122
|
+
private getFileHeat;
|
|
123
|
+
/**
|
|
124
|
+
* 计算风险评分
|
|
125
|
+
*/
|
|
126
|
+
private calculateRiskScore;
|
|
127
|
+
/**
|
|
128
|
+
* 验证提交信息格式
|
|
129
|
+
*/
|
|
130
|
+
private validateCommitMessage;
|
|
131
|
+
/**
|
|
132
|
+
* 格式化提交错误信息
|
|
133
|
+
*/
|
|
134
|
+
private formatCommitError;
|
|
135
|
+
/**
|
|
136
|
+
* 解析 Git 日志
|
|
137
|
+
*/
|
|
138
|
+
private parseGitLog;
|
|
139
|
+
/**
|
|
140
|
+
* 解析带文件的 Git 日志
|
|
141
|
+
*/
|
|
142
|
+
private parseGitLogWithFiles;
|
|
143
|
+
/**
|
|
144
|
+
* 解析 Commit Tag
|
|
145
|
+
*/
|
|
146
|
+
private parseCommitTag;
|
|
147
|
+
/**
|
|
148
|
+
* 去重提交
|
|
149
|
+
*/
|
|
150
|
+
private deduplicateCommits;
|
|
151
|
+
/**
|
|
152
|
+
* 从上下文获取缓存的历史
|
|
153
|
+
*/
|
|
154
|
+
private getCachedHistory;
|
|
155
|
+
/**
|
|
156
|
+
* 获取阶段的 Git 分析配置
|
|
157
|
+
*/
|
|
158
|
+
getPhaseConfig(phase: WorkflowPhase): GitAnalysisConfig;
|
|
159
|
+
/**
|
|
160
|
+
* 获取所有阶段的 Git 分析配置
|
|
161
|
+
*/
|
|
162
|
+
getAllConfigs(): Record<WorkflowPhase, GitAnalysisConfig>;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* 创建工作流 Git 分析器实例
|
|
166
|
+
*/
|
|
167
|
+
export declare function createWorkflowGitAnalyzer(projectRoot?: string): WorkflowGitAnalyzer;
|
|
168
|
+
/**
|
|
169
|
+
* 快速分析当前阶段(便捷函数)
|
|
170
|
+
*/
|
|
171
|
+
export declare function analyzePhase(phase: WorkflowPhase, targetFiles: string[], context: WorkflowContext, projectRoot?: string): Promise<GitAnalysisResult>;
|
|
172
|
+
export default WorkflowGitAnalyzer;
|
|
173
|
+
//# sourceMappingURL=git-analyzer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"git-analyzer.d.ts","sourceRoot":"","sources":["../../../src/orchestrator/workflow/git-analyzer.ts"],"names":[],"mappings":"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"}
|