一键导入
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.