tighten module interfaces: explicit re-exports, private helpers, inline dedup

- Replace `pub use types::*` in store/mod.rs with explicit re-export list
- Make transcript_dedup_key private in agents/enrich.rs (only used internally)
- Inline duplicated projects_dir() helper in agents/knowledge.rs and daemon.rs
This commit is contained in:
ProofOfConcept 2026-03-08 21:36:47 -04:00
parent cee9b76a7b
commit 7c491e92eb
4 changed files with 10 additions and 12 deletions

View file

@ -21,10 +21,6 @@ use std::collections::{HashMap, HashSet};
use std::fs;
use std::path::{Path, PathBuf};
fn projects_dir() -> PathBuf {
crate::config::get().projects_dir.clone()
}
// ---------------------------------------------------------------------------
// Action types
// ---------------------------------------------------------------------------
@ -420,7 +416,7 @@ fn count_dialogue_turns(path: &Path) -> usize {
/// Select conversation fragments for the observation extractor
fn select_conversation_fragments(n: usize) -> Vec<(String, String)> {
let projects = projects_dir();
let projects = crate::config::get().projects_dir.clone();
if !projects.exists() { return Vec::new(); }
let mut jsonl_files: Vec<PathBuf> = Vec::new();