원클릭으로
eigenfeed-reset
Clear all Eigenfeed state (vault, database, feed) and start fresh. Use when the user wants to rebuild from scratch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Clear all Eigenfeed state (vault, database, feed) and start fresh. Use when the user wants to rebuild from scratch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
First-time setup — build taste profile from sources, then discover and score articles. Run this once, then use /eigenfeed for regular use.
Run your daily recommendation pipeline — discover, score, and publish articles to your feed.
Score candidates against taste profile, publish top picks, and generate feed. Used by /eigenfeed and /coldstart, also invocable directly.
Build or update taste profile and topics from configured sources. Used by /coldstart and /eigenfeed, also invocable directly.
Discover candidate articles via web search. Used by /eigenfeed and /coldstart, also invocable directly.
Generate salient questions from topics, use them to create search queries and discover new topics. Used by /eigenfeed and /coldstart, also invocable directly.
| 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(*) |
Clear all Eigenfeed state so the user can rebuild from scratch.
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?"
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.
Tell the user to run /coldstart to rebuild from scratch.