pi_agent_rust 0.1.18

High-performance AI coding agent CLI - Rust port of Pi Agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- src/tools.rs
+++ src/tools.rs
@@ -3875,5 +3875,11 @@
 struct FindInput {
     pattern: String,
     path: Option<String>,
     limit: Option<usize>,
 }
+
+#[derive(Debug)]
+struct FindEntry {
+    rel: String,
+    modified: Option<SystemTime>,
+}