技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 45 · 14.1k · 106 current installs · 113 all-time installs
⭐ 45
安装量(当前) 113
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:ashwingupy/firecrawl-search
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's code and docs implement Firecrawl search/scrape/crawl and only need an API key, but the package metadata omits that required credential and the SKILL.md references CLI commands that aren't provided — this mismatch suggests sloppy packaging and you should verify the origin and the API key usage before installing.
目的
The name/description, SKILL.md, references/api.md, and the three Python scripts all consistently implement web search, scraping, and crawling via api.firecrawl.dev. That functionality matches the stated purpose. However, the registry metadata claims no required environment variables or primary credential while both the SKILL.md and all scripts explicitly require FIRECRAWL_API_KEY; additionally SKILL.md example CLI commands (firecrawl_search, f…
说明范围
Runtime instructions and scripts only perform POST/GET calls to https://api.firecrawl.dev endpoints and require the FIRECRAWL_API_KEY. They do not read unrelated local files, other environment variables, or system config paths, nor do they send data to unexpected third-party domains. The scope of actions described in SKILL.md is limited to web search/scrape/crawl.
安装机制
There is no install spec (instruction-only), which minimizes installation risk. The bundle does include three executable Python scripts (no external downloads or installers). Because there is no packaging/installation step described, the SKILL.md's suggested CLI command names may be misleading unless the system supplies wrappers; this is a minor risk for usability/confusion but not an immediate code-execution red flag.
证书
All scripts and the SKILL.md require FIRECRAWL_API_KEY, which is appropriate for a service-backed scraping/search skill. However, the registry metadata incorrectly lists no required env vars or primary credential. That mismatch is concerning because it may mislead users about what secrets are needed and how they are used. Also, the skill will send whatever URLs/queries you provide to api.firecrawl.dev — ensure you trust that service before sen…
持久
The skill does not request persistent presence (always is false), does not modify other skills or system-wide settings, and does not request elevated privileges. Autonomous invocation is allowed (platform default) but not combined with other high-risk factors here.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Firecrawl Search」。简介:Web search and scraping via Firecrawl API. Use when you need to search the web,…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ashwingupy/firecrawl-search/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: firecrawl
description: Web search and scraping via Firecrawl API. Use when you need to search the web, scrape websites (including JS-heavy pages), crawl entire sites, or extract structured data from web pages. Requires FIRECRAWL_API_KEY environment variable.
---
# Firecrawl
Web search and scraping via Firecrawl API.
## Prerequisites
Set `FIRECRAWL_API_KEY` in your environment or `.env` file:
```bash
export FIRECRAWL_API_KEY=fc-xxxxxxxxxx
```
## Quick Start
### Search the web
```bash
firecrawl_search "your search query" --limit 10
```
### Scrape a single page
```bash
firecrawl_scrape "https://example.com"
```
### Crawl an entire site
```bash
firecrawl_crawl "https://example.com" --max-pages 50
```
## API Reference
See [references/api.md](references/api.md) for detailed API documentation and advanced options.
## Scripts
- `scripts/search.py` - Search the web with Firecrawl
- `scripts/scrape.py` - Scrape a single URL
- `scripts/crawl.py` - Crawl an entire website