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/console.schema.json",
  "title": "console command input",
  "type": "object",
  "description": "List/get/clear/dump captured console messages (needs --capture-console)",
  "properties": {
    "action": {
      "enum": [
        "list",
        "get",
        "clear",
        "dump"
      ],
      "type": "string"
    },
    "id": {
      "minimum": 0,
      "type": "integer"
    },
    "path": {
      "type": "string"
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": false
}