You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Read code memory tool definition - reads from implement_code_summary.md"""
64
64
return {
65
65
"name": "read_code_mem",
66
-
"description": "Check if file summary exists in implement_code_summary.md before reading actual file. Returns summary if available, otherwise recommends using read_file.",
66
+
"description": "Check if file summaries exist in implement_code_summary.md for multiple files in a single call. Returns summaries for all requested files if available.",
67
67
"input_schema": {
68
68
"type": "object",
69
69
"properties": {
70
-
"file_path": {
71
-
"type": "string",
72
-
"description": "File path to check for summary information in implement_code_summary.md",
70
+
"file_paths": {
71
+
"type": "array",
72
+
"items": {"type": "string"},
73
+
"description": "List of file paths to check for summary information in implement_code_summary.md",
"""Read code memory tool definition - reads from implement_code_summary.md"""
65
65
return {
66
66
"name": "read_code_mem",
67
-
"description": "Check if file summary exists in implement_code_summary.md before reading actual file. Returns summary if available, otherwise recommends using read_file.",
67
+
"description": "Check if file summaries exist in implement_code_summary.md for multiple files in a single call. Returns summaries for all requested files if available.",
68
68
"input_schema": {
69
69
"type": "object",
70
70
"properties": {
71
-
"file_path": {
72
-
"type": "string",
73
-
"description": "File path to check for summary information in implement_code_summary.md",
71
+
"file_paths": {
72
+
"type": "array",
73
+
"items": {"type": "string"},
74
+
"description": "List of file paths to check for summary information in implement_code_summary.md",
0 commit comments