paceflow 0.2.4

Local-first CLI that turns AI coding session history and git metadata into engineering analytics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::collections::HashMap;

#[derive(Debug, Clone)]
pub struct SessionContext {
    pub session_cwd: Option<String>,
    pub file_cache: HashMap<String, String>,
}

impl SessionContext {
    pub fn new(session_cwd: Option<String>) -> Self {
        Self {
            session_cwd,
            file_cache: HashMap::new(),
        }
    }
}