browser-automation-cli 0.1.2

One-shot browser automation CLI for AI agents via Chrome CDP. BORN EXECUTE FINALIZE DIE. No daemon, no npm, no telemetry.
Documentation
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/danilo-aguiar-br/browser-automation-cli/docs/schemas/batch-scrape.schema.json",
  "title": "batch-scrape command input",
  "type": "object",
  "description": "Scrape many URLs from a file (HTTP engine, one-shot JoinSet)",
  "properties": {
    "concurrency": {
      "minimum": 1,
      "type": "integer"
    },
    "format": {
      "enum": [
        "text",
        "markdown",
        "html",
        "links",
        "metadata"
      ],
      "type": "string"
    },
    "urls_file": {
      "description": "Path to file with one URL per line",
      "type": "string"
    }
  },
  "required": [
    "urls_file"
  ],
  "additionalProperties": false
}