Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

dump-output

verified

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

View on GitHub

Marketplace

digital-stoic-marketplace

digital-stoic-org/agent-skills

Plugin

dstoic

Repository

digital-stoic-org/agent-skills

dstoic/skills/dump-output/SKILL.md

Last Verified

February 3, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/digital-stoic-org/agent-skills/blob/main/dstoic/skills/dump-output/SKILL.md -a claude-code --skill dump-output

Installation paths:

Claude
.claude/skills/dump-output/
Powered by add-skill CLI

Instructions

# Output Dump Toggle

Toggle automatic dumping of Claude's complete output 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
```

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
481 chars