deepseek-rust-cli 1.20.7

A lightweight, high-speed autonomous CLI system agent port of DeepSeek CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::fs;

pub fn get_project_context() -> String {
    let mut context = String::new();

    // Inject local memory (only — project structure listing removed to save tokens)
    if let Ok(memory) = fs::read_to_string(".deep/memory.md") {
        if !memory.trim().is_empty() {
            context.push_str("\n### Local Memory:\n");
            context.push_str(&memory);
        }
    }

    context
}