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/scroll.schema.json",
  "title": "scroll command input",
  "type": "object",
  "description": "Scroll window or element by pixel deltas",
  "properties": {
    "delta_x": {
      "type": "number"
    },
    "delta_y": {
      "type": "number"
    },
    "dx": {
      "description": "Alias for delta_x",
      "type": "number"
    },
    "dy": {
      "description": "Alias for delta_y",
      "type": "number"
    },
    "target": {
      "description": "Optional CSS/@eN",
      "type": "string"
    }
  },
  "required": [],
  "additionalProperties": false
}