AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсОбучениеПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Firecrawl Build Scrape — Скилл для ИИ-агентов | AI Рассвет

    Firecrawl Build Scrape

    Integrate Firecrawl /scrape into product code for single page extraction. Use when an app already has a URL and needs markdown, HTML, links, screenshots, metadata, or structured page output. Prefer this skill over broader crawl patterns when the feature is page level.

    Скиллы для разработки#GitHub#firecrawl/skills#skills.sh
    Скачивания
    3
    В избранном
    0
    Комментарии
    0
    Просмотры
    17

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add firecrawl/skills --skill firecrawl-build-scrape
    Скачать ZIP
    Версия
    1.0.0+f6c9b2dd6384
    Автор
    Владимир Ломтев
    Репозиторий
    firecrawl/skills
    GitHub: firecrawl/skills

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    Firecrawl Build Scrape

    Use this when the application already has the URL and needs content from one page.

    Use This When

    • the feature starts from a known URL
    • you need page content for retrieval, summarization, enrichment, or monitoring
    • you want the default extraction primitive before considering /interact

    Default Recommendations

    • Return markdown unless the feature truly needs another format.
    • Use onlyMainContent for article-like pages where nav and chrome add noise.
    • Add waits or other rendering options only when the page needs them.

    Freshness and Liveness

    • Firecrawl reuses recently indexed content, which is what makes repeat reads of the same URL fast. Set maxAge (milliseconds) to bound how old a reused copy may be, or maxAge: 0 to skip index reuse for a freshness-critical read.
    • Read metadata.cacheState and metadata.cachedAt to see what you actually got.
    • A successful scrape reports what the page returned. Whether the thing the page describes is still active is a source-specific judgment your code makes.
    • See references/freshness-and-liveness.md for the tradeoff, the metadata, and the decision rule.

    Common Product Patterns

    • knowledge ingestion from known URLs
    • enrichment from a company, product, or docs page
    • pricing, changelog, and documentation extraction
    • page-level quality checks or monitoring

    Escalation Rules

    • If you do not have the URL yet, start with firecrawl-build-search.
    • If content requires clicks, typing, or multi-step navigation, escalate to firecrawl-build-interact.

    Implementation Notes

    • Keep the integration narrow: one feature, one URL, one extraction contract.
    • Treat /scrape as the default primitive for downstream LLM or indexing pipelines.
    • Request richer formats only when the consumer needs them, such as links, screenshots, or branding data.

    Docs (Source of Truth)

    Read the source-of-truth page for your project language before writing integration code:

    • Node / TypeScript: docs.firecrawl.dev/agent-source-of-truth/node
    • Python: docs.firecrawl.dev/agent-source-of-truth/python
    • Rust: docs.firecrawl.dev/agent-source-of-truth/rust
    • Java: docs.firecrawl.dev/agent-source-of-truth/java
    • Elixir: docs.firecrawl.dev/agent-source-of-truth/elixir
    • cURL / REST: docs.firecrawl.dev/agent-source-of-truth/curl

    See Also

    • firecrawl-build
    • firecrawl-build-search
    • firecrawl-build-interact

    Требования и возможности

    Источник пакета
    https://github.com/firecrawl/skills/tree/f6c9b2dd6384e0f05f713727ed18ba9db94d5191/skills/build/firecrawl-build-scrape

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md3776d8cf8df8221b8d82...
    references/freshness-and-liveness.md2345b6446a697db51121...

    Частые вопросы

    Как установить Firecrawl Build Scrape?
    Используйте команду npx skills add firecrawl/skills --skill firecrawl-build-scrape или скачайте ZIP-архив.
    Можно ли скачать Firecrawl Build Scrape бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    Terraform Style GuideGenerate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.2ГИС: Матрица расстояний 2ГИСРассчитать время и расстояния между наборами точек.React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add firecrawl/skills --skill firecrawl-build-scrape
    Скачать ZIP
    Версия
    1.0.0+f6c9b2dd6384
    Автор
    Владимир Ломтев
    Репозиторий
    firecrawl/skills
    GitHub: firecrawl/skills
    Agent DeviceAutomates Apple-platform apps (iOS, tvOS, macOS), Android devices, and Amazon Vega OS TV apps in Vega Virtual Devices. Use when navigating apps, taking snapshots/screenshots where supported, driving TV remotes, tapping, typing, scrolling, extracting UI info, collecting evidence, or planning agent-device CLI commands.