browser-automation-cli 0.1.4

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/assert.schema.json",
  "title": "assert command input",
  "type": "object",
  "description": "Assertion helpers (url/text/console)",
  "properties": {
    "contains": {
      "type": "boolean"
    },
    "kind": {
      "enum": [
        "url",
        "text",
        "console",
        "console_empty",
        "console_no_match"
      ],
      "type": "string"
    },
    "level": {
      "type": "string"
    },
    "max": {
      "type": "integer"
    },
    "pattern": {
      "description": "For console_no_match (GAP-025)",
      "type": "string"
    },
    "target": {
      "type": "string"
    },
    "text": {
      "type": "string"
    },
    "text_contains": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "url_contains": {
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [],
  "additionalProperties": false
}