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/config.schema.json",
  "title": "config command input",
  "type": "object",
  "description": "XDG config and path management (no product env at runtime)",
  "properties": {
    "action": {
      "enum": [
        "path",
        "init",
        "show",
        "set",
        "get",
        "list-keys"
      ],
      "type": "string"
    },
    "key": {
      "description": "For set/get: lang|timeout|artifacts_dir|ignore_robots|namespace|encryption_key|color|log_level|log_to_file|chrome_path|lighthouse_path|openrouter_api_key|llm_base_url|llm_model|cache_backend|cache_redis_url",
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": false
}