docs: UX and language consistency for v2.0.0#8
Conversation
… UX for beginners
There was a problem hiding this comment.
Code Review
This pull request adds a new 'Primeros Pasos' section to the README.md and translates the release notes in docs/release-v2.0.0.md into Spanish, detailing the security hardening and trust root migration steps for version 2.0.0. The review feedback highlights a redundancy issue in README.md, where the newly added section duplicates instructions already present in the 'Configuración Inicial' section, and suggests unifying them to improve maintainability.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| ### 🚀 Primeros Pasos: Inicializar la Raíz de Confianza (Requerido) | ||
|
|
||
| Por motivos de seguridad, Sentinel requiere que la lista de agentes permitidos (allowlist) se almacene en una carpeta protegida del sistema. Esto evita que código malicioso de terceros la modifique sin tu permiso explícito. | ||
|
|
||
| Abre una consola de PowerShell **como Administrador** y ejecuta: | ||
|
|
||
| ```powershell | ||
| # 1. Crear el directorio protegido por el sistema | ||
| $PolicyDir = "$env:ProgramData\AI-CLI-Sentinel\policy" | ||
| New-Item -Path $PolicyDir -ItemType Directory -Force | ||
|
|
||
| # 2. Migrar la lista de agentes aprobados | ||
| Copy-Item ".\src\agents.allowlist.json" -Destination "$PolicyDir\agents.allowlist.json" -Force | ||
|
|
||
| Write-Host "Migración completada. La raíz de confianza está asegurada en: $PolicyDir" -ForegroundColor Green | ||
| ``` |
There was a problem hiding this comment.
La nueva sección 'Primeros Pasos' (líneas 67-82) duplica casi en su totalidad las instrucciones del paso 2 de la sección 'Configuración Inicial' (líneas 91-96). Esta redundancia puede confundir a los usuarios y dificultar el mantenimiento del documento. Se recomienda unificar ambas secciones o eliminar el paso duplicado en 'Configuración Inicial' para mantener el documento limpio y conciso.
Unifica las notas de la versión v2.0.0 en español y agrega una guía inicial clara para configurar la raíz de confianza protegida.