skills/ck991357/firecrawl/SKILL.md
多功能网页抓取和数据提取工具,支持同步抓取、搜索、网站地图获取和异步爬取
npx skillsauth add aiskillstore/marketplace firecrawlInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
firecrawl 是一个多功能网页抓取和数据提取工具,通过 mode 参数调用不同功能。其 parameters 结构是嵌套的。
✅ 正确的调用结构:
{"mode": "<功能模式>", "parameters": {"<参数名>": "<参数值>"}}
💡 重要提示:
scrape、search、map 是同步操作,立即返回结果crawl、extract 是异步操作,返回 job_id 用于后续状态检查parameters 对象内,不要放在顶层http:// 或 https:// 开头scrape)✅ 正确示例:
{
"mode": "scrape",
"parameters": {
"url": "https://docs.firecrawl.dev/",
"formats": ["markdown"] // 可选:["markdown", "html"],默认 markdown
}
}
search)✅ 正确示例:
{
"mode": "search",
"parameters": {
"query": "人工智能最新发展",
"limit": 5
}
}
map)✅ 正确示例:
{
"mode": "map",
"parameters": {
"url": "https://example.com"
}
}
crawl)✅ 正确示例:
{
"mode": "crawl",
"parameters": {
"url": "https://firecrawl.dev",
"limit": 5
}
}
此调用会返回一个 job_id,用于后续查询。
extract)✅ 正确示例:
{
"mode": "extract",
"parameters": {
"urls": ["https://news.example.com/article"],
"prompt": "提取文章标题、作者和发布时间",
"schema": {
"type": "object",
"properties": {
"title": {"type": "string"},
"author": {"type": "string"},
"publish_time": {"type": "string"}
}
}
}
}
check_status)✅ 正确示例:
{
"mode": "check_status",
"parameters": {
"job_id": "some-unique-job-identifier"
}
}
mode 参数: {"parameters": {"url": "..."}}parameters 对象: {"mode": "scrape", "url": "..."}{"url": "..."}{"mode": "scrape", "parameters": {"url": "example.com"}} (缺少协议){"mode": "extract", "parameters": {"urls": "https://example.com"}} (urls 应该是数组)development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.