browser-automation-cli 0.1.5

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/qr.schema.json",
  "title": "qr command input",
  "type": "object",
  "description": "QR encode/decode one-shot (no Chrome)",
  "properties": {
    "action": {
      "enum": [
        "encode",
        "decode"
      ],
      "type": "string"
    },
    "format": {
      "enum": [
        "png",
        "svg",
        "terminal"
      ],
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": false
}