browser-automation-cli 0.1.1

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/scrape.schema.json",
  "title": "scrape command input",
  "type": "object",
  "description": "Navigate and return body text / formats (local Firecrawl-parity)",
  "properties": {
    "engine": {
      "description": "Default browser (CDP)",
      "enum": [
        "http",
        "browser"
      ],
      "type": "string"
    },
    "format": {
      "description": "Default text",
      "enum": [
        "text",
        "markdown",
        "html",
        "links",
        "metadata"
      ],
      "type": "string"
    },
    "only_main_content": {
      "type": "boolean"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "additionalProperties": false
}