From dstoic
Toggle automatic dumping of Claude's output to timestamped markdown files
npx claudepluginhub digital-stoic-org/agent-skills --plugin dstoicThis skill is limited to using the following tools:
Toggle automatic dumping of Claude's complete output. Saves to `$THINKING_DIR/dumps/{project}/` when set, falls back to `.dump/` folder.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Toggle automatic dumping of Claude's complete output. Saves to $THINKING_DIR/dumps/{project}/ when set, falls back to .dump/ folder.
.dump/.enabled file existsToggle (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