agent-kernel 0.1.0

Minimal Agent orchestration kernel for multi-agent discussion
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// An agent's complete configuration.
///
/// SOUL.md is the sole config source — no built-in role/persona concept (primitives over features).
#[derive(Debug, Clone)]
pub struct Agent {
    /// Unique identifier for this agent.
    pub name: String,
    /// Full contents of the agent's SOUL.md system prompt.
    pub soul_md: String,
    /// LLM model identifier (e.g. "anthropic/claude-sonnet-4-6").
    pub model: String,
}