| name | eigenfeed.reset |
| description | Clear all Eigenfeed state (vault, database, feed) and start fresh. Use when the user wants to rebuild from scratch. |
| allowed-tools | Bash(*) |
Reset Skill
Clear all Eigenfeed state so the user can rebuild from scratch.
Confirm with the user first
Before deleting anything, show what exists and ask for confirmation:
ls -la vault/ 2>/dev/null && echo "---" && find vault/ -name "*.md" 2>/dev/null | wc -l && echo "markdown files"
Ask the user:
"This will delete all Eigenfeed state: your taste profile, topics, questions, recommendations, database, and feed. Want to proceed?"
If confirmed, clear everything
rm -rf vault/profile.md vault/topics vault/questions vault/recommendations vault/signals tmp/ local/eigenfeed.db local/feed.xml
This preserves the vault/ directory itself but removes all generated content.
After reset
Tell the user to run /coldstart to rebuild from scratch.