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/type.schema.json",
  "title": "type command input",
  "type": "object",
  "description": "Type text into a target",
  "properties": {
    "clear": {
      "type": "boolean"
    },
    "focus_only": {
      "description": "Focus target without typing",
      "type": "boolean"
    },
    "include_snapshot": {
      "type": "boolean"
    },
    "submit": {
      "description": "Optional key after type (e.g. Enter)",
      "type": "string"
    },
    "target": {
      "type": "string"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "additionalProperties": false
}