codetether-agent 4.7.0-a-002.2

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::cognition::beliefs::Belief;

pub(crate) fn render(beliefs: &[Belief]) -> String {
    let keywords = super::belief_keywords::top_keywords(beliefs, 8);
    if keywords.is_empty() {
        return "Belief-guided recall: no active belief keywords.".to_string();
    }
    format!(
        "Belief-guided recall: prioritize memories and session_recall queries related to: {}.",
        keywords.join(", ")
    )
}