FeedTo Skill
Automatically pulls and processes feeds from FeedTo.ai.
Requirements
- -
curl (pre-installed on macOS/Linux) - A FeedTo account and API key
Setup
- 1. Install the skill:
CODEBLOCK0
- 2. Add your API key to
~/.openclaw/openclaw.json:
CODEBLOCK1
- 3. Get your API key from feedto.ai/settings
- 4. Restart the gateway: INLINECODE2
How it works
Every minute, the skill:
- 1. Polls FeedTo for pending feeds
- Relays each feed's content verbatim to the user
- Marks processed feeds as read
Using the Chrome Extension
Install from feedto.ai/setup:
- - Right-click any page → "Feed this page to AI"
- Select text → right-click → "Feed selection to AI"
- Right-click a link → "Feed this link to AI"
Manual trigger
Ask your AI:
- - "Check for new feeds"
- "Pull my FeedTo feeds"
- Or directly: INLINECODE3
API endpoints used
- -
GET /api/feeds/pending — fetch unprocessed feeds - INLINECODE5 — mark feeds as processed
FeedTo 技能
自动从 FeedTo.ai 拉取并处理订阅内容。
环境要求
- - curl(macOS/Linux 预装)
- FeedTo 账户及 API 密钥
安装配置
- 1. 安装技能:
clawhub install feedto
- 2. 将 API 密钥添加至 ~/.openclaw/openclaw.json:
json
{
skills: {
entries: {
feedto: {
enabled: true,
env: {
FEEDTO
APIKEY: your-api-key-here
}
}
}
}
}
- 3. 从 feedto.ai/settings 获取 API 密钥
- 4. 重启网关:openclaw gateway restart
工作原理
技能每分钟执行以下操作:
- 1. 向 FeedTo 轮询待处理的订阅内容
- 将每条订阅内容逐字转发给用户
- 将已处理的订阅标记为已读
使用 Chrome 扩展
从 feedto.ai/setup 安装:
- - 右键点击任意页面 → 将此页面推送给 AI
- 选中文本 → 右键 → 将选中内容推送给 AI
- 右键点击链接 → 将此链接推送给 AI
手动触发
向 AI 发送指令:
- - 检查新订阅
- 拉取我的 FeedTo 订阅
- 或直接执行:bash {baseDir}/scripts/poll.sh
使用的 API 接口
- - GET /api/feeds/pending — 获取未处理的订阅
- PATCH /api/feeds/pending — 将订阅标记为已处理