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.zip

Installs 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、制限を外す。
65 chars✓ has a “when” trigger
Beginner

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

You give it
request to unfreeze
You get back
confirmation that freeze boundary is cleared or not set

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.

SkillInstallsUpdatedSafetyDifficulty
unfreeze (this skill)02moReviewBeginner
tmux202moReviewIntermediate
jira116moNo flagsBeginner
triaging-issues52moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry