一键导入
eigenfeed-serve
Serve the Eigenfeed RSS feed over HTTP for subscription in any feed reader. Use when the user wants to subscribe to their recommendations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Serve the Eigenfeed RSS feed over HTTP for subscription in any feed reader. Use when the user wants to subscribe to their recommendations.
用 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.
Clear all Eigenfeed state (vault, database, feed) and start fresh. Use when the user wants to rebuild from scratch.
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.
| name | eigenfeed.serve |
| description | Serve the Eigenfeed RSS feed over HTTP for subscription in any feed reader. Use when the user wants to subscribe to their recommendations. |
| allowed-tools | Bash(*) |
Start a local HTTP server that serves the Eigenfeed RSS feed so it can be subscribed to in any feed reader.
Check if local/feed.xml exists. If not, tell the user to run /eigenfeed first to generate recommendations.
uv run python ${CLAUDE_SKILL_DIR}/scripts/serve_feed.py --data-dir local/ --port 8463
This starts a lightweight HTTP server that:
feed.xml at http://localhost:8463/feed.xml (also at /feed and /)/health with a simple health checkAfter starting, tell the user:
http://localhost:8463/feed.xmlThe feed will update whenever they re-run /eigenfeed. The server serves whatever is currently in local/feed.xml.
Note: The server must be running for the feed reader to fetch updates. The user can also point their reader at the file directly using a file:// URL: file://${PWD}/local/feed.xml