Skip to main content

Module gaps

Module gaps 

Source
Expand description

Knowledge gap analysis system

This module provides tools for tracking, prioritizing, and resolving knowledge gaps during debugging. LLMs can register missing information, untested assumptions, and unknown dependencies with multi-factor priority scoring.

Re-exports§

pub use analyzer::KnowledgeGapAnalyzer;
pub use analyzer::KnowledgeGap;
pub use analyzer::GapId;
pub use analyzer::GapCriticality;
pub use analyzer::GapType;
pub use analyzer::ScoringConfig;
pub use analyzer::GapSuggestion;
pub use analyzer::SuggestedAction;
pub use scoring::compute_gap_score;
pub use scoring::recompute_all_scores;
pub use scoring::PriorityQueue;

Modules§

analyzer
Knowledge gap analyzer core types
scoring
Multi-factor gap priority scoring with BinaryHeap
suggestions
Action suggestion generation for knowledge gaps