StripFeed OpenClaw Skill: Web Access for OpenClaw Agents
What is the StripFeed OpenClaw Skill?
OpenClaw is a platform for building and running AI agents. The StripFeed skill adds web reading capabilities to any OpenClaw agent, converting URLs to clean Markdown without headless browsers or scraping infrastructure.
Install
Using ClawHub:
clawhub install stripfeed
Or manually: copy the stripfeed/ folder into your OpenClaw skills/ directory.
Configuration
Add to your ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"stripfeed": {
"enabled": true,
"env": {
"STRIPFEED_API_KEY": "sf_live_your_key"
}
}
}
}
}
Get your API key at stripfeed.dev/sign-up (free, 200 requests/month).
What Your Agent Can Do
Once the skill is installed, your OpenClaw agent can:
Read any web page:
Agent: Fetching https://docs.anthropic.com/en/docs/about-claude/models...
→ Returns clean Markdown with 3,200 tokens (saved 78% vs HTML)
Extract specific content with CSS selectors:
Fetch https://example.com/pricing with selector .pricing-table
→ Returns only the pricing table content
Batch fetch multiple pages:
Fetch these 5 documentation pages and summarize the differences...
→ All 5 fetched in parallel via POST /api/v1/batch
Track token usage and costs:
Every response includes token counts and savings percentages. Your agent can monitor its own budget.
API Endpoints
The skill wraps the StripFeed API:
Single Fetch
GET /api/v1/fetch?url=https://example.com
Parameters:
url- URL to fetch (required)format-markdown,json,text,html(Pro)selector- CSS selector for targeted extraction (Pro)cache- Enable/disable caching (default: true)ttl- Cache TTL in seconds (up to 24h for Pro)max_tokens- Maximum tokens in outputmodel- AI model ID for cost tracking
Batch Fetch
POST /api/v1/batch
{
"urls": [
"https://example.com/page1",
"https://example.com/page2"
]
}
Processes up to 10 URLs in parallel (Pro plan).
Check Usage
GET /api/v1/usage
Returns current month's request count, plan limits, and remaining quota.
Response Format
Default (Markdown):
Content-Type: text/markdown; charset=utf-8
X-StripFeed-Tokens: 3,150
X-StripFeed-Savings-Percent: 80.5
X-StripFeed-Cache: HIT
JSON format (?format=json):
{
"url": "https://example.com",
"title": "Example Page",
"markdown": "# Example\n\nClean content...",
"html": "<h1>Example</h1><p>Clean content...</p>",
"text": "Example\n\nClean content...",
"tokens": 3150,
"format": "json"
}
Plans
- Free: 200 requests/month, 1 API key, Markdown output only
- Pro ($19/mo): 100K requests/month, unlimited keys, all formats, selectors, batch
- Enterprise: Custom pricing, unlimited requests, SLA
Links
- OpenClaw: openclaw.ai
- ClawHub: clawhub.ai
- StripFeed: stripfeed.dev
- API Docs: stripfeed.dev/docs