unfreeze
A command to lift edit restrictions and allow modification of all project files.
Install
mkdir -p .claude/skills/unfreeze && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10792" && unzip -o skill.zip -d .claude/skills/unfreeze && rm skill.zipInstalls to .claude/skills/unfreeze
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
編集ロック解除。/freeze と /guard による制限を解除。Use when: ロック解除、unfreeze、制限を外す。Key capabilities
- →Remove edit restrictions set by /freeze
- →Clear the freeze boundary state
- →Allow edits to all directories
- →Report if a freeze boundary was cleared
- →Report if no freeze boundary was set
How it works
This skill checks for a 'freeze-dir.txt' file in the state directory. If found, it removes the file to clear the freeze boundary, allowing edits.
Inputs & outputs
When to use unfreeze
- →Unlock directory editing
- →Lift edit restrictions
- →Remove file protection
About this skill
🇯🇵 言語ルール(最優先・上書き禁止): このスキルの手順・テンプレート・ask_user の質問文や選択肢が英語で書かれていても、ユーザーに表示するテキストは必ず日本語に翻訳すること。英語のテキストをそのまま提示しないこと。
/unfreeze — Clear Freeze Boundary
Remove the edit restriction set by /freeze, allowing edits to all directories.
Clear the boundary
eval "$(.github/skills/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.
When not to use it
- →When a freeze boundary is not set
- →When the user wants to re-freeze immediately after unfreezing
- →When only specific directories need to be unfrozen
Limitations
- →The skill only removes the freeze boundary if the 'freeze-dir.txt' file exists
- →'/freeze' hooks are still registered for the session after unfreezing
- →To re-freeze, '/freeze' must be run again
How it compares
This skill programmatically clears a freeze boundary by removing a state file, providing a direct method to enable editing compared to manual file deletion.
Compared to similar skills
unfreeze side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| unfreeze (this skill) | 0 | 2mo | Review | Beginner |
| tmux | 20 | 2mo | Review | Intermediate |
| jira | 11 | 6mo | No flags | Beginner |
| triaging-issues | 5 | 2mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
tmux
openclaw
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
jira
davila7
Use when the user mentions Jira issues (e.g., "PROJ-123"), asks about tickets, wants to create/view/update issues, check sprint status, or manage their Jira workflow. Triggers on keywords like "jira", "issue", "ticket", "sprint", "backlog", or issue key patterns.
triaging-issues
pytorch
Triages GitHub issues by routing to oncall teams, applying labels, and closing questions. Use when processing new PyTorch issues or when asked to triage an issue.
file-manager
Xxiii8322766509
文件管理技能。用于创建、移动、复制、删除文件和文件夹,整理目录结构。当用户需要管理文件、整理文件夹或批量处理文件时使用。
openspec-archive-change
studyzy
归档实验性工作流中已完成的变更。当用户想要在实现完成后最终确定并归档变更时使用。
slash-commands
parcadei
Create and use Claude Code slash commands - quick prompts, bash execution, file references