fix: routers in documents and referents

This commit is contained in:
Victor Hugo Vargas Servin 2026-06-30 00:41:59 -07:00
parent 2ca15679cb
commit 3e3a42847a
3 changed files with 7 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# 🏗️ rony-llm-agent — Architecture # 🏗️ Rony LLM Agent — Architecture
**Versión:** 1.0 **Versión:** 1.0
**Autor:** Victor Hugo Vargas **Autor:** Victor Hugo Vargas
@ -9,6 +9,9 @@
> - [`README.md`](./README.md) — Overview de la librería > - [`README.md`](./README.md) — Overview de la librería
> - [`components.md`](./components.md) — Referencia detallada por paquete > - [`components.md`](./components.md) — Referencia detallada por paquete
> - [`phase2.md`](./phase2.md) — Features avanzadas (MCP, RAG completo, Skills, etc.) > - [`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 | | Path encoding (`%2e%2e`) | No detectado | Detectado por stdlib |
| Null bytes en path | Depende del OS | Manejado 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/`) ### 3.7 Configuration (`pkg/config/`)

View file

@ -1,4 +1,4 @@
# 🚀 rony-llm-agent — Phase 2 Features # 🚀 Rony LLM Agent — Phase 2 Features
**Versión:** 1.0 **Versión:** 1.0
**Autor:** Victor Hugo Vargas **Autor:** Victor Hugo Vargas

2
go.mod
View file

@ -1,3 +1,3 @@
module github.com/VictorVargas/rony-llm-agent module github.com/VictorVargas/rony-llm-agent
go 1.26 go 1.26.4