Control goldbox sandbox - toggle between container isolation and Claude native sandbox
/plugin marketplace add zozo123/goldbox/plugin install goldbox@goldbox-marketplaceControl the goldbox sandbox mode.
The user wants to control goldbox. Parse their intent:
touch ~/.goldbox_enabled
echo "✓ goldbox ENABLED - commands will run in container"
rm -f ~/.goldbox_enabled
echo "✓ goldbox DISABLED - using Claude native sandbox"
if [ -f ~/.goldbox_enabled ]; then
echo "goldbox: ENABLED (container isolation)"
else
echo "goldbox: DISABLED (Claude native sandbox)"
fi
docker ps --filter name=goldbox --format "Container: {{.Names}} - {{.Status}}"
After running the appropriate command, explain: