tsift-resolution 0.1.69

Multi-strategy reference resolution, scoring heuristics, and path blocklist for tsift
Documentation
pub mod blocklist;
pub mod resolve;
pub mod scoring;

pub use scoring::{
    COMMUNITY_MIN_DUPLICATE_NAME_PRECISION, COMMUNITY_MIN_HANDLE_COVERAGE_PCT,
    NeighborhoodRankingGate, RankedNeighbor, default_neighborhood_ranking_gate,
    duplicate_name_precision, edge_kind_rank_score, has_community_signal, has_semantic_signal,
    neighborhood_depths, node_has_handle_coverage, page_handle_coverage_pct, ranked_neighbors,
    ranked_neighbors_capped, source_handle_is_fresh,
};

pub use blocklist::{
    index_snapshot_part_is_generated, is_planner_config_path, path_is_generated_artifact,
    relative_path_is_generated_artifact,
};

pub use resolve::{
    NodeMatchKind, RankedMatch, StrategyRank, f1_score, kind_priority, tag_f1_score,
    token_overlap_rank,
};