ワンクリックで
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.