# Unfreeze > Elimina el límite de congelación fijado por /freeze, permitiendo de nuevo editar todos los directorios (gstack). Fuente: https://skillsagentes.com/skills/garrytan/gstack/unfreeze Markdown: https://skillsagentes.com/skills/garrytan/gstack/unfreeze.md Repositorio: https://github.com/garrytan/gstack Autor: garrytan Licencia: MIT Actualizado: hace 2 meses Coste de contexto: 23 tok instalada, 376 tok al activarse, 723 tok con todos los archivos del bundle Bundle: 2 archivos, 3 KB Permisos que pide: bash, read ## Instalación Un skill son archivos markdown: los mismos archivos valen para cualquier agente y lo único que cambia es el directorio de destino, es decir la bandera `--agent`. Añade `-g` para instalarlo en todos los proyectos de la máquina. ```bash # Claude Code npx -y skills add garrytan/gstack --skill unfreeze --agent claude-code # Cursor npx -y skills add garrytan/gstack --skill unfreeze --agent cursor # Codex npx -y skills add garrytan/gstack --skill unfreeze --agent codex # Gemini CLI npx -y skills add garrytan/gstack --skill unfreeze --agent gemini # Windsurf npx -y skills add garrytan/gstack --skill unfreeze --agent windsurf # Cline npx -y skills add garrytan/gstack --skill unfreeze --agent cline ``` ## Qué hace - Elimina el archivo de estado freeze-dir.txt creado por /freeze - Restaura la posibilidad de editar cualquier directorio en la sesión actual - Informa al usuario si había un límite activo y cuál era - Registra el uso del skill en ~/.gstack/analytics/skill-usage.jsonl ## Cuándo usarla - Cuando quieres ampliar el alcance de edición sin terminar la sesión - Cuando te piden 'unfreeze', 'unlock edits', 'remove freeze' o 'allow all edits' ## Qué la activa - "Quita la restricción de edición" - "Unfreeze los directorios" - "Desbloquea todas las carpetas para editar" ## Antes de instalar - Requiere que /freeze haya sido ejecutado previamente y que exista el script gstack-paths. - Necesita en el PATH: git - Variables de entorno: GSTACK_STATE_ROOT, PREV, STATE_DIR - runs shell commands - reads environment config ## Archivos - SKILL.md — 1 KB - SKILL.md.tmpl — 1 KB ## SKILL.md Reproducido tal cual desde garrytan/gstack bajo MIT. Esta sección es el documento original y está en inglés. ## When to invoke this skill Use when you want to widen edit scope without ending the session. Use when asked to "unfreeze", "unlock edits", "remove freeze", or "allow all edits". # /unfreeze — Clear Freeze Boundary Remove the edit restriction set by `/freeze`, allowing edits to all directories. ```bash mkdir -p ~/.gstack/analytics echo '{"skill":"unfreeze","ts":"'$(date -u +%Y-%m-%dT%H:%M:%SZ)'","repo":"'$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || echo "unknown")'"}' >> ~/.gstack/analytics/skill-usage.jsonl 2>/dev/null || true ``` ## Clear the boundary ```bash eval "$(~/.claude/skills/gstack/bin/gstack-paths)" STATE_DIR="$GSTACK_STATE_ROOT" if [ -f "$STATE_DIR/freeze-dir.txt" ]; then PREV=$(cat "$STATE_DIR/freeze-dir.txt") rm -f "$STATE_DIR/freeze-dir.txt" echo "Freeze boundary cleared (was: $PREV). Edits are now allowed everywhere." else echo "No freeze boundary was set." fi ``` Tell the user the result. Note that `/freeze` hooks are still registered for the session — they will just allow everything since no state file exists. To re-freeze, run `/freeze` again. ## Dónde encaja - Categoría: [Herramientas para desarrolladores](https://skillsagentes.com/categorias/herramientas-desarrollo.md) — Skills que cambian cómo tu agente escribe, revisa y despliega código. - Creador: [garrytan](https://skillsagentes.com/creators/garrytan.md) — 134 skills en el directorio - [Todas las skills](https://skillsagentes.com/skills.md) - [Ranking de instalaciones](https://skillsagentes.com/ranking.md) ## Otras skills del mismo repositorio - [Browse](https://skillsagentes.com/skills/garrytan/gstack/browse.md): Navegador headless rápido para QA testing y dogfooding de sitios (gstack). - [Ship](https://skillsagentes.com/skills/garrytan/gstack/ship.md): Flujo de ship: detecta y fusiona la rama base, corre tests, revisa el diff, sube VERSION, actualiza CHANGELOG, hace commit, push y crea el PR (gstack). - [Ios Qa](https://skillsagentes.com/skills/garrytan/gstack/ios-qa.md): QA en dispositivo iOS real para apps SwiftUI, con bucle de agente guiado por visión sobre USB (gstack). - [Plan Design Review](https://skillsagentes.com/skills/garrytan/gstack/plan-design-review.md): Revisión de planes con ojo de diseñador — interactiva, al estilo de las revisiones de CEO e Ingeniería. (gstack) - [Plan Eng Review](https://skillsagentes.com/skills/garrytan/gstack/plan-eng-review.md): Revisión de plan en modo gerente de ingeniería: arquitectura, flujo de datos, diagramas, casos límite, cobertura de pruebas y rendimiento. (gstack) --- Skills Agentes · [Índice de páginas en markdown](https://skillsagentes.com/sitemap.md) · [Inicio](https://skillsagentes.com/index.md)