autosnippet 3.3.0 → 3.3.3
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/dashboard/dist/assets/icons-BJ2mUBi8.js +1 -0
- package/dashboard/dist/assets/index-B659K9t5.js +128 -0
- package/dashboard/dist/assets/index-NCm40PMD.css +1 -0
- package/dashboard/dist/index.html +3 -3
- package/dist/bin/cli.d.ts +1 -0
- package/dist/bin/cli.js +284 -142
- package/dist/lib/agent/context/ExplorationTracker.d.ts +2 -0
- package/dist/lib/agent/context/ExplorationTracker.js +21 -3
- package/dist/lib/agent/core/ToolExecutionPipeline.d.ts +3 -1
- package/dist/lib/agent/core/ToolExecutionPipeline.js +8 -1
- package/dist/lib/agent/forge/DynamicComposer.d.ts +58 -0
- package/dist/lib/agent/forge/DynamicComposer.js +99 -0
- package/dist/lib/agent/forge/SandboxRunner.d.ts +60 -0
- package/dist/lib/agent/forge/SandboxRunner.js +251 -0
- package/dist/lib/agent/forge/TemporaryToolRegistry.d.ts +76 -0
- package/dist/lib/agent/forge/TemporaryToolRegistry.js +154 -0
- package/dist/lib/agent/forge/ToolForge.d.ts +92 -0
- package/dist/lib/agent/forge/ToolForge.js +239 -0
- package/dist/lib/agent/forge/ToolRequirementAnalyzer.d.ts +44 -0
- package/dist/lib/agent/forge/ToolRequirementAnalyzer.js +119 -0
- package/dist/lib/agent/tools/ToolRegistry.d.ts +2 -0
- package/dist/lib/agent/tools/ToolRegistry.js +4 -0
- package/dist/lib/agent/tools/composite.js +0 -1
- package/dist/lib/agent/tools/index.d.ts +2 -50
- package/dist/lib/agent/tools/index.js +2 -3
- package/dist/lib/agent/tools/lifecycle.d.ts +1 -58
- package/dist/lib/agent/tools/lifecycle.js +2 -75
- package/dist/lib/cli/KnowledgeSyncService.d.ts +26 -0
- package/dist/lib/cli/KnowledgeSyncService.js +33 -1
- package/dist/lib/cli/deploy/FileManifest.d.ts +0 -21
- package/dist/lib/cli/deploy/FileManifest.js +0 -11
- package/dist/lib/domain/knowledge/KnowledgeEntry.d.ts +10 -0
- package/dist/lib/domain/knowledge/KnowledgeEntry.js +2 -0
- package/dist/lib/domain/knowledge/Lifecycle.d.ts +19 -2
- package/dist/lib/domain/knowledge/Lifecycle.js +32 -6
- package/dist/lib/domain/knowledge/UnifiedValidator.d.ts +1 -5
- package/dist/lib/domain/knowledge/UnifiedValidator.js +7 -44
- package/dist/lib/domain/knowledge/values/Stats.d.ts +29 -0
- package/dist/lib/domain/knowledge/values/Stats.js +41 -0
- package/dist/lib/external/mcp/McpServer.d.ts +19 -38
- package/dist/lib/external/mcp/McpServer.js +145 -117
- package/dist/lib/external/mcp/autoApproveInjector.js +0 -2
- package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.d.ts +26 -1
- package/dist/lib/external/mcp/handlers/bootstrap/MissionBriefingBuilder.js +41 -0
- package/dist/lib/external/mcp/handlers/bootstrap/pipeline/orchestrator.js +49 -0
- package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.d.ts +3 -0
- package/dist/lib/external/mcp/handlers/bootstrap/shared/bootstrap-phases.js +27 -0
- package/dist/lib/external/mcp/handlers/bootstrap/skills.js +1 -1
- package/dist/lib/external/mcp/handlers/bootstrap-external.js +1 -0
- package/dist/lib/external/mcp/handlers/bootstrap-internal.js +2 -0
- package/dist/lib/external/mcp/handlers/browse.d.ts +1 -0
- package/dist/lib/external/mcp/handlers/browse.js +2 -1
- package/dist/lib/external/mcp/handlers/consolidated.d.ts +117 -6
- package/dist/lib/external/mcp/handlers/consolidated.js +251 -71
- package/dist/lib/external/mcp/handlers/guard.d.ts +150 -0
- package/dist/lib/external/mcp/handlers/guard.js +239 -5
- package/dist/lib/external/mcp/handlers/knowledge.d.ts +0 -29
- package/dist/lib/external/mcp/handlers/knowledge.js +1 -76
- package/dist/lib/external/mcp/handlers/panorama.d.ts +36 -0
- package/dist/lib/external/mcp/handlers/panorama.js +156 -0
- package/dist/lib/external/mcp/handlers/system.d.ts +2 -54
- package/dist/lib/external/mcp/handlers/system.js +3 -113
- package/dist/lib/external/mcp/handlers/task.d.ts +13 -24
- package/dist/lib/external/mcp/handlers/task.js +218 -557
- package/dist/lib/external/mcp/handlers/types.d.ts +91 -8
- package/dist/lib/external/mcp/handlers/types.js +18 -1
- package/dist/lib/external/mcp/handlers/wiki-external.d.ts +18 -1
- package/dist/lib/external/mcp/handlers/wiki-external.js +16 -1
- package/dist/lib/external/mcp/tools.d.ts +18 -24
- package/dist/lib/external/mcp/tools.js +132 -159
- package/dist/lib/http/HttpServer.js +52 -0
- package/dist/lib/http/middleware/validate.js +7 -3
- package/dist/lib/http/routes/audit.d.ts +8 -0
- package/dist/lib/http/routes/audit.js +51 -0
- package/dist/lib/http/routes/guardReport.d.ts +10 -0
- package/dist/lib/http/routes/guardReport.js +143 -0
- package/dist/lib/http/routes/knowledge.js +32 -1
- package/dist/lib/http/routes/panorama.d.ts +11 -0
- package/dist/lib/http/routes/panorama.js +322 -0
- package/dist/lib/http/routes/signals.d.ts +10 -0
- package/dist/lib/http/routes/signals.js +104 -0
- package/dist/lib/http/routes/task.d.ts +2 -3
- package/dist/lib/http/routes/task.js +17 -347
- package/dist/lib/http/routes/violations.js +1 -1
- package/dist/lib/infrastructure/audit/AuditLogger.d.ts +6 -1
- package/dist/lib/infrastructure/audit/AuditLogger.js +14 -1
- package/dist/lib/infrastructure/database/drizzle/schema.d.ts +202 -504
- package/dist/lib/infrastructure/database/drizzle/schema.js +38 -69
- package/dist/lib/infrastructure/database/migrations/004_evolution_proposals.d.ts +8 -0
- package/dist/lib/infrastructure/database/migrations/004_evolution_proposals.js +43 -0
- package/dist/lib/infrastructure/database/migrations/005_recipe_source_refs.d.ts +9 -0
- package/dist/lib/infrastructure/database/migrations/005_recipe_source_refs.js +24 -0
- package/dist/lib/infrastructure/logging/Logger.d.ts +2 -0
- package/dist/lib/infrastructure/logging/Logger.js +34 -7
- package/dist/lib/infrastructure/monitoring/ErrorTracker.js +3 -1
- package/dist/lib/infrastructure/monitoring/PerformanceMonitor.d.ts +2 -2
- package/dist/lib/infrastructure/monitoring/PerformanceMonitor.js +12 -10
- package/dist/lib/infrastructure/notification/LarkNotifier.d.ts +24 -0
- package/dist/lib/infrastructure/notification/LarkNotifier.js +97 -0
- package/dist/lib/infrastructure/report/ReportStore.d.ts +45 -0
- package/dist/lib/infrastructure/report/ReportStore.js +133 -0
- package/dist/lib/infrastructure/signal/SignalAggregator.d.ts +18 -0
- package/dist/lib/infrastructure/signal/SignalAggregator.js +84 -0
- package/dist/lib/infrastructure/signal/SignalBridge.d.ts +13 -0
- package/dist/lib/infrastructure/signal/SignalBridge.js +20 -0
- package/dist/lib/infrastructure/signal/SignalBus.d.ts +63 -0
- package/dist/lib/infrastructure/signal/SignalBus.js +106 -0
- package/dist/lib/infrastructure/signal/SignalTraceWriter.d.ts +36 -0
- package/dist/lib/infrastructure/signal/SignalTraceWriter.js +130 -0
- package/dist/lib/infrastructure/vector/HnswVectorAdapter.js +18 -2
- package/dist/lib/injection/ServiceContainer.js +8 -0
- package/dist/lib/injection/ServiceMap.d.ts +16 -10
- package/dist/lib/injection/modules/AgentModule.d.ts +1 -1
- package/dist/lib/injection/modules/AgentModule.js +7 -1
- package/dist/lib/injection/modules/AppModule.d.ts +1 -1
- package/dist/lib/injection/modules/AppModule.js +4 -13
- package/dist/lib/injection/modules/GuardModule.js +27 -2
- package/dist/lib/injection/modules/InfraModule.d.ts +0 -1
- package/dist/lib/injection/modules/InfraModule.js +9 -7
- package/dist/lib/injection/modules/KnowledgeModule.d.ts +5 -0
- package/dist/lib/injection/modules/KnowledgeModule.js +131 -0
- package/dist/lib/injection/modules/PanoramaModule.d.ts +18 -0
- package/dist/lib/injection/modules/PanoramaModule.js +76 -0
- package/dist/lib/injection/modules/SignalModule.d.ts +10 -0
- package/dist/lib/injection/modules/SignalModule.js +84 -0
- package/dist/lib/repository/knowledge/KnowledgeRepository.impl.d.ts +1 -0
- package/dist/lib/repository/knowledge/KnowledgeRepository.impl.js +6 -0
- package/dist/lib/service/bootstrap/BootstrapTaskManager.d.ts +3 -1
- package/dist/lib/service/bootstrap/BootstrapTaskManager.js +20 -1
- package/dist/lib/service/bootstrap/UiStartupTasks.d.ts +45 -0
- package/dist/lib/service/bootstrap/UiStartupTasks.js +101 -0
- package/dist/lib/service/delivery/AgentInstructionsGenerator.js +4 -5
- package/dist/lib/service/delivery/CursorDeliveryPipeline.d.ts +3 -1
- package/dist/lib/service/delivery/CursorDeliveryPipeline.js +13 -10
- package/dist/lib/service/delivery/RulesGenerator.js +3 -2
- package/dist/lib/service/evolution/ConsolidationAdvisor.d.ts +114 -0
- package/dist/lib/service/evolution/ConsolidationAdvisor.js +542 -0
- package/dist/lib/service/evolution/ContradictionDetector.d.ts +54 -0
- package/dist/lib/service/evolution/ContradictionDetector.js +253 -0
- package/dist/lib/service/evolution/DecayDetector.d.ts +71 -0
- package/dist/lib/service/evolution/DecayDetector.js +244 -0
- package/dist/lib/service/evolution/EnhancementSuggester.d.ts +38 -0
- package/dist/lib/service/evolution/EnhancementSuggester.js +220 -0
- package/dist/lib/service/evolution/KnowledgeMetabolism.d.ts +82 -0
- package/dist/lib/service/evolution/KnowledgeMetabolism.js +167 -0
- package/dist/lib/service/evolution/RedundancyAnalyzer.d.ts +53 -0
- package/dist/lib/service/evolution/RedundancyAnalyzer.js +210 -0
- package/dist/lib/service/evolution/StagingManager.d.ts +57 -0
- package/dist/lib/service/evolution/StagingManager.js +201 -0
- package/dist/lib/service/guard/ComplianceReporter.d.ts +42 -2
- package/dist/lib/service/guard/ComplianceReporter.js +43 -5
- package/dist/lib/service/guard/CoverageAnalyzer.d.ts +54 -0
- package/dist/lib/service/guard/CoverageAnalyzer.js +149 -0
- package/dist/lib/service/guard/GuardCheckEngine.d.ts +42 -0
- package/dist/lib/service/guard/GuardCheckEngine.js +465 -14
- package/dist/lib/service/guard/GuardFeedbackLoop.d.ts +3 -0
- package/dist/lib/service/guard/GuardFeedbackLoop.js +9 -0
- package/dist/lib/service/guard/ReverseGuard.d.ts +73 -0
- package/dist/lib/service/guard/ReverseGuard.js +256 -0
- package/dist/lib/service/guard/RuleLearner.d.ts +12 -0
- package/dist/lib/service/guard/RuleLearner.js +38 -0
- package/dist/lib/service/guard/UncertaintyCollector.d.ts +83 -0
- package/dist/lib/service/guard/UncertaintyCollector.js +149 -0
- package/dist/lib/service/guard/ViolationsStore.d.ts +1 -0
- package/dist/lib/service/guard/ViolationsStore.js +33 -3
- package/dist/lib/service/knowledge/ConfidenceRouter.d.ts +13 -0
- package/dist/lib/service/knowledge/ConfidenceRouter.js +14 -0
- package/dist/lib/service/knowledge/KnowledgeService.js +22 -4
- package/dist/lib/service/knowledge/SourceRefReconciler.d.ts +68 -0
- package/dist/lib/service/knowledge/SourceRefReconciler.js +309 -0
- package/dist/lib/service/panorama/CouplingAnalyzer.d.ts +27 -0
- package/dist/lib/service/panorama/CouplingAnalyzer.js +192 -0
- package/dist/lib/service/panorama/DimensionAnalyzer.d.ts +28 -0
- package/dist/lib/service/panorama/DimensionAnalyzer.js +320 -0
- package/dist/lib/service/panorama/LayerInferrer.d.ts +19 -0
- package/dist/lib/service/panorama/LayerInferrer.js +182 -0
- package/dist/lib/service/panorama/ModuleDiscoverer.d.ts +24 -0
- package/dist/lib/service/panorama/ModuleDiscoverer.js +185 -0
- package/dist/lib/service/panorama/PanoramaAggregator.d.ts +29 -0
- package/dist/lib/service/panorama/PanoramaAggregator.js +228 -0
- package/dist/lib/service/panorama/PanoramaScanner.d.ts +52 -0
- package/dist/lib/service/panorama/PanoramaScanner.js +188 -0
- package/dist/lib/service/panorama/PanoramaService.d.ts +125 -0
- package/dist/lib/service/panorama/PanoramaService.js +363 -0
- package/dist/lib/service/panorama/PanoramaTypes.d.ts +134 -0
- package/dist/lib/service/panorama/PanoramaTypes.js +6 -0
- package/dist/lib/service/panorama/RoleRefiner.d.ts +48 -0
- package/dist/lib/service/panorama/RoleRefiner.js +535 -0
- package/dist/lib/service/search/BM25Scorer.d.ts +2 -2
- package/dist/lib/service/search/CoarseRanker.d.ts +7 -6
- package/dist/lib/service/search/CoarseRanker.js +11 -10
- package/dist/lib/service/search/FieldWeightedScorer.d.ts +81 -0
- package/dist/lib/service/search/FieldWeightedScorer.js +318 -0
- package/dist/lib/service/search/MultiSignalRanker.d.ts +3 -2
- package/dist/lib/service/search/MultiSignalRanker.js +17 -1
- package/dist/lib/service/search/SearchEngine.d.ts +9 -7
- package/dist/lib/service/search/SearchEngine.js +67 -10
- package/dist/lib/service/search/SearchTypes.d.ts +25 -3
- package/dist/lib/service/search/SearchTypes.js +6 -1
- package/dist/lib/service/signal/HitRecorder.d.ts +68 -0
- package/dist/lib/service/signal/HitRecorder.js +173 -0
- package/dist/lib/service/skills/SignalCollector.d.ts +3 -1
- package/dist/lib/service/skills/SignalCollector.js +31 -1
- package/dist/lib/service/task/IntentExtractor.d.ts +66 -0
- package/dist/lib/service/task/IntentExtractor.js +256 -0
- package/dist/lib/service/task/PrimeSearchPipeline.d.ts +54 -0
- package/dist/lib/service/task/PrimeSearchPipeline.js +113 -0
- package/dist/lib/service/vector/VectorService.d.ts +3 -0
- package/dist/lib/service/vector/VectorService.js +38 -4
- package/dist/lib/shared/schemas/mcp-tools.d.ts +41 -96
- package/dist/lib/shared/schemas/mcp-tools.js +59 -119
- package/dist/scripts/analyze-signals.d.ts +20 -0
- package/dist/scripts/analyze-signals.js +155 -0
- package/dist/scripts/diagnose-mcp.js +1 -1
- package/package.json +1 -1
- package/skills/autosnippet-create/SKILL.md +98 -89
- package/skills/autosnippet-devdocs/SKILL.md +55 -57
- package/templates/claude-code/hooks/autosnippet-session.sh +10 -15
- package/templates/cursor-hooks/hooks/session-start.sh +1 -1
- package/templates/guard-ci.yml +2 -2
- package/templates/instructions/agent-static.md +2 -1
- package/templates/instructions/conventions.md +5 -6
- package/templates/recipes-setup/README.md +1 -2
- package/templates/recipes-setup/_template.md +39 -39
- package/dashboard/dist/assets/icons-BofcEZ3f.js +0 -1
- package/dashboard/dist/assets/index-D0whuycy.css +0 -1
- package/dashboard/dist/assets/index-SiN1GChm.js +0 -128
- package/dist/lib/domain/task/Task.d.ts +0 -140
- package/dist/lib/domain/task/Task.js +0 -254
- package/dist/lib/domain/task/TaskDependency.d.ts +0 -23
- package/dist/lib/domain/task/TaskDependency.js +0 -34
- package/dist/lib/domain/task/TaskIdGenerator.d.ts +0 -40
- package/dist/lib/domain/task/TaskIdGenerator.js +0 -75
- package/dist/lib/domain/task/index.d.ts +0 -4
- package/dist/lib/domain/task/index.js +0 -4
- package/dist/lib/infrastructure/database/migrations/002_add_tasks.d.ts +0 -11
- package/dist/lib/infrastructure/database/migrations/002_add_tasks.js +0 -86
- package/dist/lib/repository/task/TaskRepository.impl.d.ts +0 -171
- package/dist/lib/repository/task/TaskRepository.impl.js +0 -347
- package/dist/lib/service/task/TaskGraphService.d.ts +0 -222
- package/dist/lib/service/task/TaskGraphService.js +0 -597
- package/dist/lib/service/task/TaskKnowledgeBridge.d.ts +0 -95
- package/dist/lib/service/task/TaskKnowledgeBridge.js +0 -298
- package/dist/lib/service/task/TaskReadyEngine.d.ts +0 -84
- package/dist/lib/service/task/TaskReadyEngine.js +0 -115
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EnhancementSuggester — 使用数据反推增强建议
|
|
3
|
+
*
|
|
4
|
+
* 4 种增强策略:
|
|
5
|
+
* ① Guard 频繁命中但无 coreCode → 建议补充代码示例
|
|
6
|
+
* ② Search 高频命中但 adoptions=0 → 建议改善 usageGuide
|
|
7
|
+
* ③ 同类知识中 authority 偏低 → 建议补充 whenClause
|
|
8
|
+
* ④ 关联 Recipe 已 deprecated → 建议检查引用是否过时
|
|
9
|
+
*/
|
|
10
|
+
import Logger from '../../infrastructure/logging/Logger.js';
|
|
11
|
+
/* ────────────────────── Constants ────────────────────── */
|
|
12
|
+
const GUARD_HIT_THRESHOLD = 5;
|
|
13
|
+
const SEARCH_HIT_THRESHOLD = 10;
|
|
14
|
+
const LOW_AUTHORITY_PERCENTILE = 0.25;
|
|
15
|
+
/* ────────────────────── Class ────────────────────── */
|
|
16
|
+
export class EnhancementSuggester {
|
|
17
|
+
#db;
|
|
18
|
+
#signalBus;
|
|
19
|
+
#reportStore;
|
|
20
|
+
#logger = Logger.getInstance();
|
|
21
|
+
constructor(db, options = {}) {
|
|
22
|
+
this.#db = db;
|
|
23
|
+
this.#signalBus = options.signalBus ?? null;
|
|
24
|
+
this.#reportStore = options.reportStore ?? null;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 运行全部 4 种增强策略
|
|
28
|
+
*/
|
|
29
|
+
analyzeAll() {
|
|
30
|
+
const suggestions = [
|
|
31
|
+
...this.#checkMissingCodeExamples(),
|
|
32
|
+
...this.#checkLowAdoption(),
|
|
33
|
+
...this.#checkLowAuthority(),
|
|
34
|
+
...this.#checkDeprecatedReferences(),
|
|
35
|
+
];
|
|
36
|
+
if (this.#reportStore && suggestions.length > 0) {
|
|
37
|
+
void this.#reportStore.write({
|
|
38
|
+
category: 'analysis',
|
|
39
|
+
type: 'enhancement_suggestions',
|
|
40
|
+
producer: 'EnhancementSuggester',
|
|
41
|
+
data: {
|
|
42
|
+
count: suggestions.length,
|
|
43
|
+
byType: this.#countByType(suggestions),
|
|
44
|
+
},
|
|
45
|
+
timestamp: Date.now(),
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
this.#logger.info(`EnhancementSuggester: ${suggestions.length} suggestions generated`);
|
|
49
|
+
return suggestions;
|
|
50
|
+
}
|
|
51
|
+
/* ── Strategy ①: Guard 频繁命中但无 coreCode ── */
|
|
52
|
+
#checkMissingCodeExamples() {
|
|
53
|
+
const rows = this.#db
|
|
54
|
+
.prepare(`SELECT id, title, coreCode, stats
|
|
55
|
+
FROM knowledge_entries
|
|
56
|
+
WHERE lifecycle IN ('active', 'staging') AND kind = 'rule'`)
|
|
57
|
+
.all();
|
|
58
|
+
const suggestions = [];
|
|
59
|
+
for (const row of rows) {
|
|
60
|
+
const hasCode = row.coreCode && row.coreCode.trim().length > 10;
|
|
61
|
+
if (hasCode) {
|
|
62
|
+
continue;
|
|
63
|
+
}
|
|
64
|
+
let stats = {};
|
|
65
|
+
try {
|
|
66
|
+
stats = JSON.parse(row.stats || '{}');
|
|
67
|
+
}
|
|
68
|
+
catch {
|
|
69
|
+
continue;
|
|
70
|
+
}
|
|
71
|
+
const guardHits = stats.guardHits || 0;
|
|
72
|
+
if (guardHits >= GUARD_HIT_THRESHOLD) {
|
|
73
|
+
suggestions.push({
|
|
74
|
+
recipeId: row.id,
|
|
75
|
+
title: row.title,
|
|
76
|
+
type: 'missing_code_example',
|
|
77
|
+
description: `Guard 已命中 ${guardHits} 次但无代码示例,建议补充 coreCode 帮助开发者理解正确用法`,
|
|
78
|
+
priority: guardHits >= GUARD_HIT_THRESHOLD * 3 ? 'high' : 'medium',
|
|
79
|
+
evidence: [`guardHits: ${guardHits}`, 'coreCode: empty'],
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return suggestions;
|
|
84
|
+
}
|
|
85
|
+
/* ── Strategy ②: Search 高频命中但 adoptions=0 ── */
|
|
86
|
+
#checkLowAdoption() {
|
|
87
|
+
const rows = this.#db
|
|
88
|
+
.prepare(`SELECT id, title, stats
|
|
89
|
+
FROM knowledge_entries
|
|
90
|
+
WHERE lifecycle IN ('active', 'staging')`)
|
|
91
|
+
.all();
|
|
92
|
+
const suggestions = [];
|
|
93
|
+
for (const row of rows) {
|
|
94
|
+
let stats = {};
|
|
95
|
+
try {
|
|
96
|
+
stats = JSON.parse(row.stats || '{}');
|
|
97
|
+
}
|
|
98
|
+
catch {
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
const searchHits = stats.searchHits || 0;
|
|
102
|
+
const adoptions = stats.adoptions || 0;
|
|
103
|
+
if (searchHits >= SEARCH_HIT_THRESHOLD && adoptions === 0) {
|
|
104
|
+
suggestions.push({
|
|
105
|
+
recipeId: row.id,
|
|
106
|
+
title: row.title,
|
|
107
|
+
type: 'low_adoption',
|
|
108
|
+
description: `搜索命中 ${searchHits} 次但采纳为 0,建议改善 usageGuide 或 whenClause 使知识更具可操作性`,
|
|
109
|
+
priority: searchHits >= SEARCH_HIT_THRESHOLD * 3 ? 'high' : 'medium',
|
|
110
|
+
evidence: [`searchHits: ${searchHits}`, `adoptions: ${adoptions}`],
|
|
111
|
+
});
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return suggestions;
|
|
115
|
+
}
|
|
116
|
+
/* ── Strategy ③: 同类知识中 authority 偏低 ── */
|
|
117
|
+
#checkLowAuthority() {
|
|
118
|
+
const rows = this.#db
|
|
119
|
+
.prepare(`SELECT id, title, category, stats
|
|
120
|
+
FROM knowledge_entries
|
|
121
|
+
WHERE lifecycle IN ('active', 'staging')`)
|
|
122
|
+
.all();
|
|
123
|
+
// 按 category 分组计算 authority 分位
|
|
124
|
+
const byCategory = new Map();
|
|
125
|
+
for (const row of rows) {
|
|
126
|
+
let stats = {};
|
|
127
|
+
try {
|
|
128
|
+
stats = JSON.parse(row.stats || '{}');
|
|
129
|
+
}
|
|
130
|
+
catch {
|
|
131
|
+
continue;
|
|
132
|
+
}
|
|
133
|
+
const authority = stats.authority || 0;
|
|
134
|
+
const cat = row.category || 'general';
|
|
135
|
+
if (!byCategory.has(cat)) {
|
|
136
|
+
byCategory.set(cat, []);
|
|
137
|
+
}
|
|
138
|
+
byCategory.get(cat).push({ id: row.id, title: row.title, authority });
|
|
139
|
+
}
|
|
140
|
+
const suggestions = [];
|
|
141
|
+
for (const [category, entries] of byCategory) {
|
|
142
|
+
if (entries.length < 3) {
|
|
143
|
+
continue; // 同类太少,无法比较
|
|
144
|
+
}
|
|
145
|
+
const sorted = entries.sort((a, b) => a.authority - b.authority);
|
|
146
|
+
const cutoff = Math.floor(sorted.length * LOW_AUTHORITY_PERCENTILE);
|
|
147
|
+
for (let i = 0; i < cutoff; i++) {
|
|
148
|
+
const entry = sorted[i];
|
|
149
|
+
suggestions.push({
|
|
150
|
+
recipeId: entry.id,
|
|
151
|
+
title: entry.title,
|
|
152
|
+
type: 'low_authority',
|
|
153
|
+
description: `在 "${category}" 类别中 authority 偏低 (${entry.authority}),建议补充 whenClause 和上下文描述`,
|
|
154
|
+
priority: 'low',
|
|
155
|
+
evidence: [
|
|
156
|
+
`authority: ${entry.authority}`,
|
|
157
|
+
`category: ${category}`,
|
|
158
|
+
`rank: ${i + 1}/${sorted.length}`,
|
|
159
|
+
],
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
return suggestions;
|
|
164
|
+
}
|
|
165
|
+
/* ── Strategy ④: 关联 Recipe 已 deprecated ── */
|
|
166
|
+
#checkDeprecatedReferences() {
|
|
167
|
+
const rows = this.#db
|
|
168
|
+
.prepare(`SELECT id, title, relations
|
|
169
|
+
FROM knowledge_entries
|
|
170
|
+
WHERE lifecycle IN ('active', 'staging')`)
|
|
171
|
+
.all();
|
|
172
|
+
const suggestions = [];
|
|
173
|
+
for (const row of rows) {
|
|
174
|
+
let relations = {};
|
|
175
|
+
try {
|
|
176
|
+
relations = JSON.parse(row.relations || '{}');
|
|
177
|
+
}
|
|
178
|
+
catch {
|
|
179
|
+
continue;
|
|
180
|
+
}
|
|
181
|
+
// 检查 related, depends_on 等关系桶中的 ID
|
|
182
|
+
const relatedIds = [];
|
|
183
|
+
for (const [bucket, ids] of Object.entries(relations)) {
|
|
184
|
+
if (bucket === 'deprecated_by') {
|
|
185
|
+
continue; // 自身的 deprecated_by 不算
|
|
186
|
+
}
|
|
187
|
+
if (Array.isArray(ids)) {
|
|
188
|
+
relatedIds.push(...ids);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
if (relatedIds.length === 0) {
|
|
192
|
+
continue;
|
|
193
|
+
}
|
|
194
|
+
// 批量检查关联条目的 lifecycle
|
|
195
|
+
const placeholders = relatedIds.map(() => '?').join(',');
|
|
196
|
+
const deprecated = this.#db
|
|
197
|
+
.prepare(`SELECT id, title FROM knowledge_entries WHERE id IN (${placeholders}) AND lifecycle = 'deprecated'`)
|
|
198
|
+
.all(...relatedIds);
|
|
199
|
+
for (const dep of deprecated) {
|
|
200
|
+
suggestions.push({
|
|
201
|
+
recipeId: row.id,
|
|
202
|
+
title: row.title,
|
|
203
|
+
type: 'deprecated_reference',
|
|
204
|
+
description: `引用了已废弃的 Recipe "${dep.title}" (${dep.id}),建议检查引用是否过时`,
|
|
205
|
+
priority: 'high',
|
|
206
|
+
evidence: [`referenced: ${dep.id}`, `referenced_title: ${dep.title}`],
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return suggestions;
|
|
211
|
+
}
|
|
212
|
+
/* ── Helpers ── */
|
|
213
|
+
#countByType(suggestions) {
|
|
214
|
+
const counts = {};
|
|
215
|
+
for (const s of suggestions) {
|
|
216
|
+
counts[s.type] = (counts[s.type] || 0) + 1;
|
|
217
|
+
}
|
|
218
|
+
return counts;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* KnowledgeMetabolism — 知识新陈代谢总线
|
|
3
|
+
*
|
|
4
|
+
* 治理总线:编排三种进化策略 (矛盾检测 + 冗余分析 + 衰退检测)
|
|
5
|
+
* 产出 EvolutionProposal,通过 ConfidenceRouter + 状态机 驱动转换。
|
|
6
|
+
*
|
|
7
|
+
* 入口:
|
|
8
|
+
* - runFullCycle() — 完整治理周期(日常定时 / 手动触发)
|
|
9
|
+
* - checkDecay() — 只做衰退扫描
|
|
10
|
+
* - checkContradictions() — 只做矛盾检测
|
|
11
|
+
* - checkRedundancy() — 只做冗余分析
|
|
12
|
+
*/
|
|
13
|
+
import type { ReportStore } from '../../infrastructure/report/ReportStore.js';
|
|
14
|
+
import type { SignalBus } from '../../infrastructure/signal/SignalBus.js';
|
|
15
|
+
import type { ContradictionDetector, ContradictionResult } from './ContradictionDetector.js';
|
|
16
|
+
import type { DecayDetector, DecayScoreResult } from './DecayDetector.js';
|
|
17
|
+
import type { RedundancyAnalyzer, RedundancyResult } from './RedundancyAnalyzer.js';
|
|
18
|
+
export type ProposalType = 'merge' | 'enhance' | 'refine_guard' | 'split' | 'deprecate' | 'review';
|
|
19
|
+
export interface EvolutionProposal {
|
|
20
|
+
/** 进化提案类型 */
|
|
21
|
+
type: ProposalType;
|
|
22
|
+
/** 目标 Recipe ID */
|
|
23
|
+
targetRecipeId: string;
|
|
24
|
+
/** 关联 Recipe IDs(合并/矛盾对象) */
|
|
25
|
+
relatedRecipeIds: string[];
|
|
26
|
+
/** 置信度 0-1 */
|
|
27
|
+
confidence: number;
|
|
28
|
+
/** 触发来源 */
|
|
29
|
+
source: 'contradiction' | 'redundancy' | 'decay' | 'enhancement';
|
|
30
|
+
/** 描述 */
|
|
31
|
+
description: string;
|
|
32
|
+
/** 原始信号证据 */
|
|
33
|
+
evidence: string[];
|
|
34
|
+
/** 创建时间 */
|
|
35
|
+
proposedAt: number;
|
|
36
|
+
/** 过期时间 (proposedAt + 7d) */
|
|
37
|
+
expiresAt: number;
|
|
38
|
+
}
|
|
39
|
+
export interface MetabolismReport {
|
|
40
|
+
/** 矛盾检测结果 */
|
|
41
|
+
contradictions: ContradictionResult[];
|
|
42
|
+
/** 冗余分析结果 */
|
|
43
|
+
redundancies: RedundancyResult[];
|
|
44
|
+
/** 衰退评估结果 */
|
|
45
|
+
decayResults: DecayScoreResult[];
|
|
46
|
+
/** 生成的进化提案 */
|
|
47
|
+
proposals: EvolutionProposal[];
|
|
48
|
+
/** 统计摘要 */
|
|
49
|
+
summary: {
|
|
50
|
+
totalScanned: number;
|
|
51
|
+
contradictionCount: number;
|
|
52
|
+
redundancyCount: number;
|
|
53
|
+
decayingCount: number;
|
|
54
|
+
proposalCount: number;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
export declare class KnowledgeMetabolism {
|
|
58
|
+
#private;
|
|
59
|
+
constructor(options: {
|
|
60
|
+
contradictionDetector: ContradictionDetector;
|
|
61
|
+
redundancyAnalyzer: RedundancyAnalyzer;
|
|
62
|
+
decayDetector: DecayDetector;
|
|
63
|
+
signalBus?: SignalBus;
|
|
64
|
+
reportStore?: ReportStore;
|
|
65
|
+
});
|
|
66
|
+
/**
|
|
67
|
+
* 执行完整治理周期
|
|
68
|
+
*/
|
|
69
|
+
runFullCycle(): MetabolismReport;
|
|
70
|
+
/**
|
|
71
|
+
* 只执行衰退扫描
|
|
72
|
+
*/
|
|
73
|
+
checkDecay(): DecayScoreResult[];
|
|
74
|
+
/**
|
|
75
|
+
* 只执行矛盾检测
|
|
76
|
+
*/
|
|
77
|
+
checkContradictions(): ContradictionResult[];
|
|
78
|
+
/**
|
|
79
|
+
* 只执行冗余分析
|
|
80
|
+
*/
|
|
81
|
+
checkRedundancy(): RedundancyResult[];
|
|
82
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* KnowledgeMetabolism — 知识新陈代谢总线
|
|
3
|
+
*
|
|
4
|
+
* 治理总线:编排三种进化策略 (矛盾检测 + 冗余分析 + 衰退检测)
|
|
5
|
+
* 产出 EvolutionProposal,通过 ConfidenceRouter + 状态机 驱动转换。
|
|
6
|
+
*
|
|
7
|
+
* 入口:
|
|
8
|
+
* - runFullCycle() — 完整治理周期(日常定时 / 手动触发)
|
|
9
|
+
* - checkDecay() — 只做衰退扫描
|
|
10
|
+
* - checkContradictions() — 只做矛盾检测
|
|
11
|
+
* - checkRedundancy() — 只做冗余分析
|
|
12
|
+
*/
|
|
13
|
+
import Logger from '../../infrastructure/logging/Logger.js';
|
|
14
|
+
/* ────────────────────── Constants ────────────────────── */
|
|
15
|
+
const PROPOSAL_TTL = 7 * 24 * 60 * 60 * 1000; // 7 days
|
|
16
|
+
/* ────────────────────── Class ────────────────────── */
|
|
17
|
+
export class KnowledgeMetabolism {
|
|
18
|
+
#contradictionDetector;
|
|
19
|
+
#redundancyAnalyzer;
|
|
20
|
+
#decayDetector;
|
|
21
|
+
#signalBus;
|
|
22
|
+
#reportStore;
|
|
23
|
+
#logger = Logger.getInstance();
|
|
24
|
+
#pendingTriggers = [];
|
|
25
|
+
#debounceTimer = null;
|
|
26
|
+
constructor(options) {
|
|
27
|
+
this.#contradictionDetector = options.contradictionDetector;
|
|
28
|
+
this.#redundancyAnalyzer = options.redundancyAnalyzer;
|
|
29
|
+
this.#decayDetector = options.decayDetector;
|
|
30
|
+
this.#signalBus = options.signalBus ?? null;
|
|
31
|
+
this.#reportStore = options.reportStore ?? null;
|
|
32
|
+
// Phase 2: 订阅告警型信号,触发代谢周期
|
|
33
|
+
if (this.#signalBus) {
|
|
34
|
+
this.#signalBus.subscribe('decay|quality|anomaly', (signal) => {
|
|
35
|
+
this.#pendingTriggers.push(signal);
|
|
36
|
+
this.#scheduleMetabolism();
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
#scheduleMetabolism() {
|
|
41
|
+
if (this.#debounceTimer) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
this.#debounceTimer = setTimeout(() => {
|
|
45
|
+
this.#debounceTimer = null;
|
|
46
|
+
if (this.#pendingTriggers.length > 0) {
|
|
47
|
+
this.runFullCycle();
|
|
48
|
+
this.#pendingTriggers = [];
|
|
49
|
+
}
|
|
50
|
+
}, 30_000);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* 执行完整治理周期
|
|
54
|
+
*/
|
|
55
|
+
runFullCycle() {
|
|
56
|
+
this.#logger.info('KnowledgeMetabolism: starting full governance cycle');
|
|
57
|
+
// 1. 衰退检测
|
|
58
|
+
const decayResults = this.#decayDetector.scanAll();
|
|
59
|
+
// 2. 矛盾检测
|
|
60
|
+
const contradictions = this.#contradictionDetector.detectAll();
|
|
61
|
+
// 3. 冗余分析
|
|
62
|
+
const redundancies = this.#redundancyAnalyzer.analyzeAll();
|
|
63
|
+
// 4. 生成进化提案
|
|
64
|
+
const proposals = [
|
|
65
|
+
...this.#proposalsFromContradictions(contradictions),
|
|
66
|
+
...this.#proposalsFromRedundancies(redundancies),
|
|
67
|
+
...this.#proposalsFromDecay(decayResults),
|
|
68
|
+
];
|
|
69
|
+
// 5. 写入治理报告(降级:不再发射 Signal,改为 Report)
|
|
70
|
+
if (this.#reportStore && proposals.length > 0) {
|
|
71
|
+
void this.#reportStore.write({
|
|
72
|
+
category: 'governance',
|
|
73
|
+
type: 'metabolism_cycle',
|
|
74
|
+
producer: 'KnowledgeMetabolism',
|
|
75
|
+
data: {
|
|
76
|
+
proposalCount: proposals.length,
|
|
77
|
+
contradictionCount: contradictions.length,
|
|
78
|
+
redundancyCount: redundancies.length,
|
|
79
|
+
decayingCount: decayResults.filter((d) => d.level !== 'healthy' && d.level !== 'watch')
|
|
80
|
+
.length,
|
|
81
|
+
},
|
|
82
|
+
timestamp: Date.now(),
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
const report = {
|
|
86
|
+
contradictions,
|
|
87
|
+
redundancies,
|
|
88
|
+
decayResults,
|
|
89
|
+
proposals,
|
|
90
|
+
summary: {
|
|
91
|
+
totalScanned: decayResults.length,
|
|
92
|
+
contradictionCount: contradictions.length,
|
|
93
|
+
redundancyCount: redundancies.length,
|
|
94
|
+
decayingCount: decayResults.filter((d) => d.level !== 'healthy' && d.level !== 'watch')
|
|
95
|
+
.length,
|
|
96
|
+
proposalCount: proposals.length,
|
|
97
|
+
},
|
|
98
|
+
};
|
|
99
|
+
this.#logger.info(`KnowledgeMetabolism: cycle complete — ${report.summary.proposalCount} proposals generated`);
|
|
100
|
+
return report;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* 只执行衰退扫描
|
|
104
|
+
*/
|
|
105
|
+
checkDecay() {
|
|
106
|
+
return this.#decayDetector.scanAll();
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* 只执行矛盾检测
|
|
110
|
+
*/
|
|
111
|
+
checkContradictions() {
|
|
112
|
+
return this.#contradictionDetector.detectAll();
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* 只执行冗余分析
|
|
116
|
+
*/
|
|
117
|
+
checkRedundancy() {
|
|
118
|
+
return this.#redundancyAnalyzer.analyzeAll();
|
|
119
|
+
}
|
|
120
|
+
/* ── Proposal Generation ── */
|
|
121
|
+
#proposalsFromContradictions(results) {
|
|
122
|
+
const now = Date.now();
|
|
123
|
+
return results.map((r) => ({
|
|
124
|
+
type: r.type === 'hard' ? 'merge' : 'review',
|
|
125
|
+
targetRecipeId: r.recipeA,
|
|
126
|
+
relatedRecipeIds: [r.recipeB],
|
|
127
|
+
confidence: r.confidence,
|
|
128
|
+
source: 'contradiction',
|
|
129
|
+
description: `${r.type === 'hard' ? 'Hard' : 'Soft'} contradiction detected between recipes`,
|
|
130
|
+
evidence: r.evidence,
|
|
131
|
+
proposedAt: now,
|
|
132
|
+
expiresAt: now + PROPOSAL_TTL,
|
|
133
|
+
}));
|
|
134
|
+
}
|
|
135
|
+
#proposalsFromRedundancies(results) {
|
|
136
|
+
const now = Date.now();
|
|
137
|
+
return results.map((r) => ({
|
|
138
|
+
type: 'merge',
|
|
139
|
+
targetRecipeId: r.recipeA,
|
|
140
|
+
relatedRecipeIds: [r.recipeB],
|
|
141
|
+
confidence: r.similarity,
|
|
142
|
+
source: 'redundancy',
|
|
143
|
+
description: `Redundant content detected (similarity: ${(r.similarity * 100).toFixed(0)}%)`,
|
|
144
|
+
evidence: Object.entries(r.dimensions)
|
|
145
|
+
.filter(([, v]) => v > 0)
|
|
146
|
+
.map(([k, v]) => `${k}: ${(v * 100).toFixed(0)}%`),
|
|
147
|
+
proposedAt: now,
|
|
148
|
+
expiresAt: now + PROPOSAL_TTL,
|
|
149
|
+
}));
|
|
150
|
+
}
|
|
151
|
+
#proposalsFromDecay(results) {
|
|
152
|
+
const now = Date.now();
|
|
153
|
+
return results
|
|
154
|
+
.filter((r) => r.level === 'decaying' || r.level === 'severe' || r.level === 'dead')
|
|
155
|
+
.map((r) => ({
|
|
156
|
+
type: 'deprecate',
|
|
157
|
+
targetRecipeId: r.recipeId,
|
|
158
|
+
relatedRecipeIds: [],
|
|
159
|
+
confidence: Math.max(0.4, 1 - r.decayScore / 100),
|
|
160
|
+
source: 'decay',
|
|
161
|
+
description: `Decay detected: score=${r.decayScore}, level=${r.level}`,
|
|
162
|
+
evidence: r.signals.map((s) => `${s.strategy}: ${s.detail}`),
|
|
163
|
+
proposedAt: now,
|
|
164
|
+
expiresAt: now + PROPOSAL_TTL,
|
|
165
|
+
}));
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RedundancyAnalyzer — 多维冗余检测
|
|
3
|
+
*
|
|
4
|
+
* 从 CandidateAggregator 的标题 Jaccard 扩展到四维内容级相似度:
|
|
5
|
+
* 维度 1: title Jaccard ≥ 0.7
|
|
6
|
+
* 维度 2: doClause + dontClause 文本相似度 ≥ 0.6
|
|
7
|
+
* 维度 3: coreCode 去空白后字符级相似度 ≥ 0.8
|
|
8
|
+
* 维度 4: guard regex 完全相同
|
|
9
|
+
*
|
|
10
|
+
* 综合: weighted_sum(0.2*d1 + 0.3*d2 + 0.3*d3 + 0.2*d4) ≥ 0.65
|
|
11
|
+
*/
|
|
12
|
+
import type { ReportStore } from '../../infrastructure/report/ReportStore.js';
|
|
13
|
+
import type { SignalBus } from '../../infrastructure/signal/SignalBus.js';
|
|
14
|
+
interface DatabaseLike {
|
|
15
|
+
prepare(sql: string): {
|
|
16
|
+
all(...params: unknown[]): Record<string, unknown>[];
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
export interface RedundancyResult {
|
|
20
|
+
recipeA: string;
|
|
21
|
+
recipeB: string;
|
|
22
|
+
similarity: number;
|
|
23
|
+
dimensions: {
|
|
24
|
+
title: number;
|
|
25
|
+
clause: number;
|
|
26
|
+
code: number;
|
|
27
|
+
guard: number;
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
interface RecipeForRedundancy {
|
|
31
|
+
id: string;
|
|
32
|
+
title: string;
|
|
33
|
+
doClause: string | null;
|
|
34
|
+
dontClause: string | null;
|
|
35
|
+
coreCode: string | null;
|
|
36
|
+
guardPattern: string | null;
|
|
37
|
+
}
|
|
38
|
+
export declare class RedundancyAnalyzer {
|
|
39
|
+
#private;
|
|
40
|
+
constructor(db: DatabaseLike, options?: {
|
|
41
|
+
signalBus?: SignalBus;
|
|
42
|
+
reportStore?: ReportStore;
|
|
43
|
+
});
|
|
44
|
+
/**
|
|
45
|
+
* 分析所有 active/staging 条目之间的冗余
|
|
46
|
+
*/
|
|
47
|
+
analyzeAll(): RedundancyResult[];
|
|
48
|
+
/**
|
|
49
|
+
* 分析两条 Recipe 的冗余度
|
|
50
|
+
*/
|
|
51
|
+
analyzePair(a: RecipeForRedundancy, b: RecipeForRedundancy): RedundancyResult | null;
|
|
52
|
+
}
|
|
53
|
+
export {};
|