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/extract.schema.json",
  "title": "extract command input",
  "type": "object",
  "description": "Extract text or attribute from target, or LLM extract with --llm",
  "properties": {
    "attr": {
      "type": "string"
    },
    "llm": {
      "type": "boolean"
    },
    "question": {
      "type": "string"
    },
    "schema_json": {
      "description": "Path to JSON schema file",
      "type": "string"
    },
    "target": {
      "description": "CSS/@eN, http(s) URL, or file path for --llm",
      "type": "string"
    }
  },
  "required": [
    "target"
  ],
  "additionalProperties": false
}