shell
$ npx -y skills add nyldn/claude-octopus --agent claude-codeShips with octo. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/unfreeze
Context preview
What this command does when you run it.
[advanced] Remove freeze mode edit restriction
Stats
Stars3,869
Forks362
LanguageShell
LicenseMIT
Ships with octo
Command definition
unfreeze.md
--- command: unfreeze description: "[advanced] Remove freeze mode edit restriction" --- # Unfreeze - Remove Edit Boundary ## Instructions When the user invokes `/octo:unfreeze`, remove the freeze mode restriction. ### Deactivation Remove the freeze state file: ```bash _OCTO_SESSION_ID="${CLAUDE_CODE_SESSION_ID:-${CLAUDE_SESSION_ID:-$$}}" rm -f "/tmp/octopus-freeze-${_OCTO_SESSION_ID}.txt" ``` ### What It Does Removes the edit boundary set by `/octo:freeze` or `/octo:guard`. After unfreezing, Edit and Write operations are unrestricted again. **Note:** This does NOT deactivate careful mode. If careful mode was activated (via `/octo:careful` or `/octo:guard`), destructive command warnings remain active. ### Usage ``` /octo:unfreeze ``` After deactivation, confirm to the user: ``` 🔓 Freeze mode deactivated. Edits are no longer restricted to a specific directory. ``` ## When to Use - Finished debugging a specific module - Need to edit files outside the current freeze boundary
