claude-code-acp-rs 0.1.22

Use Claude Code from any ACP client - A Rust implementation of Claude Code ACP Agent
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
//! TodoWrite tool for task list management
//!
//! Manages a structured task list for tracking progress during coding sessions.

use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use serde_json::{Value, json};
use std::sync::Arc;
use tokio::sync::RwLock;

use super::base::Tool;
use crate::mcp::registry::{ToolContext, ToolResult};

/// Todo item status
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum TodoStatus {
    Pending,
    InProgress,
    Completed,
}

impl TodoStatus {
    fn from_str(s: &str) -> Self {
        match s {
            "in_progress" => Self::InProgress,
            "completed" => Self::Completed,
            _ => Self::Pending,
        }
    }

    #[allow(dead_code)]
    fn as_str(&self) -> &'static str {
        match self {
            Self::Pending => "pending",
            Self::InProgress => "in_progress",
            Self::Completed => "completed",
        }
    }

    fn symbol(&self) -> &'static str {
        match self {
            Self::Pending => "",
            Self::InProgress => "",
            Self::Completed => "",
        }
    }
}

/// A single todo item
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TodoItem {
    /// The task description
    pub content: String,
    /// Current status
    pub status: String,
    /// Active form of the description (shown when in progress)
    #[serde(rename = "activeForm")]
    pub active_form: String,
}

/// Input parameters for TodoWrite
#[derive(Debug, Deserialize)]
struct TodoWriteInput {
    /// The updated todo list
    todos: Vec<TodoItem>,
}

/// Shared todo list state
#[derive(Debug, Default)]
pub struct TodoList {
    items: RwLock<Vec<TodoItem>>,
}

impl TodoList {
    pub fn new() -> Self {
        Self {
            items: RwLock::new(Vec::new()),
        }
    }

    pub async fn update(&self, items: Vec<TodoItem>) {
        let mut guard = self.items.write().await;
        *guard = items;
    }

    pub async fn get_all(&self) -> Vec<TodoItem> {
        self.items.read().await.clone()
    }

    pub async fn format(&self) -> String {
        let items = self.items.read().await;
        if items.is_empty() {
            return "No todos".to_string();
        }

        let mut output = String::new();
        for (i, item) in items.iter().enumerate() {
            let status = TodoStatus::from_str(&item.status);
            let display_text = if status == TodoStatus::InProgress {
                &item.active_form
            } else {
                &item.content
            };
            output.push_str(&format!(
                "{}. {} {}\n",
                i + 1,
                status.symbol(),
                display_text
            ));
        }
        output
    }
}

/// TodoWrite tool for task list management
#[derive(Debug)]
pub struct TodoWriteTool {
    /// Shared todo list
    todo_list: Arc<TodoList>,
}

impl Default for TodoWriteTool {
    fn default() -> Self {
        Self::new()
    }
}

impl TodoWriteTool {
    /// Create a new TodoWrite tool with its own list
    pub fn new() -> Self {
        Self {
            todo_list: Arc::new(TodoList::new()),
        }
    }

    /// Create a TodoWrite tool with a shared list
    pub fn with_shared_list(list: Arc<TodoList>) -> Self {
        Self { todo_list: list }
    }

    /// Get the shared todo list
    pub fn todo_list(&self) -> Arc<TodoList> {
        self.todo_list.clone()
    }
}

#[async_trait]
impl Tool for TodoWriteTool {
    fn name(&self) -> &str {
        "TodoWrite"
    }

    fn description(&self) -> &str {
        "Manages a structured task list for tracking progress. Use this to plan tasks, \
         track progress, and demonstrate thoroughness. Each todo has content, status \
         (pending/in_progress/completed), and activeForm (shown when in progress)."
    }

    fn input_schema(&self) -> Value {
        json!({
            "type": "object",
            "required": ["todos"],
            "properties": {
                "todos": {
                    "type": "array",
                    "description": "The updated todo list",
                    "items": {
                        "type": "object",
                        "required": ["content", "status", "activeForm"],
                        "properties": {
                            "content": {
                                "type": "string",
                                "minLength": 1,
                                "description": "The task description (imperative form)"
                            },
                            "status": {
                                "type": "string",
                                "enum": ["pending", "in_progress", "completed"],
                                "description": "Current status of the task"
                            },
                            "activeForm": {
                                "type": "string",
                                "minLength": 1,
                                "description": "Present continuous form shown during execution"
                            }
                        }
                    }
                }
            }
        })
    }

    async fn execute(&self, input: Value, _context: &ToolContext) -> ToolResult {
        // Parse input
        let params: TodoWriteInput = match serde_json::from_value(input) {
            Ok(p) => p,
            Err(e) => return ToolResult::error(format!("Invalid input: {}", e)),
        };

        // Validate todos
        for (i, todo) in params.todos.iter().enumerate() {
            if todo.content.trim().is_empty() {
                return ToolResult::error(format!("Todo {} has empty content", i + 1));
            }
            if todo.active_form.trim().is_empty() {
                return ToolResult::error(format!("Todo {} has empty activeForm", i + 1));
            }
            // Validate status
            let valid_statuses = ["pending", "in_progress", "completed"];
            if !valid_statuses.contains(&todo.status.as_str()) {
                return ToolResult::error(format!(
                    "Todo {} has invalid status '{}'. Must be one of: {:?}",
                    i + 1,
                    todo.status,
                    valid_statuses
                ));
            }
        }

        // Count statuses
        let pending = params
            .todos
            .iter()
            .filter(|t| t.status == "pending")
            .count();
        let in_progress = params
            .todos
            .iter()
            .filter(|t| t.status == "in_progress")
            .count();
        let completed = params
            .todos
            .iter()
            .filter(|t| t.status == "completed")
            .count();

        // Update the todo list
        self.todo_list.update(params.todos.clone()).await;

        // Format output
        let formatted = self.todo_list.format().await;

        let output = format!(
            "Todos updated successfully.\n\n{}\n\nSummary: {} pending, {} in progress, {} completed",
            formatted, pending, in_progress, completed
        );

        ToolResult::success(output).with_metadata(json!({
            "total": params.todos.len(),
            "pending": pending,
            "in_progress": in_progress,
            "completed": completed
        }))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use tempfile::TempDir;

    #[test]
    fn test_todo_write_tool_properties() {
        let tool = TodoWriteTool::new();
        assert_eq!(tool.name(), "TodoWrite");
        assert!(tool.description().contains("task"));
    }

    #[test]
    fn test_todo_write_input_schema() {
        let tool = TodoWriteTool::new();
        let schema = tool.input_schema();

        assert_eq!(schema["type"], "object");
        assert!(schema["properties"]["todos"].is_object());
        assert!(
            schema["required"]
                .as_array()
                .unwrap()
                .contains(&json!("todos"))
        );
    }

    #[tokio::test]
    async fn test_todo_write_create_list() {
        let temp_dir = TempDir::new().unwrap();
        let tool = TodoWriteTool::new();
        let context = ToolContext::new("test", temp_dir.path());

        let result = tool
            .execute(
                json!({
                    "todos": [
                        {
                            "content": "Implement feature",
                            "status": "in_progress",
                            "activeForm": "Implementing feature"
                        },
                        {
                            "content": "Write tests",
                            "status": "pending",
                            "activeForm": "Writing tests"
                        }
                    ]
                }),
                &context,
            )
            .await;

        assert!(!result.is_error);
        assert!(result.content.contains("Todos updated"));
        assert!(result.content.contains("1 pending"));
        assert!(result.content.contains("1 in progress"));
    }

    #[tokio::test]
    async fn test_todo_write_update_status() {
        let temp_dir = TempDir::new().unwrap();
        let tool = TodoWriteTool::new();
        let context = ToolContext::new("test", temp_dir.path());

        // First create
        tool.execute(
            json!({
                "todos": [
                    {
                        "content": "Task 1",
                        "status": "pending",
                        "activeForm": "Doing task 1"
                    }
                ]
            }),
            &context,
        )
        .await;

        // Then update to completed
        let result = tool
            .execute(
                json!({
                    "todos": [
                        {
                            "content": "Task 1",
                            "status": "completed",
                            "activeForm": "Doing task 1"
                        }
                    ]
                }),
                &context,
            )
            .await;

        assert!(!result.is_error);
        assert!(result.content.contains("1 completed"));
    }

    #[tokio::test]
    async fn test_todo_write_invalid_status() {
        let temp_dir = TempDir::new().unwrap();
        let tool = TodoWriteTool::new();
        let context = ToolContext::new("test", temp_dir.path());

        let result = tool
            .execute(
                json!({
                    "todos": [
                        {
                            "content": "Task",
                            "status": "invalid_status",
                            "activeForm": "Doing task"
                        }
                    ]
                }),
                &context,
            )
            .await;

        assert!(result.is_error);
        assert!(result.content.contains("invalid status"));
    }

    #[tokio::test]
    async fn test_todo_write_empty_content() {
        let temp_dir = TempDir::new().unwrap();
        let tool = TodoWriteTool::new();
        let context = ToolContext::new("test", temp_dir.path());

        let result = tool
            .execute(
                json!({
                    "todos": [
                        {
                            "content": "",
                            "status": "pending",
                            "activeForm": "Doing task"
                        }
                    ]
                }),
                &context,
            )
            .await;

        assert!(result.is_error);
        assert!(result.content.contains("empty content"));
    }

    #[test]
    fn test_todo_status() {
        assert_eq!(TodoStatus::from_str("pending"), TodoStatus::Pending);
        assert_eq!(TodoStatus::from_str("in_progress"), TodoStatus::InProgress);
        assert_eq!(TodoStatus::from_str("completed"), TodoStatus::Completed);
        assert_eq!(TodoStatus::from_str("unknown"), TodoStatus::Pending);

        assert_eq!(TodoStatus::Pending.as_str(), "pending");
        assert_eq!(TodoStatus::InProgress.symbol(), "");
    }

    #[tokio::test]
    async fn test_shared_todo_list() {
        let shared_list = Arc::new(TodoList::new());
        let tool1 = TodoWriteTool::with_shared_list(shared_list.clone());
        let tool2 = TodoWriteTool::with_shared_list(shared_list.clone());

        let temp_dir = TempDir::new().unwrap();
        let context = ToolContext::new("test", temp_dir.path());

        // Update via tool1
        tool1
            .execute(
                json!({
                    "todos": [
                        {
                            "content": "Shared task",
                            "status": "pending",
                            "activeForm": "Doing shared task"
                        }
                    ]
                }),
                &context,
            )
            .await;

        // Verify via tool2's shared list
        let items = tool2.todo_list().get_all().await;
        assert_eq!(items.len(), 1);
        assert_eq!(items[0].content, "Shared task");
    }
}