feat: add bash_repair, context_manager, json_repair, python_repair, and r_diff modules with Makefile integration

This commit is contained in:
2026-01-28 23:38:21 +00:00
parent 216627e777
commit 20d92682b2
22 changed files with 2885 additions and 4 deletions
+9 -1
View File
@@ -18,6 +18,7 @@ SRC_CORE = $(SRCDIR)/r_error.c \
$(SRCDIR)/agent.c \
$(SRCDIR)/bash_executor.c \
$(SRCDIR)/context_manager.c \
$(SRCDIR)/r_diff.c \
$(SRCDIR)/main.c
SRC_TOOLS = $(TOOLSDIR)/tools_init.c \
@@ -26,7 +27,14 @@ SRC_TOOLS = $(TOOLSDIR)/tools_init.c \
$(TOOLSDIR)/tool_db.c \
$(TOOLSDIR)/tool_http.c \
$(TOOLSDIR)/tool_python.c \
$(TOOLSDIR)/tool_indexer.c
$(TOOLSDIR)/tool_indexer.c \
$(TOOLSDIR)/tool_code.c \
$(TOOLSDIR)/tool_file_edit.c \
$(TOOLSDIR)/tool_system.c \
$(TOOLSDIR)/tool_network.c \
$(TOOLSDIR)/tool_dns.c \
$(TOOLSDIR)/tool_automation.c \
$(TOOLSDIR)/tool_csv.c
SRC = $(SRC_CORE) $(SRC_TOOLS)