# Dump Output

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

- Skill: `digital-stoic-org/dump-output` (Agent Skill)
- Install (CLI): `npx skillmds@latest add digital-stoic-org/dump-output`
- Raw SKILL.md: https://api.skillmd.com/api/skills/digital-stoic-org/dump-output/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: digital-stoic-org (https://skillmd.com/u/digital-stoic-org)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/digital-stoic-org/dump-output

---


# 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):
```bash
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
```

