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/find-paths.schema.json",
  "title": "find-paths command input",
  "type": "object",
  "description": "Discover filesystem paths (fd-like; no Chrome)",
  "properties": {
    "extension": {
      "type": "string"
    },
    "glob": {
      "description": "Shell-style glob e.g. **/*.rs",
      "type": "string"
    },
    "hidden": {
      "type": "boolean"
    },
    "limit": {
      "type": "integer"
    },
    "max_depth": {
      "type": "integer"
    },
    "no_ignore": {
      "type": "boolean"
    },
    "paths": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "pattern": {
      "type": "string"
    },
    "type": {
      "enum": [
        "f",
        "d"
      ],
      "type": "string"
    }
  },
  "required": [],
  "additionalProperties": false
}