feedto
# FeedTo Skill
Automatically pulls and processes feeds from [FeedTo.ai](https://feedto.ai).
## Requirements
- `curl` (pre-installed on macOS/Linux)
- A FeedTo account and API key
## Setup
1. Install the skill:
```
clawhub install feedto
```
2. Add your API key to `~/.openclaw/openclaw.json`:
```json
{
"skills": {
"entries": {
"feedto": {
"enabled": true,
"env": {
"FEEDTO_API_KEY": "your-api-key-here"
}
}
}
}
}
```
3. Get your API key from [feedto.ai/settings](https://feedto.ai/settings)
4. Restart the gateway: `openclaw gateway restart`
## How it works
Every minute, the skill:
1. Polls FeedTo for pending feeds
2. Relays each feed's content verbatim to the user
3. Marks processed feeds as read
## Using the Chrome Extension
Install from [feedto.ai/setup](https://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: `bash {baseDir}/scripts/poll.sh`
## API endpoints used
- `GET /api/feeds/pending` — fetch unprocessed feeds
- `PATCH /api/feeds/pending` — mark feeds as processed
标签
skill
ai