From octo
Deactivates freeze mode by removing the edit boundary restriction and deleting the session's freeze state file. Confirms with a deactivation message, re-enabling unrestricted edits.
How this command is triggered — by the user, by Claude, or both
Slash command
/octo:unfreezecommands/The summary Claude sees in its command listing — used to decide when to auto-load this command
# Unfreeze - Remove Edit Boundary ## Instructions When the user invokes `/octo:unfreeze`, remove the freeze mode restriction. ### Deactivation Remove the freeze state file: ### 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 After deactivation, confirm to the user: ## When to Use - Finished debugging a spec...
When the user invokes /octo:unfreeze, remove the freeze mode restriction.
Remove the freeze state file:
_OCTO_SESSION_ID="${CLAUDE_CODE_SESSION_ID:-${CLAUDE_SESSION_ID:-$$}}"
rm -f "/tmp/octopus-freeze-${_OCTO_SESSION_ID}.txt"
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.
/octo:unfreeze
After deactivation, confirm to the user:
🔓 Freeze mode deactivated. Edits are no longer restricted to a specific directory.
/octo:freeze — Activate edit boundary enforcement/octo:guard — Activate both careful + freeze together/octo:careful — Destructive command warnings (independent of freeze)npx claudepluginhub nyldn/claude-octopus --plugin octo/unfreezeRemoves the directory edit lock set by /spartan:freeze, enabling Claude to edit files anywhere. Acknowledges freeze OFF and careful mode status.
/freezeRestricts Write/Edit operations to files matching the specified glob pattern(s) until /unfreeze, writing state to hooks/freeze-state.json.
/safe-modeActivates protective modes against destructive operations: cautious warns on risky Bash/git commands; lockdown restricts edits to a path; clear disables all. Reports status.
/guardActivates safety guardrails that block destructive Bash commands (rm -rf), SQL drops (DROP TABLE), git force-pushes, and optionally restrict file edits to a directory. Explains each block.
/no-vibe-btwTemporarily disables no-vibe mode to let AI edit project files for a single task, then restores the mode and reports changes.
/pm-scopeManages file allowlist to block out-of-scope edits during tasks, enforcing scope via hooks and tracking drifts/overrides in a ledger. Supports add, remove, set, show, clear, override.