AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified BSD-3-Clause Self-run

Crawl

skill-datalayer-agent-skills-crawl · by datalayer

Web crawling and extraction scripts for HTML pages, JS-rendered pages, links, tables, robots policy, and site crawling.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-datalayer-agent-skills-crawl

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-datalayer-agent-skills-crawl)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Crawl? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Crawl Skill

Required Environment Variables

  • None required.

Invocation Contract

  • Call run_skill_script with:
  • skill_name: crawl
  • script_name: one of fetch_page, fetch_js_page, extract_links, extract_tables, crawl_site, check_robots
  • Put required positional parameters in args.
  • Put optional value flags in kwargs using the keys listed below.
  • For flag-only boolean options, use args (not kwargs).

Scripts API

script_name: fetch_page

  • args: [""]
  • optional kwargs: timeout, output

script_name: fetch_js_page

  • args: [""]
  • optional kwargs: wait, selector, timeout, output
  • optional boolean flag --html: pass via args as "--html"

script_name: extract_links

  • args: [""]
  • optional kwargs: filter, timeout, output
  • --absolute is enabled by default.

script_name: extract_tables

  • args: [""]
  • optional kwargs: format, timeout, output
  • format: json | csv

script_name: crawl_site

  • args: [""]
  • optional kwargs: max_pages, max_depth, timeout, output
  • --same-domain is enabled by default.

script_name: check_robots

  • args: [""]
  • optional kwargs: user_agent

run_skill_script Examples

  • JS-rendered fetch with selector:
{
  "skill_name": "crawl",
  "script_name": "fetch_js_page",
  "args": ["https://example.com"],
  "kwargs": {
    "wait": 1200,
    "selector": "main",
    "timeout": 45000
  }
}
  • Include raw HTML output:
{
  "skill_name": "crawl",
  "script_name": "fetch_js_page",
  "args": ["https://example.com", "--html"]
}

Notes:

  • fetch_js_page requires Playwright + Chromium in the execution environment.

Direct CLI Examples

python agent_skills/skills/crawl/scripts/fetch_page.py https://example.com --timeout 20
python agent_skills/skills/crawl/scripts/fetch_js_page.py https://example.com --wait 1200 --selector main
python agent_skills/skills/crawl/scripts/extract_links.py https://example.com --filter /docs
python agent_skills/skills/crawl/scripts/extract_tables.py https://example.com --format csv --output tables.csv
python agent_skills/skills/crawl/scripts/crawl_site.py https://example.com --max-pages 20 --max-depth 2 --output crawl.json
python agent_skills/skills/crawl/scripts/check_robots.py https://example.com --user-agent "DataBot/1.0"

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.