首页龙虾技能列表 › Felo Web Fetch — 网页内容抓取

Felo Web Fetch — 网页内容抓取

v1.0.1

使用 Felo Web Extract API 从 URL抓取网页内容。适用于用户请求抓取网页、提取文章文本、转换为 Markdown/文本等场景。

0· 471·5 当前·5 累计
by @wangzhiming1999 (wangzhiming)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/6
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
high confidence
该技能如其所述调用 Felo 的 Web Extract API,但包元数据中缺少必需的 FELO_API_KEY 环境变量,安装前请了解此问题及其他小问题。
评估建议
["该技能代码小且如描述所述,但请注意:","1. 运行时需要 FELO_API_KEY(可选 FELO_API_BASE),但注册元数据未列出,请要求发布者更正后安装。","2. 使用该技能会将目标 URL 和内容发送到外部服务(openapi.felo.ai),避免发送私密、认证或敏感内容,除非信任 Felo 服务和其 API 密钥范围。","3. 如果计划安装 'felo-ai' CLI,请确认所有者/发布者(来源为 'unknown')并审查 npm/二进制包装。若谨慎,可使用有限/测试 API 密钥运行脚本,或者修改脚本记录日志,或者选择明确元数据和知名发布者的替代品。"]...
详细分析 ▾
用途与能力
Name/description match the implementation: the script posts a URL to Felo's /v2/web/extract endpoint and returns the returned content. However, the registry metadata lists no required environment variables while the runtime script and SKILL.md clearly require FELO_API_KEY (and optionally FELO_API_BASE). The omission in metadata is a coherence issue.
指令范围
SKILL.md and the script instruct the agent to call the remote Felo API with the provided URL and options. The instructions do not ask the agent to read unrelated files, system credentials, or other services. They do, however, advise installing a packaged CLI (felo-ai) that is not included here — a mild documentation inconsistency. Sending arbitrary URLs/content to an external API is expected for this skill but is a privacy consideration.
安装机制
There is no install spec (instruction-only with a bundled Node script). The single script is readable and small; no downloads, archives, or opaque installers are used by the skill itself. This is low install risk.
凭证需求
The code requires FELO_API_KEY (and optionally FELO_API_BASE) to function — a single API key is proportional to the skill's purpose. The problem is the registry declares no required env vars, which is inconsistent and could mislead users into not providing or checking credentials. The script does not access other secrets or system credentials.
持久化与权限
The skill is not always-enabled, is user-invocable, and does not request to modify other skills or system settings. It does not persist credentials or alter global agent configuration.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.12026/3/6

重新发布

● 无害

安装命令 点击复制

官方npx clawhub@latest install felo-web-fetch
镜像加速npx clawhub@latest install felo-web-fetch --registry https://cn.clawhub-mirror.com

技能文档

何时使用

触发此技能当用户想要:
  • 从网页 URL抓取或爬取内容
  • 从链接获取文章/主要文本
  • 将网页转换为 Markdown 或纯文本
  • 为总结或处理捕获可读内容
触发关键词(示例)... 不适用:实时搜索、生成幻灯片、局部文件内容...

设置

1. 获取 API 密钥

  • 访问 felo.ai
  • 打开设置 -> API 密钥
  • 创建并复制 API 密钥

2. 配置环境变量

Linux/macOS:
export FELO_API_KEY="your-api-key-here"
Windows PowerShell:
$env:FELO_API_KEY="your-api-key-here"

执行方式

选项 A:使用捆绑脚本或包装 CLI

脚本(从仓库)... 包装 CLI( после npm install -g felo-ai)... 选项:
选项默认描述
--url(必需)网页 URL
--formatmarkdown输出格式
...
### 选项 B:使用 curl 调用 API
curl -X POST "https://openapi.felo.ai/v2/web/extract" \
-H "Authorization: Bearer $FELO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "output_format": "markdown", "with_readability": true}'

API 参考(摘要)

  • 端点POST /v2/web/extract
  • 基 URLhttps://openapi.felo.ai,可通过 FELO_API_BASE 覆盖。
  • 认证Authorization: Bearer YOUR_API_KEY

请求体(JSON)

参数类型必需默认描述
urlstring-网页 URL
...
## 响应 成功(200)... 错误代码...

输出格式

成功(脚本无 --json)... 与 --json... 错误响应...

重要注意事项

  • 始终检查 FELO_API_KEY;若缺失,返回设置指示。
  • 对于长文章或慢站点,考虑 --timeout 或请求体中的 timeout
  • 使用 output_format: "markdown"with_readability: true 获取干净的文章文本。
  • API 可能缓存结果;仅当需要新鲜内容时在请求体中使用 with_cache: false(脚本不默认暴露此选项)。

参考

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务