Exit data science mode and disable the main chat sandbox for this session.
Deactivates the data science sandbox and restores full tool access for the current session. Use this when you need to exit the restricted data science environment and return to normal Claude Code operation.
/plugin marketplace add edwinhu/claude-plugins/plugin install ds@edwinhu-pluginsDeactivating 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'Data science mode deactivated for session {sid}')
"
You can now use Bash, Edit, and Write tools directly from main chat.