Refactor high-complexity React components in Dify frontend. Use when `pnpm analyze-component...
npx skills add digital-stoic-org/agent-skills --skill "dump-output"
Install specific skill from multi-skill repository
# Description
Toggle automatic dumping of Claude's output to timestamped markdown files
# SKILL.md
name: dump-output
description: Toggle automatic dumping of Claude's output to timestamped markdown files
context: fork
allowed-tools: [Bash]
user-invocable: true
Output Dump Toggle
Toggle automatic dumping of Claude's complete output 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
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.