Skip to content

docs: UX and language consistency for v2.0.0#8

Open
gustavoemc wants to merge 1 commit into
mainfrom
docs/ux-language-consistency
Open

docs: UX and language consistency for v2.0.0#8
gustavoemc wants to merge 1 commit into
mainfrom
docs/ux-language-consistency

Conversation

@gustavoemc

Copy link
Copy Markdown
Contributor

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.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Comment thread README.md
Comment on lines +67 to +82
### 🚀 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
```

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant