From 3e3a42847a106497edd8fe9e494715fc56b26bda Mon Sep 17 00:00:00 2001 From: Victor Vargas Date: Tue, 30 Jun 2026 00:41:59 -0700 Subject: [PATCH] fix: routers in documents and referents --- docs/architecture.md | 7 +++++-- docs/phase2.md | 2 +- go.mod | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/architecture.md b/docs/architecture.md index e8bdf37..08f73c1 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -1,4 +1,4 @@ -# 🏗️ rony-llm-agent — Architecture +# 🏗️ Rony LLM Agent — Architecture **Versión:** 1.0 **Autor:** Victor Hugo Vargas @@ -9,6 +9,9 @@ > - [`README.md`](./README.md) — Overview de la librería > - [`components.md`](./components.md) — Referencia detallada por paquete > - [`phase2.md`](./phase2.md) — Features avanzadas (MCP, RAG completo, Skills, etc.) +> - [`../../METHODOLOGY.md`](../../METHODOLOGY.md) — Cómo construimos (SDD + DDD + Hexagonal) +> +> 📐 **Metodología:** Esta librería sigue el enfoque **SDD + DDD + Hexagonal Architecture**. Ver [`METHODOLOGY.md`](../../METHODOLOGY.md) para los detalles. --- @@ -386,7 +389,7 @@ func (s *Sandbox) WriteFile(path string, data []byte, perm os.FileMode) error | Path encoding (`%2e%2e`) | No detectado | Detectado por stdlib | | Null bytes en path | Depende del OS | Manejado por stdlib | -> 🔒 Por eso la librería **requiere Go 1.26+** (ver [README §16.1.3.1](https://github.com/VictorVargas/rony-harness/blob/main/docs/architecture.md#16131)). +> 🔒 Por eso la librería **requiere Go 1.26+** (ver [README §16.1.3.1](https://github.com/VictorVargas/rony-llm-agent/blob/main/docs/architecture.md#16131)). ### 3.7 Configuration (`pkg/config/`) diff --git a/docs/phase2.md b/docs/phase2.md index a1a9fba..618ff21 100644 --- a/docs/phase2.md +++ b/docs/phase2.md @@ -1,4 +1,4 @@ -# 🚀 rony-llm-agent — Phase 2 Features +# 🚀 Rony LLM Agent — Phase 2 Features **Versión:** 1.0 **Autor:** Victor Hugo Vargas diff --git a/go.mod b/go.mod index 2cc601f..28f9901 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/VictorVargas/rony-llm-agent -go 1.26 \ No newline at end of file +go 1.26.4