Help us improve
Share bugs, ideas, or general feedback.
From deep-loop
Clean up stale deep loop files. Use when user asks to 'clean up', 'remove .deep directories'. Removes old session artifacts.
npx claudepluginhub marcusgoll/deep-loop-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/deep-loop:deep-cleanupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manually clean up stale files from deep loop sessions.
Cancels active Claude Code loops by checking/removing .loophaus/state.json or legacy .claude/ralph-loop.local.md files and reporting stopped iteration.
Tidies up bloated Plans.md, session-log.md, old logs, and state files. Invoke via /maintenance for file cleanup, archiving, and organization.
Scans Claude Code config (skills, memory, hooks, permissions, MCP servers, caches) for stale or redundant items and walks the user through confirm-each-deletion cleanup.
Share bugs, ideas, or general feedback.
Manually clean up stale files from deep loop sessions.
.deep/ directories older than 7 days~/.claude/plans/# Remove .deep directories older than 7 days
find . -maxdepth 1 -name ".deep*" -type d -mtime +7 -exec rm -rf {} \;
# Remove stale plans
find ~/.claude/plans -name "*.md" -mtime +7 -delete
# Remove lock files
rm -f .deep/agent.lock
# Remove escalation files
rm -f .deep/NEEDS_USER
rm -rf .deep
echo '[]' > .deep/issues.json
touch .deep/FORCE_EXIT
echo "Manual cleanup" > .deep/FORCE_COMPLETE