codetether-agent 4.0.0

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
//! Agent system
//!
//! Agents are the core execution units that orchestrate tools and LLM interactions.

pub mod builtin;

use crate::config::PermissionAction;
use crate::provider::{CompletionRequest, ContentPart, Message, Provider, Role};
use crate::session::Session;
use crate::swarm::{Actor, ActorStatus, Handler, SwarmMessage};
use crate::tool::{Tool, ToolRegistry, ToolResult};
use anyhow::Result;
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;

/// Agent information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentInfo {
    pub name: String,
    pub description: Option<String>,
    pub mode: AgentMode,
    pub native: bool,
    pub hidden: bool,
    pub model: Option<String>,
    pub temperature: Option<f32>,
    pub top_p: Option<f32>,
    pub max_steps: Option<usize>,
}

#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
pub enum AgentMode {
    Primary,
    Subagent,
    All,
}

/// Metadata for a registered tool
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolMetadata {
    pub name: String,
    pub description: String,
    pub parameters: serde_json::Value,
}

/// The main agent execution context
pub struct Agent {
    pub info: AgentInfo,
    pub provider: Arc<dyn Provider>,
    pub tools: ToolRegistry,
    pub permissions: HashMap<String, PermissionAction>,
    /// Tool metadata for registered tools
    pub metadata: HashMap<String, ToolMetadata>,
    system_prompt: String,
}

impl Agent {
    /// Create a new agent
    pub fn new(
        info: AgentInfo,
        provider: Arc<dyn Provider>,
        tools: ToolRegistry,
        system_prompt: String,
    ) -> Self {
        Self {
            info,
            provider,
            tools,
            permissions: HashMap::new(),
            metadata: HashMap::new(),
            system_prompt,
        }
    }

    /// Execute a prompt and return the response
    pub async fn execute(&self, session: &mut Session, prompt: &str) -> Result<AgentResponse> {
        // Add user message to session
        session.add_message(Message {
            role: Role::User,
            content: vec![ContentPart::Text {
                text: prompt.to_string(),
            }],
        });

        let mut steps = 0;
        let max_steps = self.info.max_steps.unwrap_or(100);

        loop {
            steps += 1;
            if steps > max_steps {
                anyhow::bail!("Exceeded maximum steps ({})", max_steps);
            }

            // Build the completion request
            let request = CompletionRequest {
                messages: self.build_messages(session),
                tools: self.tools.definitions(),
                model: self
                    .info
                    .model
                    .clone()
                    .unwrap_or_else(|| match self.provider.name() {
                        "zhipuai" | "zai" => "glm-5".to_string(),
                        "openrouter" => "z-ai/glm-5".to_string(),
                        _ => "glm-5".to_string(),
                    }),
                temperature: self.info.temperature,
                top_p: self.info.top_p,
                max_tokens: None,
                stop: vec![],
            };

            // Get completion from provider
            let response = self.provider.complete(request).await?;
            session.add_message(response.message.clone());

            // Check for tool calls
            let tool_calls: Vec<_> = response
                .message
                .content
                .iter()
                .filter_map(|p| match p {
                    ContentPart::ToolCall {
                        id,
                        name,
                        arguments,
                        ..
                    } => Some((id.clone(), name.clone(), arguments.clone())),
                    _ => None,
                })
                .collect();

            if tool_calls.is_empty() {
                // No tool calls, we're done
                let text = response
                    .message
                    .content
                    .iter()
                    .filter_map(|p| match p {
                        ContentPart::Text { text } => Some(text.clone()),
                        _ => None,
                    })
                    .collect::<Vec<_>>()
                    .join("\n");

                return Ok(AgentResponse {
                    text,
                    tool_uses: session.tool_uses.clone(),
                    usage: session.usage.clone(),
                });
            }

            // Execute tool calls
            for (id, name, arguments) in tool_calls {
                let result = self.execute_tool(&name, &arguments).await;

                session.tool_uses.push(ToolUse {
                    id: id.clone(),
                    name: name.clone(),
                    input: arguments.clone(),
                    output: result.output.clone(),
                    success: result.success,
                });

                session.add_message(Message {
                    role: Role::Tool,
                    content: vec![ContentPart::ToolResult {
                        tool_call_id: id,
                        content: result.output,
                    }],
                });
            }
        }
    }

    /// Build the full message list including system prompt
    fn build_messages(&self, session: &Session) -> Vec<Message> {
        let mut messages = vec![Message {
            role: Role::System,
            content: vec![ContentPart::Text {
                text: self.system_prompt.clone(),
            }],
        }];
        messages.extend(session.messages.clone());
        messages
    }

    /// Execute a single tool
    async fn execute_tool(&self, name: &str, arguments: &str) -> ToolResult {
        // Check permissions for this tool
        if let Some(permission) = self.permissions.get(name) {
            tracing::debug!(tool = name, permission = ?permission, "Checking tool permission");
            // Permission validation could be extended here
            // For now, we just log that a permission check occurred
        }

        match self.tools.get(name) {
            Some(tool) => {
                let args: serde_json::Value = match serde_json::from_str(arguments) {
                    Ok(v) => v,
                    Err(e) => {
                        return ToolResult {
                            output: format!("Failed to parse arguments: {}", e),
                            success: false,
                            metadata: HashMap::new(),
                        };
                    }
                };

                match tool.execute(args).await {
                    Ok(result) => result,
                    Err(e) => ToolResult {
                        output: format!("Tool execution failed: {}", e),
                        success: false,
                        metadata: HashMap::new(),
                    },
                }
            }
            None => {
                // Use the invalid tool handler for better error messages
                let available_tools = self.tools.list().iter().map(|s| s.to_string()).collect();
                let invalid_tool = crate::tool::invalid::InvalidTool::with_context(
                    name.to_string(),
                    available_tools,
                );
                let args = serde_json::json!({
                    "requested_tool": name,
                    "args": serde_json::from_str::<serde_json::Value>(arguments).unwrap_or(serde_json::json!({}))
                });
                match invalid_tool.execute(args).await {
                    Ok(result) => result,
                    Err(e) => ToolResult {
                        output: format!("Unknown tool: {}. Error: {}", name, e),
                        success: false,
                        metadata: HashMap::new(),
                    },
                }
            }
        }
    }

    /// Get a tool from the registry by name
    pub fn get_tool(&self, name: &str) -> Option<Arc<dyn Tool>> {
        self.tools.get(name)
    }

    /// Register a tool with the agent's tool registry
    pub fn register_tool(&mut self, tool: Arc<dyn Tool>) {
        self.tools.register(tool);
    }

    /// List all available tool IDs
    pub fn list_tools(&self) -> Vec<&str> {
        self.tools.list()
    }

    /// Check if a tool is available
    pub fn has_tool(&self, name: &str) -> bool {
        self.tools.get(name).is_some()
    }
}

/// Actor implementation for Agent - enables swarm participation
#[async_trait]
impl Actor for Agent {
    fn actor_id(&self) -> &str {
        &self.info.name
    }

    fn actor_status(&self) -> ActorStatus {
        // Agent is always ready to process messages
        ActorStatus::Ready
    }

    async fn initialize(&mut self) -> Result<()> {
        // Agent initialization is handled during construction
        // Additional async initialization can be added here
        tracing::info!(
            "Agent '{}' initialized for swarm participation",
            self.info.name
        );
        Ok(())
    }

    async fn shutdown(&mut self) -> Result<()> {
        tracing::info!("Agent '{}' shutting down", self.info.name);
        Ok(())
    }
}

/// Handler implementation for SwarmMessage - enables message processing
#[async_trait]
impl Handler<SwarmMessage> for Agent {
    type Response = SwarmMessage;

    async fn handle(&mut self, message: SwarmMessage) -> Result<Self::Response> {
        match message {
            SwarmMessage::ExecuteTask {
                task_id,
                instruction,
            } => {
                // Create a new session for this task
                let mut session = Session::new().await?;

                // Execute the task
                match self.execute(&mut session, &instruction).await {
                    Ok(response) => Ok(SwarmMessage::TaskCompleted {
                        task_id,
                        result: response.text,
                    }),
                    Err(e) => Ok(SwarmMessage::TaskFailed {
                        task_id,
                        error: e.to_string(),
                    }),
                }
            }
            SwarmMessage::ToolRequest { tool_id, arguments } => {
                // Execute the requested tool
                let result = if let Some(tool) = self.get_tool(&tool_id) {
                    match tool.execute(arguments).await {
                        Ok(r) => r,
                        Err(e) => ToolResult::error(format!("Tool execution failed: {}", e)),
                    }
                } else {
                    // Use the invalid tool handler for better error messages
                    let available_tools = self.tools.list().iter().map(|s| s.to_string()).collect();
                    let invalid_tool = crate::tool::invalid::InvalidTool::with_context(
                        tool_id.clone(),
                        available_tools,
                    );
                    let args = serde_json::json!({
                        "requested_tool": tool_id,
                        "args": arguments
                    });
                    match invalid_tool.execute(args).await {
                        Ok(r) => r,
                        Err(e) => ToolResult::error(format!("Tool '{}' not found: {}", tool_id, e)),
                    }
                };

                Ok(SwarmMessage::ToolResponse { tool_id, result })
            }
            _ => {
                // Other message types are not handled directly by the agent
                Ok(SwarmMessage::TaskFailed {
                    task_id: "unknown".to_string(),
                    error: "Unsupported message type".to_string(),
                })
            }
        }
    }
}

/// Response from agent execution
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentResponse {
    pub text: String,
    pub tool_uses: Vec<ToolUse>,
    pub usage: crate::provider::Usage,
}

/// Record of a tool use
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ToolUse {
    pub id: String,
    pub name: String,
    pub input: String,
    pub output: String,
    pub success: bool,
}

/// Registry of available agents
pub struct AgentRegistry {
    agents: HashMap<String, AgentInfo>,
}

impl AgentRegistry {
    #[allow(dead_code)]
    pub fn new() -> Self {
        Self {
            agents: HashMap::new(),
        }
    }

    /// Register a new agent
    pub fn register(&mut self, info: AgentInfo) {
        self.agents.insert(info.name.clone(), info);
    }

    /// Get agent info by name
    #[allow(dead_code)]
    pub fn get(&self, name: &str) -> Option<&AgentInfo> {
        self.agents.get(name)
    }

    /// List all agents
    pub fn list(&self) -> Vec<&AgentInfo> {
        self.agents.values().collect()
    }

    /// List primary agents (visible in UI)
    #[allow(dead_code)]
    pub fn list_primary(&self) -> Vec<&AgentInfo> {
        self.agents
            .values()
            .filter(|a| a.mode == AgentMode::Primary && !a.hidden)
            .collect()
    }

    /// Initialize with builtin agents
    pub fn with_builtins() -> Self {
        let mut registry = Self::new();

        registry.register(builtin::build_agent());
        registry.register(builtin::plan_agent());
        registry.register(builtin::explore_agent());

        registry
    }
}

impl Default for AgentRegistry {
    fn default() -> Self {
        Self::with_builtins()
    }
}