Dump Output

Toggle automatic dumping of Claude's output to timestamped markdown files

digital-stoic-org Updated

File contents

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

  1. Check if .dump/.enabled file exists
  2. If exists: Remove it (turn OFF)
  3. If doesn't exist: Create it (turn ON)
  4. 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

digital-stoic-org/agent-skills/tree/main/dstoic/skills/dump-output commit e4052188c3

Frequently asked questions

npx skillmds@latest add digital-stoic-org/dump-output