Output Dump Toggle
Toggle automatic dumping of Claude's complete output. Saves to $PRAXIS_DIR/thinking/dumps/{project}/ when set, falls back to .dump/ folder.
Instructions
- Check if
.dump/.enabledfile exists - If exists: Remove it (turn OFF)
- If doesn't exist: Create it (turn ON)
- Always show the new status to the user
Commands
Toggle (on/off):
mkdir -p .dump
if [ -f .dump/.enabled ]; then
rm .dump/.enabled
echo "❌ Output dumping is now DISABLED"
else
touch .dump/.enabled
echo "✅ Output dumping is now ENABLED"
fi