ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
//! Team memory prompts

pub fn get_team_memory_prompt() -> String {
    "You have access to team memories stored in the .claude/memory directory.".to_string()
}

pub fn get_individual_memory_prompt() -> String {
    "You have access to personal memories stored in the .claude/memory directory.".to_string()
}