Exit dev mode and disable the main chat sandbox for this session.
Deactivates dev mode sandbox and re-enables direct Bash, Edit, and Write tool access for the current session. Use this when you're done with dev mode and want to work directly with files and commands again.
/plugin marketplace add edwinhu/claude-plugins/plugin install dev@edwinhu-pluginsDeactivating dev mode sandbox for this session.
python3 -c "
import os, hashlib
tty = os.environ.get('TTY', '')
cwd = os.getcwd()
sid = hashlib.md5(f'{tty}:{cwd}'.encode()).hexdigest()[:12]
for prefix in ['dev-mode', 'skill-gate', 'ralph']:
try:
os.remove(f'/tmp/.claude-{prefix}-{sid}')
except FileNotFoundError:
pass
except:
pass
print(f'Dev mode deactivated for session {sid}')
"
You can now use Bash, Edit, and Write tools directly from main chat.