agentsclimarketplace

Watercrawl interact

Skill fernandoleyra/watercrawl-skill/skills/watercrawl-interact

Open Source Agentic scrapping skill with 8 hyperfocused skills, to give research subagents web-search on steroids.

Install
npx -y skills add fernandoleyra/watercrawl-skill --skill watercrawl-interact

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when a page needs browser interaction to reveal its content — login, button clicks, form fills, pagination, or infinite scroll. Triggers on: "click", "fill out", "log in to", "submit the form", "load more", "scroll down", "next page", "paginated results", "scrape failed — JS required", "interact with". First figure out what actions are needed, then build the action sequence and submit it. Requires local Watercrawl API at localhost:8000.

SKILL.md

2.1 KB, as published. Nobody here has run it

watercrawl-interact

Prerequisites

Watercrawl API must be running. Start with docker-compose up.

Action types

typeselector requiredvalue requireddescription
clickyesnoClick an element by CSS selector
fillyesyesType value into an input field
waitnonoWait ms milliseconds
scrollnonoScroll one viewport height down
pressnoyesPress a keyboard key (e.g. Enter)

Workflow

  1. Infer the action sequence from the user's description of what they need to do on the page.

  2. Submit the interaction

BASE_URL=${WATERCRAWL_URL:-http://localhost:8000}
curl -s -X POST "$BASE_URL/interact" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "URL_HERE",
    "actions": [
      {"type": "fill", "selector": "input#username", "value": "[email protected]", "ms": 0},
      {"type": "fill", "selector": "input#password", "value": "PASSWORD", "ms": 0},
      {"type": "click", "selector": "button[type=submit]", "value": "", "ms": 0},
      {"type": "wait", "selector": "", "value": "", "ms": 2000}
    ],
    "output_format": "markdown"
  }' | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('content','')[:2000])"
  1. Surface the result and extract what the user asked for.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.