-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtool_file.py
More file actions
934 lines (816 loc) · 35.9 KB
/
tool_file.py
File metadata and controls
934 lines (816 loc) · 35.9 KB
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
import argparse
import base64
import io
import os
import re
import sys
from pathlib import Path
from typing import Any, Optional, Union
from PIL import Image
from agent_base.tools.tooling import ToolBase, normalize_base_root, validate_tool_path, workspace_root
from agent_base.utils import PROJECT_ROOT, load_dotenv, read_text_lossy
IMAGE_SUFFIXES = {
".png",
".jpg",
".jpeg",
".gif",
".bmp",
".webp",
".tif",
".tiff",
}
DEFAULT_LLM_IMAGE_MAX_EDGE = 1568
DEFAULT_LLM_IMAGE_MAX_BYTES = 512 * 1024
DEFAULT_LLM_IMAGE_JPEG_QUALITY = 85
MIN_LLM_IMAGE_JPEG_QUALITY = 45
MIN_LLM_IMAGE_EDGE = 256
DEFAULT_LOCAL_MAX_CHARS = 16384
DEFAULT_GLOB_MAX_RESULTS = 200
DEFAULT_GREP_MAX_RESULTS = 100
DEFAULT_GREP_MAX_CHARS = DEFAULT_LOCAL_MAX_CHARS
def resolve_file_path(path_value: str, *, base_root: Optional[Path] = None) -> Path:
path = Path(path_value).expanduser()
root = normalize_base_root(base_root)
if path.is_absolute():
return validate_tool_path(path, "Read access", base_root=root)
direct_candidate = root / path
if direct_candidate.exists():
return validate_tool_path(direct_candidate.resolve(), "Read access", base_root=root)
if base_root is None and path.exists():
return validate_tool_path(path.resolve(), "Read access", base_root=root)
return validate_tool_path((root / path).resolve(strict=False), "Read access", base_root=root)
def resolve_search_root(path_value: str, *, base_root: Optional[Path] = None) -> Path:
path = Path(path_value).expanduser()
root = normalize_base_root(base_root)
if path.is_absolute():
return validate_tool_path(path, "Search access", base_root=root)
return validate_tool_path(root / path, "Search access", base_root=root)
def _is_probably_binary(path: Path, *, sample_size: int = 4096) -> bool:
try:
sample = path.read_bytes()[:sample_size]
except OSError:
return False
return b"\x00" in sample
class Read(ToolBase):
name = "Read"
description = "Read a local text file with support for partial line-range reads and output truncation."
parameters = {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The local file path to read.",
},
"start_line": {
"type": "integer",
"description": "Optional 1-based start line for partial reading. Default is 1.",
},
"end_line": {
"type": "integer",
"description": "Optional 1-based end line for partial reading. If omitted, read to the end.",
},
"max_chars": {
"type": "integer",
"description": "Maximum number of characters to return. Default is 16384.",
},
},
"required": ["path"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def _read_text_file(self, path: Path) -> str:
return read_text_lossy(path)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[Read] {exc}"
base_root = kwargs.get("workspace_root")
start_line_raw = params.get("start_line", 1)
end_line_raw = params.get("end_line")
max_chars_raw = params.get("max_chars", DEFAULT_LOCAL_MAX_CHARS)
try:
start_line = int(start_line_raw)
end_line = end_line_raw
end_line = int(end_line) if end_line is not None else None
max_chars = int(max_chars_raw)
except (TypeError, ValueError):
return "[Read] start_line, end_line, and max_chars must be integers when provided."
try:
path = resolve_file_path(params["path"], base_root=base_root)
except ValueError as exc:
return f"[Read] Blocked or invalid path: {exc}"
if not path.exists():
return f"[Read] File not found: {path}"
if not path.is_file():
return f"[Read] Path is not a file: {path}"
if path.suffix.lower() == ".pdf":
return f"[Read] PDF files are not supported by Read. Use ReadPDF instead: {path}"
if path.suffix.lower() in IMAGE_SUFFIXES:
return f"[Read] Image files are not supported by Read. Use ReadImage instead: {path}"
if start_line < 1:
return "[Read] start_line must be >= 1."
if end_line is not None and end_line < start_line:
return "[Read] end_line must be >= start_line."
if max_chars <= 0:
return "[Read] max_chars must be > 0."
try:
text = self._read_text_file(path)
except OSError as exc:
return f"[Read] Error reading file: {exc}"
lines = text.splitlines()
selected = lines[start_line - 1:end_line]
content = "\n".join(selected)
truncated = False
if len(content) > max_chars:
content = content[:max_chars]
truncated = True
meta = [
f"path: {path}",
"source_type: text",
f"start_line: {start_line}",
f"end_line: {end_line if end_line is not None else len(lines)}",
f"total_lines: {len(lines)}",
f"truncated: {str(truncated).lower()}",
]
return "\n".join(meta) + "\ncontent:\n" + content
class ReadPDF(ToolBase):
name = "ReadPDF"
description = "Read a local PDF file and return extracted text. When the PDF parser extracts local image assets, also return their local paths so downstream steps can inspect the actual figure files with ReadImage."
parameters = {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The local PDF path to read. Relative paths are resolved from the current workspace.",
},
"max_chars": {
"type": "integer",
"description": "Maximum number of characters to return. Default is 16384.",
},
"max_image_paths": {
"type": "integer",
"description": "Maximum number of extracted image paths to list. Default is 20.",
},
},
"required": ["path"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[ReadPDF] {exc}"
base_root = kwargs.get("workspace_root")
try:
max_chars = int(params.get("max_chars", DEFAULT_LOCAL_MAX_CHARS))
max_image_paths = int(params.get("max_image_paths", 20))
except (TypeError, ValueError):
return "[ReadPDF] max_chars and max_image_paths must be integers."
try:
path = resolve_file_path(params["path"], base_root=base_root)
except ValueError as exc:
return f"[ReadPDF] Blocked or invalid path: {exc}"
if not path.exists():
return f"[ReadPDF] File not found: {path}"
if not path.is_file():
return f"[ReadPDF] Path is not a file: {path}"
if path.suffix.lower() != ".pdf":
return f"[ReadPDF] File is not a PDF: {path}"
if max_chars <= 0:
return "[ReadPDF] max_chars must be > 0."
if max_image_paths <= 0:
return "[ReadPDF] max_image_paths must be > 0."
try:
from structai import read_pdf as structai_read_pdf
except ImportError:
return "[ReadPDF] Missing required dependency: structai. Install requirements and configure MINERU_TOKEN to enable PDF reading."
try:
result = structai_read_pdf(str(path))
if isinstance(result, list):
result = result[0] if result else None
if not isinstance(result, dict):
raise ValueError(f"unexpected pdf result type: {type(result)}")
text = result.get("text", "")
if not isinstance(text, str):
raise ValueError("PDF text must be a string")
raw_img_paths = result.get("img_paths", []) or []
if not isinstance(raw_img_paths, list):
raise ValueError("PDF img_paths must be a list when present")
if not text.strip() and not raw_img_paths:
raise ValueError("PDF text is empty and no extracted images were found")
except (OSError, ValueError, TypeError) as exc:
return f"[ReadPDF] Error reading PDF: {exc}"
resolved_img_paths: list[str] = []
for raw_img_path in raw_img_paths:
if not isinstance(raw_img_path, str) or not raw_img_path.strip():
continue
candidate = Path(raw_img_path).expanduser()
if not candidate.is_absolute():
candidate = (path.parent / candidate).resolve()
try:
validated = validate_tool_path(candidate, "ReadPDF extracted image access", base_root=base_root)
except ValueError:
continue
resolved_img_paths.append(str(validated))
truncated = len(text) > max_chars
content = text[:max_chars] if truncated else text
line_count = len(text.splitlines())
listed_img_paths = resolved_img_paths[:max_image_paths]
img_paths_truncated = len(resolved_img_paths) > len(listed_img_paths)
meta = [
f"path: {path}",
"source_type: pdf",
f"total_lines: {line_count}",
f"truncated: {str(truncated).lower()}",
f"image_count: {len(resolved_img_paths)}",
f"image_paths_listed: {len(listed_img_paths)}",
f"image_paths_truncated: {str(img_paths_truncated).lower()}",
]
output = "\n".join(meta)
if listed_img_paths:
output += "\nimage_paths:\n" + "\n".join(listed_img_paths)
return output + "\ncontent:\n" + content
class ReadImage(ToolBase):
name = "ReadImage"
description = "Read a local image file and return metadata. In the main agent runtime, the image is attached to the llm api request as an image content part instead of being inlined as ordinary conversation text."
parameters = {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The local image path to read. Relative paths are resolved from the current workspace.",
},
},
"required": ["path"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def _build_llm_attachment(self, image: Image.Image) -> tuple[bytes, int, int]:
max_edge = int(os.getenv("LLM_IMAGE_MAX_EDGE", str(DEFAULT_LLM_IMAGE_MAX_EDGE)))
max_bytes = int(os.getenv("LLM_IMAGE_MAX_BYTES", str(DEFAULT_LLM_IMAGE_MAX_BYTES)))
quality = int(os.getenv("LLM_IMAGE_JPEG_QUALITY", str(DEFAULT_LLM_IMAGE_JPEG_QUALITY)))
attachment = image.copy()
if max(attachment.size) > max_edge:
attachment.thumbnail((max_edge, max_edge), Image.Resampling.LANCZOS)
if attachment.mode not in {"RGB", "L"}:
attachment = attachment.convert("RGB")
payload = b""
while True:
current_quality = quality
while True:
buffer = io.BytesIO()
attachment.save(buffer, format="JPEG", quality=current_quality, optimize=True)
payload = buffer.getvalue()
if len(payload) <= max_bytes:
return payload, attachment.size[0], attachment.size[1]
if current_quality <= MIN_LLM_IMAGE_JPEG_QUALITY:
break
current_quality = max(current_quality - 10, MIN_LLM_IMAGE_JPEG_QUALITY)
width, height = attachment.size
if max(width, height) <= MIN_LLM_IMAGE_EDGE:
raise ValueError(
f"compressed image attachment still exceeds LLM_IMAGE_MAX_BYTES={max_bytes}"
)
shrink_ratio = 0.85
next_width = max(int(width * shrink_ratio), MIN_LLM_IMAGE_EDGE)
next_height = max(int(height * shrink_ratio), MIN_LLM_IMAGE_EDGE)
if (next_width, next_height) == (width, height):
raise ValueError(
f"compressed image attachment still exceeds LLM_IMAGE_MAX_BYTES={max_bytes}"
)
attachment = attachment.resize((next_width, next_height), Image.Resampling.LANCZOS)
def _read_image_artifact(self, params: Union[str, dict], **kwargs) -> Union[str, dict[str, Any]]:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[ReadImage] {exc}"
base_root = kwargs.get("workspace_root")
try:
path = resolve_file_path(params["path"], base_root=base_root)
except ValueError as exc:
return f"[ReadImage] Blocked or invalid path: {exc}"
if not path.exists():
return f"[ReadImage] File not found: {path}"
if not path.is_file():
return f"[ReadImage] Path is not a file: {path}"
try:
with Image.open(path) as image:
image.load()
format_name = image.format or "unknown"
width, height = image.size
mode = image.mode
image_bytes = path.read_bytes()
attachment_bytes, attachment_width, attachment_height = self._build_llm_attachment(image)
except (OSError, ValueError) as exc:
return f"[ReadImage] Error reading image: {exc}"
mime_type = Image.MIME.get(format_name.upper(), None) if isinstance(format_name, str) else None
if not mime_type:
suffix = path.suffix.lower()
if suffix in {".jpg", ".jpeg"}:
mime_type = "image/jpeg"
elif suffix == ".png":
mime_type = "image/png"
elif suffix == ".gif":
mime_type = "image/gif"
elif suffix == ".webp":
mime_type = "image/webp"
elif suffix in {".tif", ".tiff"}:
mime_type = "image/tiff"
elif suffix == ".bmp":
mime_type = "image/bmp"
else:
mime_type = "application/octet-stream"
encoded = base64.b64encode(attachment_bytes).decode("ascii")
data_url = f"data:image/jpeg;base64,{encoded}"
return {
"kind": "image_tool_result",
"path": str(path),
"source_type": "image",
"format": format_name,
"mode": mode,
"width": width,
"height": height,
"mime_type": mime_type,
"byte_count": len(image_bytes),
"llm_attachment_format": "JPEG",
"llm_attachment_width": attachment_width,
"llm_attachment_height": attachment_height,
"llm_attachment_byte_count": len(attachment_bytes),
"data_url": data_url,
}
@staticmethod
def _metadata_text(artifact: dict[str, Any]) -> str:
meta = [
f"path: {artifact['path']}",
f"source_type: {artifact['source_type']}",
f"format: {artifact['format']}",
f"mime_type: {artifact['mime_type']}",
f"mode: {artifact['mode']}",
f"width: {artifact['width']}",
f"height: {artifact['height']}",
f"byte_count: {artifact['byte_count']}",
f"llm_attachment_format: {artifact['llm_attachment_format']}",
f"llm_attachment_width: {artifact['llm_attachment_width']}",
f"llm_attachment_height: {artifact['llm_attachment_height']}",
f"llm_attachment_byte_count: {artifact['llm_attachment_byte_count']}",
"llm_image_attached: true",
]
return "\n".join(meta)
def call(self, params: Union[str, dict], **kwargs) -> str:
artifact = self._read_image_artifact(params, **kwargs)
if isinstance(artifact, str):
return artifact
return self._metadata_text(artifact)
def call_for_llm(self, params: Union[str, dict], **kwargs) -> Union[str, dict[str, Any]]:
artifact = self._read_image_artifact(params, **kwargs)
if isinstance(artifact, str):
return artifact
return {
"kind": "image_tool_result",
"text": self._metadata_text(artifact),
"path": artifact["path"],
"source_type": artifact["source_type"],
"format": artifact["format"],
"mime_type": artifact["mime_type"],
"mode": artifact["mode"],
"width": artifact["width"],
"height": artifact["height"],
"byte_count": artifact["byte_count"],
"llm_attachment_format": artifact["llm_attachment_format"],
"llm_attachment_width": artifact["llm_attachment_width"],
"llm_attachment_height": artifact["llm_attachment_height"],
"llm_attachment_byte_count": artifact["llm_attachment_byte_count"],
"image_url": artifact["data_url"],
}
class Glob(ToolBase):
name = "Glob"
description = "Find local files or directories by glob pattern inside the workspace."
parameters = {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "A pathlib-style glob pattern such as '**/*.py' or '*.md'.",
},
"path": {
"type": "string",
"description": "Optional search root. Defaults to the current workspace root.",
},
"include_dirs": {
"type": "boolean",
"description": "Whether to include directories in results. Default is false.",
},
"max_results": {
"type": "integer",
"description": "Maximum number of matched paths to return. Default is 200.",
},
},
"required": ["pattern"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[Glob] {exc}"
base_root = kwargs.get("workspace_root")
pattern = params["pattern"].strip()
if not pattern:
return "[Glob] pattern must be a non-empty string."
search_root_value = str(params.get("path", "."))
include_dirs = bool(params.get("include_dirs", False))
try:
max_results = int(params.get("max_results", DEFAULT_GLOB_MAX_RESULTS))
except (TypeError, ValueError):
return "[Glob] max_results must be an integer."
if max_results <= 0:
return "[Glob] max_results must be > 0."
try:
search_root = resolve_search_root(search_root_value, base_root=base_root)
except ValueError as exc:
return f"[Glob] Blocked or invalid path: {exc}"
if not search_root.exists():
return f"[Glob] Search root not found: {search_root}"
if not search_root.is_dir():
return f"[Glob] Search root is not a directory: {search_root}"
try:
raw_matches = sorted(search_root.glob(pattern))
except (OSError, ValueError) as exc:
return f"[Glob] Invalid glob pattern or filesystem error: {exc}"
matches: list[str] = []
truncated = False
for candidate in raw_matches:
try:
resolved = validate_tool_path(candidate.resolve(strict=False), "Glob access", base_root=base_root or search_root)
except ValueError:
continue
if resolved.is_dir() and not include_dirs:
continue
if resolved.is_file() or (include_dirs and resolved.is_dir()):
matches.append(str(resolved))
if len(matches) >= max_results:
truncated = len(raw_matches) > max_results
break
meta = [
f"root: {search_root}",
f"pattern: {pattern}",
f"include_dirs: {str(include_dirs).lower()}",
f"match_count: {len(matches)}",
f"truncated: {str(truncated).lower()}",
]
if not matches:
return "\n".join(meta) + "\nresults:\n"
return "\n".join(meta) + "\nresults:\n" + "\n".join(matches)
class Grep(ToolBase):
name = "Grep"
description = "Search local text files for a regex pattern and return matching lines with file paths and line numbers."
parameters = {
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "A regular expression pattern to search for.",
},
"path": {
"type": "string",
"description": "Optional file or directory path to search. Defaults to the current workspace root.",
},
"glob": {
"type": "string",
"description": "Optional pathlib-style glob filter used when searching a directory. Default is '**/*'.",
},
"case_sensitive": {
"type": "boolean",
"description": "Whether the regex match should be case-sensitive. Default is false.",
},
"max_results": {
"type": "integer",
"description": "Maximum number of matching lines to return. Default is 100.",
},
"max_chars": {
"type": "integer",
"description": "Maximum number of characters to return. Default is 16384.",
},
},
"required": ["pattern"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def _iter_candidate_files(self, root: Path, glob_pattern: str, *, base_root: Optional[Path]) -> list[Path]:
if root.is_file():
return [root]
candidates: list[Path] = []
for candidate in root.glob(glob_pattern):
try:
resolved = validate_tool_path(candidate.resolve(strict=False), "Grep access", base_root=base_root or root)
except ValueError:
continue
if resolved.is_file():
candidates.append(resolved)
return sorted(candidates)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
except ValueError as exc:
return f"[Grep] {exc}"
base_root = kwargs.get("workspace_root")
pattern = params["pattern"].strip()
if not pattern:
return "[Grep] pattern must be a non-empty string."
search_root_value = str(params.get("path", "."))
glob_pattern = str(params.get("glob", "**/*")).strip() or "**/*"
case_sensitive = bool(params.get("case_sensitive", False))
try:
max_results = int(params.get("max_results", DEFAULT_GREP_MAX_RESULTS))
max_chars = int(params.get("max_chars", DEFAULT_GREP_MAX_CHARS))
except (TypeError, ValueError):
return "[Grep] max_results and max_chars must be integers."
if max_results <= 0:
return "[Grep] max_results must be > 0."
if max_chars <= 0:
return "[Grep] max_chars must be > 0."
flags = 0 if case_sensitive else re.IGNORECASE
try:
compiled = re.compile(pattern, flags)
except re.error as exc:
return f"[Grep] Invalid regex pattern: {exc}"
try:
search_root = resolve_search_root(search_root_value, base_root=base_root)
except ValueError as exc:
return f"[Grep] Blocked or invalid path: {exc}"
if not search_root.exists():
return f"[Grep] Search root not found: {search_root}"
if not search_root.is_file() and not search_root.is_dir():
return f"[Grep] Search root is not a file or directory: {search_root}"
matches: list[str] = []
files_scanned = 0
truncated = False
for candidate in self._iter_candidate_files(search_root, glob_pattern, base_root=base_root):
if candidate.suffix.lower() == ".pdf" or candidate.suffix.lower() in IMAGE_SUFFIXES:
continue
if _is_probably_binary(candidate):
continue
try:
with candidate.open("r", encoding="utf-8", errors="replace") as handle:
files_scanned += 1
for line_index, raw_line in enumerate(handle, start=1):
line = raw_line.rstrip("\n")
if not compiled.search(line):
continue
entry = f"{candidate}:{line_index}: {line}"
projected_length = len("\n".join(matches + [entry]))
if projected_length > max_chars:
truncated = True
break
matches.append(entry)
if len(matches) >= max_results:
truncated = True
break
except OSError:
continue
if truncated:
break
body = "\n".join(matches)
meta = [
f"root: {search_root}",
f"pattern: {pattern}",
f"glob: {glob_pattern}",
f"case_sensitive: {str(case_sensitive).lower()}",
f"files_scanned: {files_scanned}",
f"match_count: {len(matches)}",
f"truncated: {str(truncated).lower()}",
]
if not body:
return "\n".join(meta) + "\nresults:\n"
return "\n".join(meta) + "\nresults:\n" + body
class Write(ToolBase):
name = "Write"
description = "Create a local text file with full content. Parent directories are created automatically."
parameters = {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The local file path to create.",
},
"content": {
"type": "string",
"description": "The full file content to write.",
},
"overwrite": {
"type": "boolean",
"description": "Whether to overwrite an existing file. Default is false.",
},
},
"required": ["path", "content"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
base_root = kwargs.get("workspace_root") or workspace_root()
path = validate_tool_path(params["path"], "Write access", base_root=base_root)
except ValueError as exc:
return f"[Write] {exc}"
content = params["content"]
overwrite = bool(params.get("overwrite", False))
if path.exists() and not overwrite:
return f"[Write] File already exists and overwrite is false: {path}"
try:
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(content, encoding="utf-8")
return f"[Write] Wrote file: {path}"
except OSError as exc:
return f"[Write] Error writing file: {exc}"
class Edit(ToolBase):
name = "Edit"
description = "Edit a local text file using unified diff style hunks. The patch must describe the exact line-level changes to apply."
parameters = {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "The local file path to edit.",
},
"patch": {
"type": "string",
"description": "A unified diff style patch containing one or more hunks for this file. Include hunk headers such as @@ -1,2 +1,2 @@.",
},
},
"required": ["path", "patch"],
}
def __init__(self, cfg: Optional[dict] = None):
super().__init__(cfg)
def _parse_unified_patch(self, patch_text: str) -> list[dict]:
lines = patch_text.splitlines()
hunks: list[dict] = []
current_hunk = None
for line in lines:
if line.startswith("--- ") or line.startswith("+++ "):
continue
if line.startswith("@@ "):
if current_hunk is not None:
hunks.append(current_hunk)
current_hunk = {"header": line, "lines": []}
continue
if current_hunk is None:
continue
if line.startswith((" ", "+", "-")):
current_hunk["lines"].append((line[:1], line[1:]))
continue
if line == r"\ No newline at end of file":
continue
raise ValueError(f"unsupported patch line: {line}")
if current_hunk is not None:
hunks.append(current_hunk)
if not hunks:
raise ValueError("no patch hunks found")
return hunks
def _apply_hunks(self, original_text: str, hunks: list[dict]) -> tuple[str, int]:
original_lines = original_text.splitlines()
original_endswith_newline = original_text.endswith("\n")
output_lines: list[str] = []
cursor = 0
for hunk_index, hunk in enumerate(hunks, start=1):
hunk_lines = hunk["lines"]
old_block = []
new_block = []
for prefix, content in hunk_lines:
if prefix in {" ", "-"}:
old_block.append(content)
if prefix in {" ", "+"}:
new_block.append(content)
start_pos = None
max_start = len(original_lines) - len(old_block)
for pos in range(cursor, max_start + 1):
if original_lines[pos:pos + len(old_block)] == old_block:
start_pos = pos
break
if start_pos is None:
old_preview = "\n".join(old_block)
raise ValueError(f"hunk #{hunk_index} context not found:\n{old_preview}")
output_lines.extend(original_lines[cursor:start_pos])
output_lines.extend(new_block)
cursor = start_pos + len(old_block)
output_lines.extend(original_lines[cursor:])
updated_text = "\n".join(output_lines)
if original_endswith_newline:
updated_text += "\n"
return updated_text, len(hunks)
def call(self, params: Union[str, dict], **kwargs) -> str:
try:
params = self.parse_json_args(params)
base_root = kwargs.get("workspace_root") or workspace_root()
path = validate_tool_path(params["path"], "Edit access", base_root=base_root)
except ValueError as exc:
return f"[Edit] {exc}"
patch_text = str(params["patch"])
if not path.exists():
return f"[Edit] File not found: {path}"
if not path.is_file():
return f"[Edit] Path is not a file: {path}"
if not patch_text.strip():
return "[Edit] 'patch' must be a non-empty unified diff string."
try:
text = read_text_lossy(path)
except OSError as exc:
return f"[Edit] Error reading file: {exc}"
try:
hunks = self._parse_unified_patch(patch_text)
updated, applied = self._apply_hunks(text, hunks)
except ValueError as exc:
return f"[Edit] Failed to apply patch: {exc}"
if updated == text:
return f"[Edit] No changes applied: {path}"
try:
path.write_text(updated, encoding="utf-8")
return f"[Edit] Updated file: {path}; applied_hunks: {applied}"
except OSError as exc:
return f"[Edit] Error writing file: {exc}"
def main(argv: Optional[list[str]] = None) -> int:
parser = argparse.ArgumentParser(description="Run local file tools directly.")
subparsers = parser.add_subparsers(dest="tool", required=True)
read_parser = subparsers.add_parser("read", help="Run Read on a text file.")
read_parser.add_argument("path")
read_parser.add_argument("--start-line", type=int, default=1)
read_parser.add_argument("--end-line", type=int)
read_parser.add_argument("--max-chars", type=int, default=DEFAULT_LOCAL_MAX_CHARS)
pdf_parser = subparsers.add_parser("pdf", help="Run ReadPDF on a PDF file.")
pdf_parser.add_argument("path")
pdf_parser.add_argument("--max-chars", type=int, default=DEFAULT_LOCAL_MAX_CHARS)
image_parser = subparsers.add_parser("image", help="Run ReadImage on an image file.")
image_parser.add_argument("path")
glob_parser = subparsers.add_parser("glob", help="Run Glob to find local files or directories.")
glob_parser.add_argument("pattern")
glob_parser.add_argument("--path", default=".")
glob_parser.add_argument("--include-dirs", action="store_true")
glob_parser.add_argument("--max-results", type=int, default=DEFAULT_GLOB_MAX_RESULTS)
grep_parser = subparsers.add_parser("grep", help="Run Grep to search local text files.")
grep_parser.add_argument("pattern")
grep_parser.add_argument("--path", default=".")
grep_parser.add_argument("--glob", default="**/*")
grep_parser.add_argument("--case-sensitive", action="store_true")
grep_parser.add_argument("--max-results", type=int, default=DEFAULT_GREP_MAX_RESULTS)
grep_parser.add_argument("--max-chars", type=int, default=DEFAULT_GREP_MAX_CHARS)
write_parser = subparsers.add_parser("write", help="Run Write on a text file.")
write_parser.add_argument("path")
write_parser.add_argument("content")
write_parser.add_argument("--overwrite", action="store_true")
edit_parser = subparsers.add_parser("edit", help="Run Edit on a text file.")
edit_parser.add_argument("path")
edit_parser.add_argument("patch")
parser.add_argument("--workspace-root", help="Optional workspace root override.")
args = parser.parse_args(argv)
load_dotenv(PROJECT_ROOT / ".env")
workspace_root = Path(args.workspace_root).expanduser().resolve() if args.workspace_root else None
if args.tool == "read":
result = Read().call(
{
"path": args.path,
"start_line": args.start_line,
"end_line": args.end_line,
"max_chars": args.max_chars,
},
workspace_root=workspace_root,
)
elif args.tool == "pdf":
result = ReadPDF().call({"path": args.path, "max_chars": args.max_chars}, workspace_root=workspace_root)
elif args.tool == "image":
result = ReadImage().call({"path": args.path}, workspace_root=workspace_root)
elif args.tool == "glob":
result = Glob().call(
{
"pattern": args.pattern,
"path": args.path,
"include_dirs": args.include_dirs,
"max_results": args.max_results,
},
workspace_root=workspace_root,
)
elif args.tool == "grep":
result = Grep().call(
{
"pattern": args.pattern,
"path": args.path,
"glob": args.glob,
"case_sensitive": args.case_sensitive,
"max_results": args.max_results,
"max_chars": args.max_chars,
},
workspace_root=workspace_root,
)
elif args.tool == "write":
result = Write().call(
{"path": args.path, "content": args.content, "overwrite": args.overwrite},
workspace_root=workspace_root,
)
else:
result = Edit().call({"path": args.path, "patch": args.patch}, workspace_root=workspace_root)
print(result)
return 0
if __name__ == "__main__":
raise SystemExit(main(sys.argv[1:]))