← ClaudeAtlas

debug-offlisted

Use this skill when debugging is complete and the user wants to stop accumulating large trace logs — trigger words "turn off debug", "stop verbose", "disable trace", "debug off". Disables verbose / trace-level logging for the iEvo pipeline. Reverts to normal logging (concise `.ievo/log/init-*.md` only).
ievo-ai/skills · ★ 0 · Code & Development · score 72
Install: claude install-skill ievo-ai/skills
# Debug Off — disable verbose session logging Reverts iEvo skills to their default concise logging mode. Removes `.ievo/debug.flag`. Existing debug session logs in `.ievo/log/debug/<session-id>/` are NOT deleted — they're preserved as audit artifacts. > **Claude Code v2.1.181+ alternative.** If you only turned on Claude Code's own verbose output via `/config verbose=true` (see `/ievo:debug-on`'s note) rather than this skill, turn it back off the same way: `/config verbose=false`. This skill's flag removal only clears `.ievo/debug.flag` — it never touches Claude Code's `verbose` setting either way. ## When to use - User says "turn off debug", "stop verbose", "disable trace", "debug off" - After filing a bug report and no longer needs accumulating logs - Disk pressure from large debug logs ## Steps ### 1. Check if debug is currently on If `<project>/.ievo/debug.flag` does not exist → already off. Tell user: ``` iEvo debug mode is already OFF (no .ievo/debug.flag found). Past debug logs (if any) remain in .ievo/log/debug/. ``` Exit. ### 2. Read flag content for the closing summary Read `.ievo/debug.flag` and capture: - `enabled_at` (when debug was turned on) - `enabled_by` - `reason` ### 3. Remove the flag POSIX hosts (macOS / Linux / WSL) — use Bash with `rm -f` for idempotence: ```bash rm -f <project>/.ievo/debug.flag ``` Windows hosts (PowerShell, no POSIX shell): ```powershell Remove-Item -ErrorAction SilentlyContinue '<project>\.ievo\debug.flag' ``` Cross-p